/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
    text-decoration: none; font-family: "Poppins", sans-serif;
}
html { scroll-behavior: smooth; }

:root {
    --white: #ffffff;
    --black: #000000;
    --accent-gray: #565656;
    --lighter-gray: #7d7d7d;
    --darker-gray: #07182c;
    --section-dark: #1f2e41;
    --golden: linear-gradient(135deg, #A18645, #EBD988, #F5E7A1, #C4B369);
    --golden-text: #C4B369;
    --nav-h: 87px;
}

body { width: 100%; background: var(--darker-gray); }

/* ===== BUTTONS ===== */
.primary_btn {
    padding: 12px 28px;
    background: var(--golden);
    box-shadow: inset 0 0 4px var(--darker-gray);
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 0.3rem; transition: all 0.3s linear; cursor: pointer;
    border: none; outline: none; animation: glow 2s linear infinite;
}
.primary_btn span, .primary_btn {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase; font-size: 0.9rem; font-weight: 600;
    letter-spacing: 2px; color: var(--darker-gray);
}
.primary_btn:hover { box-shadow: inset 0 0 4px var(--darker-gray), 0 0 14px rgba(235,217,136,0.5); }

@keyframes glow {
    0% { box-shadow: 0 0 0 #ffffff; }
    50% { box-shadow: 0 0 17px rgba(255,255,255,0.47); }
    100% { box-shadow: 0 0 0 #ffffff; }
}

/* ===== DIVIDER LINE ===== */
.golden-line { width: 100%; height: 3px; background: var(--golden); }

/* ===== NAVIGATION ===== */
nav {
    position: fixed; top: 0; left: 0;
    width: 100%; height: var(--nav-h);
    background: var(--darker-gray);
    padding: 0 30px;
    display: flex; align-items: center; gap: 2rem;
    user-select: none; z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
nav .logo { height: 70%; }
nav .nav-divider { width: 2px; height: 50%; background: var(--lighter-gray); border-radius: 50px; }
nav .main_nav {
    display: flex; align-items: center; gap: 1.4rem;
    list-style: none; 
    /* margin-left: auto; */
}
nav .main_nav a {
    position: relative; color: var(--lighter-gray);
    transition: all 0.3s ease; cursor: pointer;
}
nav .main_nav a li { font-size: 0.9rem; font-weight: 400; letter-spacing: 0.5px; line-height: 2; }
nav .main_nav a:hover { transform: translateY(-17%); color: var(--white); }
nav .main_nav a::before {
    content: ""; width: 30%; height: 2px;
    background: var(--white); box-shadow: 0 0 7px var(--white);
    border-radius: 100px; opacity: 0; visibility: hidden;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); transition: 0.1s linear; z-index: -1;
}
nav .main_nav a:hover::before { opacity: 1; visibility: visible; transform: translate(-50%, 13px); }
nav .main_nav a.active { pointer-events: auto; color: var(--white); }

/* Dropdown */
nav .main_nav .dropdown { position: relative; list-style: none; }
nav .main_nav .dropdown > a { display: flex; align-items: center; gap: 0.4rem; }
nav .main_nav .dropdown > a::before { display: none; }
nav .main_nav .dropdown > a::after {
    content: "▼"; font-size: 0.55rem; margin-left: 0.3rem;
    color: var(--lighter-gray); line-height: 1; transition: transform 0.2s ease;
}
nav .main_nav .dropdown:hover > a { color: var(--white); }
nav .main_nav .dropdown:hover > a::after { transform: rotate(180deg); color: var(--white); }
nav .main_nav .dropdown-menu {
    position: absolute; top: calc(100% + 1rem); left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: var(--darker-gray); min-width: 200px;
    /* padding: 0.6rem 0;  */
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0; visibility: hidden; transition: all 0.2s ease; z-index: 1000; list-style: none;
}
/* nav .main_nav .dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; 
    transform: translateX(-50%) translateY(0);
} */
nav .main_nav .dropdown-menu li { margin: 0; padding: 0; list-style: none; }
nav .main_nav .dropdown-menu a {
    display: block; padding: 0.65rem 1.25rem;
    color: var(--lighter-gray); font-size: 0.9rem; font-weight: 400;
    white-space: nowrap; transition: all 0.2s ease;
}
nav .main_nav .dropdown-menu a:hover {
    color: var(--white); background: rgba(255,255,255,0.08); padding-left: 1.5rem;
}
nav .main_nav .dropdown-menu a::before { display: none; }

/* Hamburger */
nav .mobNav {
    height: 30px; width: 30px; border: none; outline: none; background: none;
    display: none; flex-direction: column; align-items: center;
    justify-content: center; gap: 5px; z-index: 120; cursor: pointer; margin-left: auto;
}
nav .mobNav .navElement { height: 2px; width: 20px; border-radius: 50px; background: var(--golden-text); transition: all 0.3s ease; }
nav .mobNavCng .navElement { background: var(--white); }
nav .mobNavCng .one { transform: translateY(7px) rotate(45deg); }
nav .mobNavCng .three { transform: translateY(-7px) rotate(-45deg); }
nav .mobNavCng .two { opacity: 0; visibility: hidden; }

/* ===== HERO SECTION ===== */
#home {
    width: 100%; min-height: calc(100vh - var(--nav-h));
    margin-top: var(--nav-h); background: var(--section-dark);
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; padding: 3rem 5rem;
}
#home .banner_pic { width: 260px; flex-shrink: 0; }
#home .banner_pic .hero_pic { width: 100%; height: 100%; border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
#home .banner_text { flex: 1; display: flex; flex-direction: column; gap: 24px; }
#home .header { font-size: 3.5rem; font-weight: 400; line-height: 1.2; color: var(--white); }
#home .header span { text-transform: uppercase; font-weight: 700; background: var(--golden); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
#home .text { color: rgba(255,255,255,0.85); line-height: 1.7; font-size: 0.95rem; }
#home .buttons { display: flex; align-items: center; gap: 2rem; }

/* ===== COUNTER BOX ===== */
.counter_box {
    padding: 30px 70px; width: 100%; min-height: 200px;
    background: var(--golden);
    display: flex; align-items: center; justify-content: space-around; gap: 2rem;
}
.counter_box .col { display: flex; align-items: center; justify-content: center; }
.counter_box .col .content { display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
.counter_box .col .content .main_counter { font-size: 3rem; font-weight: 600; color: var(--accent-gray); }
.counter_box .col .content .declaration { display: flex; flex-direction: column; align-items: flex-start; }
.counter_box .col .content .declaration .text { color: var(--accent-gray); font-weight: 500; letter-spacing: 1px; font-size: 0.85rem; }
.counter_box .col .content .declaration .icon-wrap { font-size: 2.7rem; color: var(--accent-gray); margin-bottom: 4px; }
.counter_box .col-divider { width: 2px; height: 100px; background: rgba(255,255,255,0.5); border-radius: 10px; }

/* ===== FEATURES SECTION ===== */
#about-features {
    margin: 3rem 0; padding: 0 2rem;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
#about-features .section-title { font-size: 2.4rem; color: var(--white); text-align: center; }
#about-features .section-title span { background: var(--golden); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
#about-features .main_content { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 2rem; /*max-width: 1200px;*/ }
#about-features .box {
    width: 420px; padding: 3rem 2rem;
    background: var(--section-dark);
    box-shadow: -1px 1px 9px 3px rgba(255,255,255,0.15), 5px 5px 10px rgba(49,64,130,0.72), inset 0 0 5px rgba(255,255,255,0.2), inset 3px 3px 5px rgba(94,123,205,0.7);
    border-radius: 0.6rem;
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
    transition: transform 0.3s ease;
}
#about-features .box:hover { transform: translateY(-6px); }
#about-features .box img { width: 140px; }
#about-features .box .text { display: flex; flex-direction: column; gap: 1rem; }
#about-features .box .text .primary { font-family: "Montserrat", sans-serif; font-size: 1.4rem; font-weight: 600; color: var(--white); }
#about-features .box .text .secondary { color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 0.9rem; }

/* ===== ABOUT SECTION ===== */
#about {
    padding: 3rem 5rem; background: var(--section-dark);
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
#about .section-header { text-align: center; }
#about .section-header .primary { font-size: 2.4rem; color: var(--white); font-weight: 400; }
#about .section-header .primary span { font-weight: 700; background: var(--golden); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
#about .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    max-width: 1100px; width: 100%;
}
#about .about-card {
    background: var(--darker-gray);
    padding: 2.5rem; border-radius: 0.6rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column; gap: 1rem;
    transition: border-color 0.3s;
}
#about .about-card:hover { border-color: rgba(196,179,105,0.4); }
#about .about-card .card-title {
    font-size: 1.2rem; font-weight: 600;
    background: var(--golden); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-transform: uppercase; letter-spacing: 1px;
}
#about .about-card p { color: rgba(255,255,255,0.85); line-height: 1.8; font-size: 0.95rem; font-weight: 300; }
#about .about-intro {
    max-width: 1100px; width: 100%; padding: 2.5rem;
    background: var(--darker-gray); border-radius: 0.6rem;
    border-left: 4px solid var(--golden-text);
}
#about .about-intro p { color: rgba(255,255,255,0.9); line-height: 1.9; font-size: 0.95rem; font-weight: 300; }

