/* =========================================================
   ASIARAC — TeamBuilding Page  |  Minimalist Light Theme
========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; list-style: none; text-decoration: none; scroll-behavior: smooth; }
html { overflow-x: hidden; }

:root {
    --navy-dark:   #0a1628;
    --navy-medium: #1a2d4a;
    --navy-light:  #2d4466;
    --gold:        #d4af37;
    --gold-light:  #f4d774;
    --gold-dark:   #b8941f;
    --white:       #ffffff;
    --black:       #000000;
    --gray-light:  #e5e5e5;
    --off-white:   #f8f7f4;
    --section-alt: #f0f2f5;
    --text-muted:  #5a6a7e;
    --p-font:      0.95rem;
}

body { background: var(--off-white); color: var(--navy-dark); overflow-x: hidden; }

/* ── HEADER ── */
header { position: fixed; width: 100%; top: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 12px 5%; background: var(--navy-dark); border-bottom: 2px solid rgba(212,175,55,.25); transition: all .4s; }
.logo img { max-width: 160px; width: 100%; height: auto; object-fit: contain; transition: transform .3s; }
.logo:hover img { transform: scale(1.04); }
.navlist { display: flex; align-items: center; }
.navlist a { display: inline-block; font-size: .82rem; color: rgba(255,255,255,.88); margin: 0 18px; padding: 4px 0; border-bottom: 2px solid transparent; text-decoration: none; transition: all .25s; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; }
.navlist a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.navlist .dropdown-menu { background: var(--navy-dark); border: 1px solid rgba(212,175,55,.25); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.navlist .dropdown-menu .dropdown-item { font-size: .82rem; color: rgba(255,255,255,.85); padding: .55rem 1.4rem; transition: all .25s; }
.navlist .dropdown-menu .dropdown-item:hover { background: rgba(212,175,55,.1); color: var(--gold); }
.nav-content { display: flex; align-items: center; }
.nav-content button:hover { transform: translateY(-2px); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 22px; font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; transition: all .25s; border: none; cursor: pointer; text-transform: uppercase; }
.btn-whatsapp { background: #25d366; color: #fff !important; border-radius: 50px; box-shadow: 0 3px 12px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.45); color: #fff !important; }
.btn-whatsapp i { margin-right: 7px; font-size: 16px; }

h2 { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: .5rem; }
h2::after { content: ""; display: block; width: 60px; height: 3px; background: var(--gold); margin: 10px auto 0; border-radius: 2px; }

section { padding: 80px 5%; }
.hero { position: relative; width: 100%; height: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(180deg, rgba(10,22,40,.85), rgba(26,45,74,.65)), url(../img/tb3.jpg) no-repeat center center; background-size: cover; margin-top: 66px; }
.hero-text h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,6vw,4.5rem); font-weight: 700; color: var(--white); margin: 10px 0 20px; line-height: 1.2; }
.hero-text h4 { font-size: .78rem; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin: 120px 0 16px; }
.hero-text p { font-size: 1.2rem; color: rgba(255,255,255,.85); margin-bottom: 28px; }

.toggle_btn { display: none; cursor: pointer; font-size: 1.4rem; color: var(--gold); }
.dropdown_bar_menu { display: none; flex-direction: column; background: var(--navy-dark); position: absolute; top: 100%; right: 0; width: 100%; box-shadow: 0 8px 24px rgba(0,0,0,.25); z-index: 999; }
.dropdown_bar_menu li { padding: .9rem 1.2rem; border-bottom: 1px solid rgba(212,175,55,.12); text-align: center; }
.dropdown_bar_menu li a { color: rgba(255,255,255,.88); }
.dropdown_bar_menu li:hover { background: rgba(212,175,55,.08); }
.dropdown_bar_menu.open { display: flex; }
.submenu { list-style: none; padding: 0; margin: 0; display: none; position: absolute; left: 0; top: 100%; background: var(--navy-dark); border: 1px solid rgba(212,175,55,.2); border-radius: 8px; z-index: 999; }
.submenu li { padding: .6rem 1.4rem; white-space: nowrap; }
.has-submenu:hover .submenu { display: block; }
.whatsapp-btn { display: none; }
@media (max-width: 768px) { .navlist { display: none; } .toggle_btn { display: block; } .nav-content { display: none; } .whatsapp-btn { display: block; } .submenu { position: static; } }

