/* ============================
   Auvisa - Common Styles
   Shared across all pages: reset, layout, header, footer,
   buttons, sections, hero, forms, cards, CTA, mobile-cta
   ============================ */

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #212529;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Header top: white bg with logo */
.header__top {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    min-height: 70px;
}

.header__logo img {
    width: 200px;
    height: auto;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    position: relative;
}

.lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: #212529;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lang-switcher__toggle:hover {
    border-color: #1f5184;
    background-color: #f8f9fa;
}

.lang-switcher__flag {
    font-size: 16px;
    line-height: 1;
}

.lang-switcher__code {
    letter-spacing: 0.5px;
}

.lang-switcher__arrow {
    transition: transform 0.2s ease;
}

.lang-switcher.open .lang-switcher__arrow {
    transform: rotate(180deg);
}

.lang-switcher__menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1002;
    overflow: hidden;
}

.lang-switcher.open .lang-switcher__menu {
    display: flex;
    flex-direction: column;
}

.lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    transition: background-color 0.15s ease;
}

.lang-switcher__item:hover {
    background-color: #dce2eb;
}

.lang-switcher__item--active {
    background-color: #f0f4f8;
    font-weight: 700;
    color: #1f5184;
}

.header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav bar: blue bg with white links */
.header__nav-bar {
    background-color: #1f5184;
}

.header__nav {
    display: none;
    flex-direction: column;
}

.header__nav.open {
    display: flex;
}

.header__link {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.header__link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* ============================================
   HEADER DROPDOWN
   ============================================ */
.header__dropdown {
    position: relative;
}

.header__link--dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.header__dropdown-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.header__dropdown.open .header__dropdown-arrow {
    transform: rotate(180deg);
}

.header__dropdown-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.15);
}

.header__dropdown.open .header__dropdown-menu {
    display: flex;
}

.header__dropdown-link {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 15px 10px 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.2s ease;
}

.header__dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.header__dropdown-link:last-child {
    border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #1f5184;
    padding: 20px 0;
    text-align: center;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 12px;
}

.footer__link {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 6px 16px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #28a745;
}

.footer__copy {
    font-size: 13px;
    color: #ffffff;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn--primary {
    background-color: #28a745;
    color: #ffffff;
    border-color: transparent;
}

.btn--primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
}

.btn--outline {
    background: transparent;
    color: #1f5184;
    border-color: #1f5184;
}

.btn--outline:hover {
    background: #1f5184;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--white {
    background: #ffffff;
    color: #1f5184;
    border-color: #ffffff;
}

.btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn--lg {
    font-size: 17px;
    padding: 16px 40px;
}

.btn--full {
    width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 60px 0;
}

.section--light {
    background-color: #ffffff;
}

.section--gray {
    background-color: #f5f5f7;
}

.section__title {
    font-size: 28px;
    font-weight: 700;
    color: #1f5184;
    text-align: center;
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 16px;
    color: #6c757d;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ============================================
   HERO (base structure — no background-image)
   ============================================ */
.hero {
    position: relative;
    background-color: #1f5184;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 81, 132, 0.75) 0%, rgba(21, 56, 91, 0.85) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 80px 20px;
    max-width: 720px;
}

.hero__title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    border-bottom: 4px solid #28a745;
    display: inline-block;
    padding-bottom: 12px;
}

.hero__subtitle {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 0 32px;
    line-height: 1.7;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: #f9fafb;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 10px;
}

.feature-card__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

/* ============================================
   FUND CARDS GRID
   ============================================ */
.fund-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.fund-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fund-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #1f5184;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fund-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.fund-card:hover::before {
    opacity: 1;
}

.fund-card__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #1f5184;
    background: rgba(31, 81, 132, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fund-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 12px;
}

.fund-card__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 16px;
}

.pricing-card__price {
    font-size: 36px;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 4px;
    line-height: 1.2;
}

.pricing-card__text {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    width: 100%;
    text-align: left;
}

.pricing-card__features li {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%2328a745'/%3E%3Cpath d='M4 7l2 2 4-4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.pricing-card .btn {
    margin-top: auto;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.dest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.dest-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.dest-card__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.dest-card__body {
    padding: 20px 24px 24px;
}

.dest-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 8px;
}

.dest-card__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #1f5184 0%, #15385b 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-banner__title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-banner__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(31, 81, 132, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__label {
    font-size: 14px;
    font-weight: 600;
    color: #1f5184;
    margin-bottom: 2px;
}

.contact-info__value {
    font-size: 15px;
    color: #6c757d;
}

/* ============================================
   FORM
   ============================================ */
.contact-form {
    background: #f9fafb;
    padding: 32px 24px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #1f5184;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f5184;
    margin-bottom: 6px;
}