/* ===== SERVICES SECTION ===== */
#services {
    padding: 3rem 2rem; 
    display: flex; flex-direction: column; align-items: center; gap: 4rem;
}
#services .section-header { text-align: center; max-width: 800px; }
#services .section-header h2 { font-size: 2.4rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
#services .section-header p { color: var(--lighter-gray); font-size: 1rem; line-height: 1.6; }
#services .plan-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; /*max-width: 1200px;*/ }
#services .plan-card {
    width: 420px; padding: 3rem 2rem;
    background: var(--section-dark);
    box-shadow: -1px 1px 9px 3px rgba(255,255,255,0.15), 5px 5px 10px rgba(49,64,130,0.72), inset 0 0 5px rgba(255,255,255,0.2), inset 3px 3px 5px rgba(94,123,205,0.7);
    border-radius: 0.6rem;
    display: flex; flex-direction: column; gap: 1.5rem;
    transition: transform 0.3s ease;
}
#services .plan-card:hover { transform: translateY(-6px); }
#services .plan-card img { width: 130px; }
#services .plan-card .plan-title { font-family: "Montserrat", sans-serif; font-size: 1.3rem; font-weight: 600; color: var(--white); }
#services .plan-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
#services .plan-card ul li { color: rgba(255,255,255,0.8); font-size: 0.9rem; padding-left: 1.2rem; position: relative; line-height: 1.6; }
#services .plan-card ul li::before { content: "✦"; position: absolute; left: 0; color: var(--golden-text); font-size: 0.6rem; top: 5px; }

