@charset "UTF-8";
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");

:root {
    --black: #050505;
    --black-soft: #101114;
    --black-glass: rgba(16,17,20,0.78);
    --white: #ffffff;
    --white-soft: rgba(255,255,255,0.82);
    --grey: #b8bcc6;
    --line: rgba(255,255,255,0.11);
    --line-soft: rgba(255,255,255,0.06);
    --gold: #d4af37;
    --gold-soft: rgba(212,175,55,0.18);
    --gold-line: rgba(212,175,55,0.34);
    --glass: rgba(255,255,255,0.06);
    --shadow: 0 18px 50px rgba(0,0,0,0.42);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    font-size: 13pt;
}

body {
    line-height: 1;
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: "Poppins", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

body, input, select, textarea {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--white);
}

strong, b {
    font-weight: 700;
}

p {
    margin: 0 0 1rem 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.wrapper.style2 {
    background: var(--black);
}

/* Header */
#header {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: transparent;
}

#header .logo {
    z-index: 1004;
}

#header .logo a {
    display: inline-flex;
    align-items: center;
}

#header .logo img {
    width: 118px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.45));
}

/* Menu Button */
#header .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-width: 164px;
    height: 60px;
    padding: 0 1rem 0 1.35rem;
    border-radius: 999px;
    color: var(--white) !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.03)),
        linear-gradient(135deg, rgba(16,16,18,0.96), rgba(31,32,36,0.95));
    border: 1px solid var(--line);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.35),
        0 0 24px rgba(212,175,55,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.35s ease;
}

#header .menu-toggle .menu-label {
    line-height: 1;
}

#header .menu-toggle .menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(212,175,55,0.16);
    transition: all 0.35s ease;
}

#header .menu-toggle .menu-icon span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transition: all 0.35s ease;
}

#header .menu-toggle:hover {
    transform: translateY(-3px);
    border-color: var(--gold-line);
    box-shadow:
        0 18px 42px rgba(0,0,0,0.46),
        0 0 30px rgba(212,175,55,0.16);
}

#header .menu-toggle:hover .menu-icon {
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,175,55,0.24), rgba(255,255,255,0.08));
    transform: rotate(-8deg) scale(1.06);
}

#header .menu-toggle:hover .menu-icon span:nth-child(1) {
    width: 20px;
    background: #ffffff;
}

#header .menu-toggle:hover .menu-icon span:nth-child(2) {
    width: 12px;
    background: var(--gold);
}

#header .menu-toggle:hover .menu-icon span:nth-child(3) {
    width: 20px;
    background: #ffffff;
}

body.menu-open #header .menu-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.92);
}

/* Backdrop */
.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.58);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
}

body.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Sidebar */
#menu {
    position: fixed;
    top: 0;
    right: -430px;
    width: 400px;
    max-width: 94%;
    height: 100vh;
    z-index: 2100;
    padding: 92px 26px 36px;
    background:
        radial-gradient(circle at top right, rgba(212,175,55,0.14), transparent 30%),
        linear-gradient(180deg, rgba(9,9,11,0.98), rgba(0,0,0,0.99));
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -25px 0 70px rgba(0,0,0,0.48);
    transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

body.menu-open #menu {
    right: 0;
}

#menu .menu-inner,
#menu .links,
#menu .links li,
#menu .links a {
    position: relative;
    z-index: 3;
}

#menu .links li {
    margin-bottom: 16px;
}

#menu .links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-radius: 18px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

#menu .links a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.08) 50%, transparent 80%);
    transform: translateX(-140%);
    transition: transform 0.7s ease;
}

#menu .links a::after {
    content: "↗";
    color: var(--gold);
    font-size: 1.35rem;
    line-height: 1;
    position: relative;
    z-index: 4;
    text-shadow: 0 0 14px rgba(212,175,55,0.25);
    transition: transform 0.3s ease, color 0.3s ease;
}

#menu .links a:hover {
    transform: translateX(8px);
    border-color: var(--gold-line);
    background:
        linear-gradient(135deg, rgba(212,175,55,0.10), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.045);
    box-shadow: 0 16px 34px rgba(0,0,0,0.35);
}

#menu .links a:hover::before {
    transform: translateX(140%);
}

#menu .links a:hover::after {
    transform: translate(5px, -5px);
    color: #fff;
}

/* Simple Close Button */
#menu .close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    outline: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    z-index: 20;
    appearance: none;
    -webkit-appearance: none;
}

#menu .close::before,
#menu .close::after {
    content: "";
    position: absolute;
    top: 23px;
    left: 11px;
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transition: 0.35s ease;
}

#menu .close::before {
    transform: rotate(45deg);
}

#menu .close::after {
    transform: rotate(-45deg);
}

#menu .close:hover::before {
    transform: rotate(135deg);
    background: #fff;
}

#menu .close:hover::after {
    transform: rotate(45deg);
    background: var(--gold);
}

/* Banner */
.banner.full {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: var(--black);
}

.banner.full article {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: opacity 1.1s ease, visibility 1.1s ease;
}

.banner.full article.visible {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.banner.full article.top {
    z-index: 2;
}

.banner.full article.instant {
    transition: none !important;
}

.banner.full article img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.48) saturate(0.96);
}

.banner.full article::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.18) 20%, rgba(0,0,0,0.64) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.18) 45%, rgba(255,255,255,0.02) 100%);
}

.banner.full article .inner {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 1rem 3rem 1rem;
}

.banner.full article .inner header {
    max-width: 940px;
    margin: 0 auto;
}