/* ── TEAM BUILDING SECTION ── */
.team-building-section { text-align: center; padding: 72px 5%; background: var(--white); }
.text-image-wrapper { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.text-content { flex: 1; max-width: 50%; text-align: center; }
.text-content p { font-size: 1.1rem; line-height: 1.85; color: var(--text-muted); }
.text-content .highlight { font-weight: 700; color: var(--navy-dark); }
.btn-consultation { display: inline-block; margin-top: 20px; padding: 11px 28px; background: var(--navy-dark); color: var(--white); text-decoration: none; border-radius: 50px; font-weight: 700; transition: all .25s; border: 2px solid var(--navy-dark); text-transform: uppercase; font-size: .8rem; letter-spacing: 1px; }
.btn-consultation:hover { background: transparent; color: var(--navy-dark); transform: translateY(-2px); }
.image-grid { flex: 1; max-width: 50%; }
.image-grid img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 12px 36px rgba(10,22,40,.1); }
@media (max-width: 768px) { .text-image-wrapper { flex-direction: column; } .text-content, .image-grid { max-width: 100%; width: 100%; } }

/* ── CONTENT2 / MILESTONES ── */
.content2 { width: 100%; padding: 72px 5%; background: var(--section-alt); }
.content2-heading { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.images-client { width: 100%; overflow: hidden; position: relative; padding: 10px 0 30px; }
.images-wrapper { display: flex; gap: 20px; width: max-content; animation: move 40s linear infinite; padding: 0 10px; }
@keyframes move { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tb-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 14px; overflow: hidden; width: 260px; flex-shrink: 0; display: flex; flex-direction: column; transition: all .25s; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.tb-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 12px 28px rgba(10,22,40,.1); }
.tb-photo { width: 100%; height: 200px; object-fit: cover; display: block; }
.tb-logo-area { background: var(--off-white); padding: 14px 20px; display: flex; align-items: center; justify-content: center; min-height: 70px; }
.tb-logo { max-height: 42px; max-width: 130px; width: auto; object-fit: contain; }

/* ── EVENT WIZARD ── */
.event-wizard { padding: 72px 5%; background: var(--white); text-align: center; border-top: 1px solid var(--gray-light); }
.event-wizard h2 { color: var(--navy-dark); }
.wizard-steps { display: flex; justify-content: center; margin-bottom: 20px; gap: 10px; flex-wrap: wrap; }
.wizard-step { padding: 10px 22px; background: var(--section-alt); color: var(--navy-medium); border-radius: 50px; cursor: pointer; transition: all .25s; border: 1px solid var(--gray-light); font-weight: 600; font-size: .85rem; }
.wizard-step.active { background: var(--navy-dark); color: var(--white); border-color: var(--navy-dark); transform: scale(1.05); }
.wizard-step:hover { border-color: var(--navy-dark); }
.wizard-details { max-width: 800px; margin: 0 auto; text-align: left; }
.wizard-content { display: none; opacity: 0; transition: opacity .5s; }
.wizard-content.active { display: block; opacity: 1; }
.wizard-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--navy-dark); margin-bottom: 15px; }
.wizard-content ul li { margin-bottom: 10px; padding-left: 20px; position: relative; font-size: .95rem; color: var(--text-muted); line-height: 1.85; }
.wizard-content ul li::before { content: "▸"; position: absolute; left: 0; color: var(--gold); }
.wizard-navigation { margin-top: 20px; text-align: center; }
.wizard-btn { padding: 10px 28px; margin: 0 10px; border: 2px solid var(--navy-dark); border-radius: 50px; cursor: pointer; background: var(--navy-dark); color: var(--white); font-size: .85rem; font-weight: 700; transition: all .25s; text-transform: uppercase; }
.wizard-btn:disabled { background: var(--gray-light); color: var(--text-muted); border-color: var(--gray-light); cursor: not-allowed; }
.wizard-btn:hover:not(:disabled) { background: transparent; color: var(--navy-dark); transform: translateY(-2px); }