/* Why-us badges */
#services .why-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 800px; }
#services .why-badge {
    padding: 1rem 2rem; background: var(--section-dark);
    border: 1px solid rgba(196,179,105,0.3); border-radius: 100px;
    color: var(--white); font-weight: 500; font-size: 0.9rem;
    transition: all 0.3s ease;
}
#services .why-badge:hover { background: rgba(196,179,105,0.15); border-color: rgba(196,179,105,0.6); }

/* ===== FAQ SECTION ===== */
#faqs {
    padding: 3rem 2rem; background: var(--section-dark);
    display: flex; flex-direction: column; align-items: center; gap: 3rem;
}
#faqs .section-header { text-align: center; max-width: 700px; }
#faqs .section-header h2 { font-size: 2.2rem; color: var(--white); font-weight: 400; margin-bottom: 0.8rem; }
#faqs .section-header p { color: var(--lighter-gray); }
#faqs .faqs-list { width: 100%; max-width: 800px; display: flex; flex-direction: column; gap: 1rem; }
#faqs .faq-item {
    background: var(--darker-gray); border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.08); overflow: hidden;
    transition: border-color 0.3s;
}
#faqs .faq-item.open { border-color: rgba(196,179,105,0.4); }
#faqs .faq-toggler {
    width: 100%; padding: 1.3rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    border: none; outline: none; background: none;
    color: var(--white); font-size: 1rem; font-weight: 500; text-align: left; cursor: pointer;
    transition: color 0.2s;
}
#faqs .faq-toggler:hover { color: var(--golden-text); }
#faqs .faq-icon { font-size: 1.4rem; flex-shrink: 0; color: var(--golden-text); transition: transform 0.3s ease; }
#faqs .faq-item.open .faq-icon { transform: rotate(45deg); }
#faqs .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
#faqs .faq-item.open .faq-answer { max-height: 300px; }
#faqs .faq-answer p { padding: 0 1.5rem 1.3rem; color: rgba(255,255,255,0.75); line-height: 1.7; font-size: 0.93rem; }