.form-label--checkbox {
    font-weight: 400;
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 15px;
    color: #212529;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: #1f5184;
    box-shadow: 0 0 0 3px rgba(31, 81, 132, 0.15);
}

.form-input::placeholder {
    color: #bbbbbb;
}

select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FORM — RADIO GROUP
   ============================================ */
.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #212529;
    cursor: pointer;
}

.form-radio input[type="radio"] {
    accent-color: #1f5184;
    width: 18px;
    height: 18px;
    margin: 0;
}

@media (min-width: 768px) {
    .form-radio-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ============================================
   FORM — FILE INPUT
   ============================================ */
input[type="file"].form-input {
    padding: 12px 16px;
    cursor: pointer;
}

/* ============================================
   FORM MESSAGES
   ============================================ */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
}

.form-message--success {
    background: rgba(40, 167, 69, 0.1);
    color: #218838;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-message--error {
    background: rgba(220, 53, 69, 0.1);
    color: #c62828;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-cta.visible {
    transform: translateY(0);
}

/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {

    /* Header */
    .header__toggle {
        display: none;
    }

    .header__nav {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .header__link {
        border-bottom: none;
        padding: 14px 20px;
    }

    /* Dropdown — desktop hover */
    .header__dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background-color: #1f5184;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 8px 8px;
        z-index: 1001;
    }

    .header__dropdown:hover .header__dropdown-menu,
    .header__dropdown.open .header__dropdown-menu {
        display: flex;
    }

    .header__dropdown-link {
        padding: 12px 20px;
        font-size: 13px;
    }

    .header__dropdown-link:hover {
        background-color: #183e65;
    }

    /* Hero */
    .hero__content {
        padding: 100px 20px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__subtitle {
        font-size: 20px;
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section__title {
        font-size: 34px;
    }

    /* Features */
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fund grid */
    .fund-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing grid */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Destination grid */
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form */
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 40px 32px;
    }

    /* CTA Banner */
    .cta-banner__title {
        font-size: 32px;
    }

    /* Mobile CTA */
    .mobile-cta {
        display: none;
    }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {

    /* Header */
    .header__logo img {
        width: 240px;
    }

    /* Hero */
    .hero {
        min-height: 540px;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__subtitle {
        font-size: 22px;
    }

    /* Sections */
    .section__title {
        font-size: 38px;
    }

    /* Features */
    .features {
        grid-template-columns: repeat(3, 1fr);
    }

    .features--five {
        grid-template-columns: repeat(5, 1fr);
    }

    /* Fund grid */
    .fund-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Pricing grid */
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr 2fr;
        gap: 60px;
        align-items: start;
    }
}

/* ============================================
   ARTICLE BLOCK (article-v1.php)
   ============================================ */
.article-block {
    max-width: 800px;
    margin: 0 auto;
}

.article-block__heading {
    font-size: 26px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-block__subheading {
    font-size: 20px;
    font-weight: 700;
    color: #1f5184;
    margin-top: 32px;
    margin-bottom: 12px;
}

.article-block__content p {
    font-size: 15px;
    color: #212529;
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-block__content a {
    color: #1f5184;
    text-decoration: underline;
    font-weight: 600;
}

.article-block__content a:hover {
    color: #183e65;
}

.article-block__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.article-block__content ul li {
    font-size: 15px;
    color: #212529;
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.7;
    position: relative;
}

.article-block__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
}

.article-block__content ul li:last-child {
    border-bottom: none;
}

.article-block__content ul li strong,
.article-block__content strong {
    color: #1f5184;
}

.article-block__image {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
}

.article-block__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ============================================
   CALLOUT BOX (callout-v1.php)
   ============================================ */
.callout--info {
    background: #f0f5fa;
    border-left: 4px solid #1f5184;
    border-radius: 0 8px 8px 0;
    padding: 24px;
    margin: 24px 0;
}

.callout--warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
}

.callout--warning .callout__title {
    color: #856404;
}

.callout--warning .callout__content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    margin-bottom: 0;
}

.callout--info .callout__title {
    color: #1f5184;
}

.callout--info .callout__content p {
    font-size: 15px;
    color: #212529;
    line-height: 1.7;
    margin-bottom: 0;
}

.callout__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.callout--tips {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
}

.callout--tips .callout__title {
    font-size: 20px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 20px;
}

.callout__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.callout__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #212529;
    line-height: 1.6;
}

.callout__list li:last-child {
    border-bottom: none;
}

.callout__list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.callout--price {
    background: #ffffff;
    border: 2px solid #1f5184;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 400px;
    margin: 32px auto 0;
}