/* ── FACILITIES ── */
.facilities { padding: 72px 5%; text-align: center; background: var(--section-alt); }
.content3-heading { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 20px; text-transform: uppercase; }
.content3-heading::after { content: ""; display: block; width: 60px; height: 3px; background: var(--gold); margin: 10px auto 0; border-radius: 2px; }
.content3-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 2rem 0; }
.facilities-col { flex: 1 1 24%; max-width: 25%; text-align: center; border: 1px solid var(--gray-light); border-radius: 14px; overflow: hidden; transition: all .25s; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.facilities-col img { width: 100%; height: 200px; object-fit: cover; }
.facilities-col h3 { margin: 14px 10px; font-size: .9rem; color: var(--navy-dark); text-transform: uppercase; font-weight: 700; }
.facilities-col:hover { transform: translateY(-8px); box-shadow: 0 16px 36px rgba(10,22,40,.1); border-color: var(--gold); }
@media (max-width: 900px) { .facilities-col { flex: 1 1 45%; max-width: 45%; } }
@media (max-width: 600px) { .facilities-col { flex: 1 1 100%; max-width: 100%; } }

/* ── VIDEO HIGHLIGHTS ── */
.highlights-training { padding: 72px 5%; background: var(--white); text-align: center; }
.highlights-training h2 { color: var(--navy-dark); }
.client-selector-wrapper { position: relative; max-width: 700px; margin: 0 auto 40px; padding: 0 50px; }
.client-selector { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; padding: 20px 10px; scrollbar-width: thin; scrollbar-color: var(--gold) var(--gray-light); }
.client-option { flex: 0 0 auto; width: 100px; padding: 10px; background: var(--off-white); border: 2px solid transparent; border-radius: 12px; text-align: center; cursor: pointer; transition: all .25s; }
.client-option:hover { background: var(--section-alt); border-color: var(--gold); transform: translateY(-4px); }
.client-option.active { background: rgba(212,175,55,.12); border-color: var(--gold); box-shadow: 0 4px 14px rgba(212,175,55,.25); }
.client-logo { width: 60px; height: 60px; object-fit: contain; margin-bottom: 10px; background: var(--white); padding: 8px; border-radius: 8px; border: 1px solid var(--gray-light); }
.client-name { display: block; font-size: .7rem; font-weight: 600; color: var(--navy-medium); text-transform: uppercase; }
.scroll-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); color: var(--navy-dark); border: 2px solid var(--gray-light); font-size: 1.1rem; width: 38px; height: 38px; cursor: pointer; border-radius: 50%; z-index: 10; transition: all .25s; display: flex; align-items: center; justify-content: center; }
.scroll-btn:hover { background: var(--navy-dark); color: var(--white); border-color: var(--navy-dark); }
.scroll-left { left: 0; }
.scroll-right { right: 0; }
.video-container { position: relative; width: 70%; max-width: 600px; margin: 0 auto; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.video-wrapper { display: none; width: 100%; }
.video-wrapper.active { display: block; animation: fadeIn .5s ease; }
.video-wrapper video { width: 100%; height: auto; display: block; border-radius: 14px; }
@keyframes fadeIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

/* ── CONTENT4 / WHAT WE PROVIDE ── */
.content4-section { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); padding: 72px 5%; text-align: center; }
.content4-heading { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 40px; text-transform: uppercase; }
.content4-form-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.content4-box { flex: 1 1 25%; max-width: 25%; padding: 25px; text-align: center; border-radius: 14px; transition: all .3s; }
.content4-box i { font-size: 2.8rem; margin-bottom: 15px; color: var(--navy-dark); }
.content4-box p { font-size: .95rem; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; }
.content4-box:hover { transform: scale(1.04); background: rgba(10,22,40,.08); }
@media (max-width: 768px) { .content4-box { flex: 1 1 100%; max-width: 100%; } }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 4rem 5% 2rem; color: rgba(255,255,255,.7); border-top: 2px solid rgba(212,175,55,.2); width: 100%; }
.footer-container { display: flex; justify-content: space-around; align-items: flex-start; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.footer-col { flex: 1; margin: 1rem; max-width: 280px; }
.footer-col .material-symbols-outlined { font-size: 18px; margin-right: 8px; color: var(--gold); }
.footer-col h4 { font-size: .85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem; color: var(--white); }
.footer-col .dropdown > a::after { content: " ▾"; font-size: .7rem; }
.footer-col .dropdown:hover > a::after { content: " ▴"; }
.footer-col .dropdown .sub-links { display: none; padding-left: 16px; }
.footer-col .dropdown:hover .sub-links { display: block; }
.footer-col p, .footer-col ul, .footer-col li { margin: .45rem 0; font-size: .88rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col a { color: rgba(255,255,255,.65); transition: color .25s; }
.footer-col a:hover { color: var(--gold); }
.social-links { display: flex; gap: .8rem; margin-top: 1.2rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(212,175,55,.35); transition: all .25s; }
.social-links a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.social-links img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.footer-bottom { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(212,175,55,.15); display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; margin: .3rem 0; }

@media (max-width: 768px) { .hero { height: auto; padding: 120px 5% 60px; } .hero-text h1 { font-size: 2.4rem; } .wizard-steps { flex-direction: column; } .footer-container { flex-direction: column; } }
@media (max-width: 576px) { .hero-text h1 { font-size: 2rem; } }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff; border-radius: 50px;
    padding: 13px 22px;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .82rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    transition: all .25s; z-index: 9999; text-decoration: none;
    animation: waPulse 2.2s ease-in-out infinite;
}
.whatsapp-float i { font-size: 1.25rem; }
.whatsapp-float:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,.65); animation: none; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.35); }
    50%       { box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