.banner.full article .inner p {
    margin: 0;
}

.banner.full article .inner h2 {
    margin: 1rem 0 0 0;
    color: var(--white);
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 8px 24px rgba(0,0,0,0.44);
}

/* Hero Buttons */
.bhBtn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 1rem 2rem;
    border-radius: 999px;
    color: var(--white) !important;
    text-transform: uppercase;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
        linear-gradient(135deg, rgba(18,18,20,0.96), rgba(31,32,36,0.95));
    box-shadow:
        0 14px 34px rgba(0,0,0,0.38),
        0 0 20px rgba(212,175,55,0.08);
    overflow: hidden;
}

.bhBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
    transform: translateX(-140%);
    transition: transform 0.75s ease;
}

.bhBtn:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: var(--gold-line);
    box-shadow:
        0 22px 48px rgba(0,0,0,0.5),
        0 0 28px rgba(212,175,55,0.14);
}

.bhBtn:hover::before {
    transform: translateX(140%);
}

/* Slider Indicators */
.banner.full .indicators {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.26);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner.full .indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.28);
    border: 1px solid rgba(255,255,255,0.18);
}

.banner.full .indicators li.visible,
.banner.full .indicators li:hover {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(212,175,55,0.35);
}

#one {
    background: var(--black);
    min-height: 1px;
}

#one .inner {
    padding: 0;
    margin: 0;
}

/* WhatsApp */
.whatsapp-icon {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1005;
}

.whatsapp-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    width: 68px;
    height: 68px;
    padding: 0 12px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.03)),
        linear-gradient(135deg, rgba(18,18,20,0.95), rgba(31,32,36,0.95));
    border: 1px solid var(--line);
    box-shadow:
        0 16px 40px rgba(0,0,0,0.40),
        0 0 24px rgba(212,175,55,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: all 0.35s ease;
}

.whatsapp-icon a:hover {
    width: 250px;
    transform: translateY(-4px);
    border-color: var(--gold-line);
    box-shadow:
        0 22px 50px rgba(0,0,0,0.50),
        0 0 30px rgba(212,175,55,0.16);
}

.whatsapp-icon .wa-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.20), rgba(255,255,255,0.05));
    border: 1px solid rgba(212,175,55,0.18);
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 1.35rem;
    color: var(--gold);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon .wa-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white-soft);
    transition: all 0.32s ease;
}

.whatsapp-icon a:hover .wa-text {
    max-width: 155px;
    opacity: 1;
}

.align-center {
    text-align: center;
}

.image.fit img {
    width: 100%;
    height: auto;
}

/* Tablet */
@media screen and (max-width: 980px) {
    html {
        font-size: 12pt;
    }

    #header {
        padding: 1rem;
    }

    #header .logo img {
        width: 102px;
    }

    #header .menu-toggle {
        min-width: 132px;
        height: 54px;
        font-size: 0.8rem;
        padding: 0 0.95rem 0 1.1rem;
    }

    .banner.full article .inner h2 {
        font-size: clamp(2.2rem, 10vw, 4.5rem);
    }
}

/* Mobile */
@media screen and (max-width: 736px) {
    html {
        font-size: 11pt;
    }

    #header {
        padding: 0.9rem;
    }

    #header .logo img {
        width: 90px;
    }

    #header .menu-toggle {
        min-width: 118px;
        height: 48px;
        font-size: 0.72rem;
        gap: 0.55rem;
        padding: 0 0.85rem 0 1rem;
    }

    #header .menu-toggle .menu-icon {
        width: 34px;
        height: 34px;
        gap: 4px;
    }

    #header .menu-toggle .menu-icon span {
        width: 14px;
    }

    #menu {
        width: 72%;
        right: -72%;
        padding: 86px 18px 30px;
    }

    #menu .links a {
        padding: 18px 20px;
        border-radius: 16px;
        font-size: 0.95rem;
    }

    #menu .links a::after {
        content: "↗";
        color: var(--gold);
        font-size: 1.35rem;
        line-height: 1;
        background: none !important;
        border: 0 !important;
        box-shadow: none !important;
        width: auto !important;
        height: auto !important;
        transform: none !important;
    }

    #menu .links a:hover::after {
        transform: translate(5px, -5px) !important;
        color: #fff;
    }

    .banner.full {
        height: 88vh;
        min-height: 88vh;
    }

    .banner.full article {
        height: 88vh;
    }

    .banner.full article .inner {
        min-height: 88vh;
        padding: 5.4rem 1rem 2.2rem 1rem;
    }

    .banner.full article img {
        height: 88vh;
    }

    .banner.full article .inner h2 {
        font-size: clamp(1.9rem, 10vw, 3rem);
        margin-top: 0.9rem;
    }

    .bhBtn {
        min-height: 50px;
        padding: 0.85rem 1.2rem;
        font-size: 0.8rem;
        letter-spacing: 0.11rem;
    }

    .banner.full .indicators {
        bottom: 14px;
        padding: 0.55rem 0.8rem;
    }

    .banner.full .indicators li {
        width: 9px;
        height: 9px;
    }

    .whatsapp-icon {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-icon a {
        width: 62px;
        height: 62px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-icon a:hover {
        width: 62px;
    }

    .whatsapp-icon a:hover .wa-text {
        max-width: 0;
        opacity: 0;
    }

    .whatsapp-icon .wa-icon-wrap {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .whatsapp-icon i {
        font-size: 1.2rem;
    }
}