/* ===== COMPLIANCE SECTION ===== */
#compliance {
    padding: 4rem 2rem;
    display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
}
#compliance h2 { font-size: 2rem; color: var(--white); text-align: center; font-weight: 400; }
#compliance h2 span { background: var(--golden); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; }

/* Compliance Accordion */
#compliance .compliance-accordion { width: 100%; max-width: 900px; display: flex; flex-direction: column; gap: 1rem; }
#compliance .compliance-item {
    background: var(--section-dark); border-radius: 0.6rem;
    border: 1px solid rgba(255,255,255,0.08); overflow: hidden;
    transition: all 0.3s ease;
}
#compliance .compliance-item.open { border-color: rgba(196,179,105,0.4); }
#compliance .compliance-toggler {
    width: 100%; padding: 1.5rem 1.8rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    border: none; outline: none; background: none;
    cursor: pointer; transition: background 0.2s;
}
#compliance .compliance-toggler:hover { background: rgba(255,255,255,0.03); }
#compliance .compliance-header { display: flex; align-items: center; gap: 1rem; flex: 1; text-align: left; }
#compliance .compliance-icon { font-size: 2rem; flex-shrink: 0; }
#compliance .compliance-title-wrap { display: flex; flex-direction: column; gap: 0.3rem; }
#compliance .compliance-title-wrap h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin: 0; }
#compliance .compliance-subtitle { font-size: 0.8rem; color: var(--lighter-gray); }
#compliance .compliance-arrow {
    font-size: 1rem; color: var(--golden-text); flex-shrink: 0;
    transition: transform 0.3s ease;
}
#compliance .compliance-item.open .compliance-arrow { transform: rotate(180deg); }
#compliance .compliance-action {
    font-size: 0.9rem; color: var(--golden-text); font-weight: 500;
    flex-shrink: 0; display: flex; align-items: center; gap: 0.3rem;
}
#compliance .compliance-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
}
#compliance .compliance-item.open .compliance-content { 
    max-height: 600px; 
    overflow-y: auto;
}
#compliance .compliance-inner {
    padding: 0 1.8rem 2rem;
    color: rgba(255,255,255,0.85); line-height: 1.7;
}

/* Custom Scrollbar for compliance content */
#compliance .compliance-content::-webkit-scrollbar { width: 8px; }
#compliance .compliance-content::-webkit-scrollbar-track { 
    background: rgba(255,255,255,0.05); 
    border-radius: 10px;
}
#compliance .compliance-content::-webkit-scrollbar-thumb { 
    background: var(--golden-text); 
    border-radius: 10px;
}
#compliance .compliance-content::-webkit-scrollbar-thumb:hover { 
    background: rgba(196,179,105,0.8); 
}
#compliance .compliance-inner h4 {
    font-size: 1.3rem; color: var(--white); margin-bottom: 1.5rem;
    padding-bottom: 0.8rem; border-bottom: 2px solid rgba(196,179,105,0.3);
}
#compliance .compliance-inner h5 {
    font-size: 1.05rem; color: var(--golden-text); margin-top: 1.5rem;
    margin-bottom: 0.8rem; font-weight: 600;
}
#compliance .compliance-inner p { margin-bottom: 1rem; font-size: 0.93rem; }
#compliance .compliance-inner ul, #compliance .compliance-inner ol {
    margin-left: 1.5rem; margin-bottom: 1rem;
}
#compliance .compliance-inner li { margin-bottom: 0.6rem; font-size: 0.93rem; }
#compliance .compliance-inner strong { color: var(--white); font-weight: 600; }
#compliance .compliance-inner a { color: var(--golden-text); text-decoration: underline; }
#compliance .compliance-inner a:hover { color: var(--white); }
#compliance .compliance-inner table { font-size: 0.9rem; }
#compliance .compliance-inner table th { 
    color: var(--white); font-weight: 600; 
    background: rgba(196,179,105,0.15);
}
#compliance .compliance-inner table td { color: rgba(255,255,255,0.85); }