.callout__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.callout__amount {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #1f5184;
    line-height: 1.2;
    margin-bottom: 8px;
}

.callout__note {
    display: block;
    font-size: 13px;
    color: #6c757d;
}

/* ============================================
   FAQ ACCORDION (faq-v1.php)
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.section--light .faq-item {
    background: #f9fafb;
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #1f5184;
    text-align: left;
    line-height: 1.4;
    transition: background-color 0.2s ease;
}

.faq-item__question:hover {
    background-color: rgba(31, 81, 132, 0.04);
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #1f5184;
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-item__answer {
    padding: 0 24px 24px;
}

.faq-item__answer p {
    font-size: 15px;
    color: #212529;
    line-height: 1.7;
    margin-bottom: 14px;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   STEP CARD (card-v2.php type=step)
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-card__number {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.step-card__number svg {
    width: 100%;
    height: 100%;
}

.step-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 10px;
}

.step-card__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

/* ============================================
   SERVICE CARD (card-v2.php type=service)
   ============================================ */
.service-card {
    background: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================================
   VISA TYPE CARD (card-v2.php type=visa-type)
   ============================================ */
.visa-type-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 24px;
    border-left: 4px solid #1f5184;
    margin-bottom: 16px;
}

.visa-type-card:last-child {
    margin-bottom: 0;
}

.visa-type-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 8px;
}

.visa-type-card__desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   BENEFIT CARD (card-v2.php type=benefit)
   ============================================ */
.benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #28a745;
}

.benefit-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.benefit-card__icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card__text {
    font-size: 15px;
    color: #212529;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RELATED CARD (card-v2.php type=default)
   ============================================ */
.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.related-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.related-card__img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 8px;
    line-height: 1.3;
    padding: 16px 20px 0;
}

.related-card__text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    padding: 0 20px 20px;
}

/* ============================================
   SHARED COMPONENTS — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {

    .article-block__heading {
        font-size: 32px;
    }

    .faq-item__question {
        font-size: 18px;
        padding: 24px 28px;
    }

    .faq-item__answer {
        padding: 0 28px;
    }

    .faq-item.active .faq-item__answer {
        padding: 0 28px 28px;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .callout__amount {
        font-size: 48px;
    }
}

/* ============================================
   SHARED COMPONENTS — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {

    .article-block__heading {
        font-size: 36px;
    }

    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .callout--tips {
        padding: 36px 40px;
    }
}

/* ============================================
   CARD HORIZONTAL (card-horizontal-v1.php)
   ============================================ */
.card-h {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #1f5184;
    transition: box-shadow 0.3s ease;
}

.card-h:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-h__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.card-h__icon svg {
    width: 100%;
    height: 100%;
}

.card-h__image {
    flex-shrink: 0;
    width: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.card-h__image img {
    width: 100%;
    height: auto;
    display: block;
}

.card-h__body {
    flex: 1;
    min-width: 0;
}

.card-h__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #1f5184;
    background: rgba(31, 81, 132, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-h__title {
    font-size: 17px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 6px;
}

.card-h__text {
    font-size: 15px;
    color: #212529;
    line-height: 1.6;
    margin: 0 0 12px;
}

.card-h__text:last-child {
    margin-bottom: 0;
}

/* ============================================
   CARD VERTICAL (card-vertical-v1.php)
   ============================================ */
.card-v {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.card-v:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-v__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-v__icon {
    width: 64px;
    height: 64px;
    margin: 28px auto 0;
}

.card-v__icon svg {
    width: 100%;
    height: 100%;
}

.card-v__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-v__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #1f5184;
    background: rgba(31, 81, 132, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.card-v__title {
    font-size: 18px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-v__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-v__body .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Card verticale centrata (icon, no image) */
.card-v--centered {
    text-align: center;
}

.card-v--centered .card-v__body .btn {
    align-self: center;
}

/* ============================================
   CARD PRICE (card-price-v1.php)
   ============================================ */
.card-price {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-price:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card-price__title {
    font-size: 18px;
    font-weight: 700;
    color: #1f5184;
    margin-bottom: 16px;
}

.card-price__amount {
    font-size: 36px;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 4px;
    line-height: 1.2;
}

.card-price__text {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.card-price__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    width: 100%;
    text-align: left;
}

.card-price__features li {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    padding: 6px 0 6px 24px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.card-price__features li:last-child {
    border-bottom: none;
}

.card-price__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%2328a745'/%3E%3Cpath d='M4 7l2 2 4-4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.card-price .btn {
    margin-top: auto;
}

/* ============================================
   CARD GRIDS
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* ============================================
   NEW CARDS — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   NEW CARDS — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {

    .card-grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}
