/* =========================================================
   ASIARAC — Contact Us  |  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); }

/* Buttons */
.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: 2.4rem; 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/team-05.png) 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; }

/* Mobile menu */
.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; } }

/* ── CONTACT FORM ── */
.contact-heading { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy-dark); margin-top: 50px; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
.contact-form-container { display: flex; flex-wrap: wrap; justify-content: space-around; align-items: flex-start; margin-top: 30px; padding: 0 5%; }

.form { display: flex; flex-direction: column; align-items: center; justify-content: space-between; margin-top: 30px; margin-left: 30px; flex: 1; }
.form .contact-form input,
.form .contact-form textarea { width: 100%; max-width: 500px; background: var(--white); border: 0; border-bottom: 2px solid var(--gray-light); margin: 10px 0; padding: 12px 4px; font-size: .95rem; color: var(--navy-dark); font-family: 'Montserrat', sans-serif; transition: border-color .25s; }
.form .contact-form input::placeholder,
.form .contact-form textarea::placeholder { color: var(--text-muted); }
.form .contact-form input:focus,
.form .contact-form textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form .contact-form label { font-size: .85rem; font-weight: 600; margin-bottom: 5px; display: block; color: var(--navy-medium); }
.form .contact-form button { background: var(--navy-dark); border: 2px solid var(--navy-dark); color: var(--white); font-weight: 700; font-size: .85rem; width: 50%; height: 48px; margin-top: 15px; border-radius: 50px; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: all .25s; text-transform: uppercase; letter-spacing: 1px; }
.form .contact-form button:hover { background: transparent; color: var(--navy-dark); transform: translateY(-2px); }

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

.contact-box { background: var(--white); padding: 25px; border-radius: 14px; width: 400px; margin-top: 30px; margin-bottom: 30px; border: 1px solid var(--gray-light); color: var(--text-muted); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.contact-box h4 { font-size: 1.1rem; color: var(--navy-dark); margin-bottom: 15px; font-weight: 700; }
.contact-box a { color: var(--gold-dark); }
.contact-box a:hover { color: var(--gold); }
.icon-container { display: flex; align-items: center; }
.icon-container .material-symbols-outlined { margin-right: 10px; color: var(--gold); }
.whatsapp-icon { width: 22px; height: 22px; margin-bottom: 10px; vertical-align: middle; }

@media screen and (max-width: 900px) { .contact-form-container { flex-direction: column; align-items: center; } .form { width: 100%; margin-left: 0; } .contact-box { width: 100%; max-width: 400px; } }

/* ── FAQ ── */
.wrapper { max-width: 75%; margin: auto; padding: 40px 0 50px; }
.wrapper h1 { font-family: 'Cormorant Garamond', serif; margin: 1.5rem 0; text-align: center; letter-spacing: 3px; color: var(--navy-dark); font-weight: 700; font-size: 2.4rem; }
.wrapper h1::after { content: ""; display: block; width: 60px; height: 3px; background: var(--gold); margin: 10px auto 0; border-radius: 2px; }

.accordion { background: var(--white); color: var(--navy-dark); cursor: pointer; font-size: .95rem; width: 100%; padding: 1.3rem 1.8rem; border: 1px solid var(--gray-light); border-radius: 12px; outline: none; transition: .3s; display: flex; justify-content: space-between; align-items: center; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.accordion:hover { border-color: var(--gold); background: var(--off-white); }
.accordion.active { border-color: var(--gold); background: var(--off-white); }
.accordion i { font-size: 1rem; transition: transform .3s; color: var(--gold-dark); }
.accordion.active i { transform: rotate(180deg); }
.pannel { padding: 0 1.8rem 1rem; background: var(--off-white); overflow: hidden; display: none; border-radius: 0 0 12px 12px; border: 1px solid var(--gray-light); border-top: 0; }
.pannel p { color: var(--text-muted); font-size: .92rem; line-height: 1.85; margin-top: 10px; }
.faq { margin: 10px 0; border-radius: 12px; overflow: hidden; }

/* ── 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; } .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); }
}

