
:root {
    --navy: #1a2744;
    --navy-dark: #0f1a2e;
    --red-accent: #c0392b;
    --red-hover: #e74c3c;
    --gray-bg: #f4f6f8;
    --gray-border: #dee2e6;
    --gray-text: #555;
    --dark-text: #222;
    --white: #fff;
    --card-shadow: 0 1px 3px rgba(26,39,68,.06);
    --card-shadow-hover: 0 8px 30px rgba(26,39,68,.1);
    --card-shadow-active: 0 4px 20px rgba(192,57,43,.12), 0 1px 4px rgba(26,39,68,.06);
    --gradient-line: linear-gradient(135deg, var(--red-accent), #e74c3c, #f39c12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--dark-text);
    background: var(--gray-bg);
    line-height: 1.6;
}

/* ========== NAVBAR ========== */
.navbar_old {
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.navbar-brand .logo-icon {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand .logo-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.navbar-brand span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
    letter-spacing: -.02em;
}

.navbar-brand span em {
    font-style: normal;
    color: var(--red-accent);
}

.navbar-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
}

.navbar-links a {
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    transition: color .2s;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-accent);
    transition: width .25s;
}

.navbar-links a:hover {
    color: var(--red-accent);
}
.navbar-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle svg {
    width: 26px;
    height: 26px;
    stroke: var(--navy);
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2c3e6b 100%);
    position: relative;
    padding: 4.5rem 2rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(192,57,43,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-breadcrumb {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 1rem;
}
.hero-breadcrumb a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .2s;
}
.hero-breadcrumb a:hover {
    color: var(--white);
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: .6rem;
    letter-spacing: -.02em;
}

.hero p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    max-width: 600px;
}

.hero-dots {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 10px;
    opacity: .12;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
}

/* ========== MAIN CONTENT ========== */
.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.faq-search {
    position: relative;
    margin-bottom: 2rem;
}

.faq-search input {
    width: 100%;
    padding: 1.1rem 1.2rem 1.1rem 3.2rem;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(26,39,68,.07);
    transition: box-shadow .3s;
    outline: none;
}

.faq-search input:focus {
    box-shadow: 0 2px 12px rgba(26,39,68,.07), 0 0 0 3px rgba(26,39,68,.1);
}
.faq-search input::placeholder {
    color: #aaa;
}

.faq-search .search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    stroke: #999;
    pointer-events: none;
}

.faq-count {
    text-align: center;
    font-size: .85rem;
    color: #999;
    margin-bottom: 1.5rem;
    transition: opacity .3s;
    opacity: 0;
}

/* ========== MODERN CARD ACCORDION ========== */
#faqContainer {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
    transition: box-shadow .35s ease, transform .35s ease;
    animation: cardAppear .5s cubic-bezier(.22,1,.36,1) both;
}

.faq-item:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}
.faq-item.active {
    box-shadow: var(--card-shadow-active);
    transform: translateY(0);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    border-radius: 4px 0 0 4px;
    transition: background .35s ease, width .35s ease;
}

.faq-item.active::before {
    background: var(--gradient-line);
    width: 5px;
}
.faq-item.hidden {
    display: none;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.4rem 1.3rem 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    line-height: 1.5;
    transition: color .2s;
}

.faq-question:hover {
    color: var(--navy);
}

.faq-question .num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    color: var(--navy);
    transition: all .35s cubic-bezier(.22,1,.36,1);
}

.faq-item.active .faq-question .num {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    transform: scale(1.05);
}

.faq-question .text {
    flex: 1;
}

/* Plus → X toggle */
.faq-toggle-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s cubic-bezier(.22,1,.36,1);
}

.faq-item.active .faq-toggle-icon {
    background: var(--red-accent);
    transform: rotate(45deg);
}

.faq-toggle-icon .icon-bar {
    position: absolute;
    background: var(--navy);
    border-radius: 2px;
    transition: background .35s;
}

.faq-toggle-icon .icon-bar.h {
    width: 14px;
    height: 2px;
}
.faq-toggle-icon .icon-bar.v {
    width: 2px;
    height: 14px;
}
.faq-item.active .faq-toggle-icon .icon-bar {
    background: var(--white);
}

/* Answer — CSS grid collapse */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.22,1,.36,1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-content {
    padding: 0 1.4rem 1.5rem 4.2rem;
    font-size: .93rem;
    color: var(--gray-text);
    line-height: 1.8;
    border-top: 1px solid rgba(0,0,0,.04);
    padding-top: 1rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .35s ease .1s, transform .35s ease .1s;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-content p {
    margin-bottom: .8rem;
}

.faq-answer-content ul {
    margin: .5rem 0 1rem 0;
    padding-left: 0;
    list-style: none;
}

.faq-answer-content ul li {
    margin-bottom: .5rem;
    position: relative;
    padding-left: 1.4rem;
}

.faq-answer-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-accent);
}

.faq-answer-content a {
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(192,57,43,.3);
    transition: border-color .2s, color .2s;
}

.faq-answer-content a:hover {
    color: var(--navy);
    border-color: var(--navy);
}

/* No results */
.no-results {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}
.no-results.visible {
    display: block;
}
.no-results svg {
    width: 48px;
    height: 48px;
    stroke: #ccc;
    margin-bottom: .8rem;
}

/* ========== CTA / CONTACT BANNER ========== */
.cta-banner {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2rem;
    margin-top: 2.5rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(26,39,68,.06);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-line);
}

.cta-banner h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: .5rem;
}

.cta-banner > p {
    color: var(--gray-text);
    font-size: .93rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 780px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: var(--gray-bg);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: var(--dark-text);
    transition: background .25s, box-shadow .25s, transform .25s;
}

.contact-card:hover {
    background: var(--white);
    box-shadow: 0 4px 18px rgba(26,39,68,.1);
    transform: translateY(-2px);
}

.contact-card .card-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .card-icon svg {
    width: 20px;
    height: 20px;
}

.contact-card .card-icon.phone-icon {
    background: rgba(26,39,68,.08);
}
.contact-card .card-icon.phone-icon svg {
    stroke: var(--navy);
    fill: none;
}

.contact-card .card-icon.whatsapp-icon {
    background: rgba(37,211,102,.1);
}
.contact-card .card-icon.whatsapp-icon svg {
    fill: #25d366;
}

.contact-card .card-icon.email-icon {
    background: rgba(192,57,43,.08);
}
.contact-card .card-icon.email-icon svg {
    stroke: var(--red-accent);
    fill: none;
}

.contact-card .card-info {
    text-align: left;
    min-width: 0;
}

.contact-card .card-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    margin-bottom: .15rem;
}

.contact-card .card-value {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-card .card-value small {
    display: block;
    font-weight: 400;
    font-size: .78rem;
    color: var(--gray-text);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.5);
    text-align: center;
    padding: 2rem;
    font-size: .8rem;
}

.footer a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}
.footer a:hover {
    color: var(--white);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--gray-border);
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

    .navbar-links.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero {
        padding: 3rem 1.5rem;
    }
    .hero-dots {
        display: none;
    }
    .main-content {
        padding: 2rem 1rem 3rem;
    }

    .faq-question {
        padding: 1.1rem 1rem 1.1rem 1.2rem;
        gap: .7rem;
    }
    .faq-answer-content {
        padding-left: 1.2rem;
    }
    .faq-item {
        border-radius: 14px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}