/* ===== CONTACT SECTION ===== */
#contact {
    padding: 4rem 2rem; background: var(--section-dark);
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
#contact h2 { font-size: 2rem; color: var(--white); font-weight: 400; }
#contact h2 span { background: var(--golden); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; }
#contact .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
#contact .contact-btn {
    padding: 1rem 2rem; border-radius: 100px;
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.95rem; font-weight: 500; transition: all 0.3s ease;
    cursor: pointer; border: none;
}
#contact .contact-btn.whatsapp { background: #25D366; color: white; }
#contact .contact-btn.whatsapp:hover { box-shadow: 0 0 20px rgba(37,211,102,0.5); transform: translateY(-3px); }
#contact .contact-btn.email { background: var(--golden); color: var(--darker-gray); }
#contact .contact-btn.email:hover { box-shadow: 0 0 20px rgba(196,179,105,0.5); transform: translateY(-3px); }
#contact .contact-btn.call { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
#contact .contact-btn.call:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }

/* ===== FOOTER ===== */
footer {
    width: 100%; padding: 4rem 4rem 0;
    background: var(--darker-gray); color: var(--white);
}
footer .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
footer .footer-top { display: flex; flex-wrap: wrap; gap: 3rem; }
footer .footer-brand { flex: 2; min-width: 260px; display: flex; flex-direction: column; gap: 1.2rem; }
footer .footer-brand img { width: 50%; }
footer .footer-brand p { color: var(--lighter-gray); font-size: 0.92rem; line-height: 1.7; }
footer .footer-links-group { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 1.5rem; }
footer .footer-links-group h3 {
    font-size: 1.1rem; font-weight: 600; color: var(--white);
    position: relative; padding-bottom: 0.7rem;
}
footer .footer-links-group h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 40%; height: 2px; background: var(--golden); }
footer .footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
footer .footer-links-group ul li a { color: var(--lighter-gray); font-size: 0.9rem; transition: all 0.3s ease; }
footer .footer-links-group ul li a:hover { color: var(--white); padding-left: 0.4rem; }
footer .footer-info { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
footer .footer-info .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
footer .footer-info p { color: var(--lighter-gray); font-size: 0.88rem; line-height: 1.7; }
footer .footer-info b { color: var(--white); font-weight: 600; }
footer .footer-info a { color: var(--white); transition: color 0.3s; }
footer .footer-info a:hover { color: var(--lighter-gray); text-decoration: underline; }
footer .footer-bottom { padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
footer .footer-bottom p { color: var(--lighter-gray); font-size: 0.9rem; }
footer .footer-bottom a { color: var(--white); font-weight: 600; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed; width: 60px; height: 60px;
    bottom: 24px; right: 24px; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    background: none; box-shadow: none;
}
.wa-icon { width: 60px; height: 60px; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: box-shadow 0.2s; }
.wa-float:hover .wa-icon { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed; width: 50px; height: 50px;
    bottom: 200px; right: 24px; z-index: 9999;
    background: var(--golden);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    opacity: 0; visibility: hidden;
    color: var(--darker-gray);
}
.scroll-top-btn.show {
    opacity: 1; visibility: visible;
}
.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(196,179,105,0.5);
}
.scroll-top-btn:active {
    transform: translateY(-2px);
}
.scroll-top-btn svg {
    width: 24px; height: 24px;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress { position: fixed; top: var(--nav-h); left: 0; height: 3px; background: var(--golden); z-index: 999; transition: width 0.1s; }

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block; padding: 0.4rem 1.2rem;
    background: rgba(196,179,105,0.15); border: 1px solid rgba(196,179,105,0.3);
    border-radius: 100px; color: var(--golden-text);
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* ===== ICON PLACEHOLDER (inline SVGs) ===== */
.icon-medal, .icon-contacts {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 2.5rem; line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 999px) {
    nav { padding: 0 20px; justify-content: space-between; }
    nav .nav-divider { display: none; }
    nav .main_nav {
        width: 100%; height: 100%; background: rgba(0,0,0,0.88);
        backdrop-filter: blur(0.7rem); -webkit-backdrop-filter: blur(0.7rem);
        position: fixed; top: 0; left: 100%;
        flex-direction: column; align-items: center; justify-content: center;
        gap: 2rem; transition: all 0.3s linear; margin-left: 0;
    }
    nav .main_nav.show-nav { left: 0; }
    nav .mobNav { display: flex; }
    nav .main_nav .dropdown > a::after { position: absolute; right: 1rem; }
    nav .main_nav .dropdown { 
        /* width: 100%;  */
        flex-direction: column; align-items: center; }
    nav .main_nav .dropdown > a { width: 100%; justify-content: center; 
        /* padding: 0.8rem 1rem;  */
    }
    nav .main_nav .dropdown-menu { position: static; transform: none; max-height: 0; overflow: hidden; width: calc(100% - 2rem); box-shadow: none; border: none; background: rgba(0,0,0,0.4); border-left: 2px solid rgba(196,179,105,0.3); transition: all 0.3s ease; }
    nav .main_nav .dropdown.open .dropdown-menu { max-height: 500px; opacity: 1; visibility: visible; padding: 0.4rem 0; margin: 0.3rem 0 0.5rem 0; }
    nav .main_nav .dropdown.open > a::after { transform: rotate(180deg); }
    nav .main_nav .dropdown-menu a { padding: 0.7rem 1.2rem; font-size: 0.85rem; }

    #home { flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem; text-align: center; }
    #home .banner_pic { width: 180px; }
    #home .banner_text { width: 100%; }
    #home .header { font-size: 2rem; }
    #home .buttons { justify-content: center; }

    .counter_box { padding: 3rem 2rem; flex-direction: column; align-items: flex-start; gap: 2rem; }
    .counter_box .col-divider { width: 60px; height: 2px; }

    #about { padding: 4rem 1.5rem; }
    #about .about-grid { grid-template-columns: 1fr; }

    #services .plan-grid { gap: 2rem; }
    #services .plan-card { width: 100%; max-width: 500px; }

    #about-features .box { width: 100%; }

    footer { padding: 3rem 1.5rem 0; }
    footer .footer-top { flex-direction: column; }

    .wa-float { width: 48px; height: 48px; bottom: 10px; right: 10px; }
    .wa-icon { width: 48px; height: 48px; }
    
    .scroll-top-btn { width: 42px; height: 42px; bottom: 60px; right: 14px; }
    .scroll-top-btn svg { width: 20px; height: 20px; }

    body nav .logo {
        width: 167px;
    }
}

@media (max-width: 600px) {
    #home .header { font-size: 1.8rem; }
    #services .section-header h2, #about .section-header .primary, #faqs .section-header h2 { font-size: 1.8rem; }
    #about-features .section-title { font-size: 1.8rem; }
    .counter_box .col .content .main_counter { font-size: 1.8rem; }
    
    #compliance .compliance-toggler { padding: 1.2rem 1rem; }
    #compliance .compliance-header { flex-direction: row; gap: 0.8rem; }
    #compliance .compliance-icon { font-size: 1.5rem; }
    #compliance .compliance-title-wrap h3 { font-size: 0.95rem; }
    #compliance .compliance-subtitle { font-size: 0.75rem; }
    #compliance .compliance-inner { padding: 0 1rem 1.5rem; }
    #compliance .compliance-inner h4 { font-size: 1.1rem; }
    #compliance .compliance-inner h5 { font-size: 0.95rem; }
}

/* Accessibility widget */
.uw-widget-custom-trigger { z-index: 99 !important; bottom: 12% !important; }
.uw-widget-custom-trigger .short-key { display: none !important; }
