/*
 * ELP Relocation — Astra Child Theme
 * Design: Refined professional with teal/cyan brand palette
 * Primary: #3D625B (deep teal) | Accent: #00A9B5 (cyan)
 * Fonts: Cormorant Garamond (headings) + Outfit (body)
 * ============================================================
 */

/* ============================================================
   0. GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    --elp-teal:        #3D625B;
    --elp-teal-dark:   #2c4a44;
    --elp-teal-light:  #4e7a72;
    --elp-cyan:        #00A9B5;
    --elp-cyan-dark:   #008a94;
    --elp-cyan-light:  #33bdc7;

    --elp-cream:       #f9f7f4;
    --elp-white:       #ffffff;
    --elp-dark:        #1a2e2b;
    --elp-text:        #2d4a46;
    --elp-text-muted:  #6b8a85;
    --elp-border:      #d4e0de;

    --elp-font-head:   'Cormorant Garamond', Georgia, serif;
    --elp-font-body:   'Outfit', system-ui, sans-serif;

    --elp-radius:      8px;
    --elp-radius-lg:   16px;
    --elp-shadow:      0 2px 16px rgba(61,98,91,.10);
    --elp-shadow-lg:   0 8px 40px rgba(61,98,91,.16);

    --elp-transition:  0.25s ease;
    --elp-max-width:   1200px;
}

/* ============================================================
   2. GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--elp-font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--elp-text);
    background: var(--elp-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--elp-font-head);
    font-weight: 600;
    line-height: 1.2;
    color: var(--elp-teal);
    margin-top: 0;
}

a { color: var(--elp-cyan); text-decoration: none; transition: color var(--elp-transition); }
a:hover { color: var(--elp-cyan-dark); }

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

ul { padding-left: 0; list-style: none; margin: 0; }

p { margin-top: 0; margin-bottom: 1rem; }

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.elp-container {
    max-width: var(--elp-max-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.elp-section {
    padding-block: 5rem;
}

.elp-section--alt {
    background: var(--elp-cream);
}

.elp-section__header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.elp-section__label {
    display: inline-block;
    font-family: var(--elp-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--elp-cyan);
    margin-bottom: 0.75rem;
}

.elp-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.elp-section__subtitle {
    font-size: 1.1rem;
    color: var(--elp-text-muted);
    font-weight: 400;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.elp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--elp-radius);
    font-family: var(--elp-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--elp-transition);
    text-decoration: none;
    white-space: nowrap;
}

.elp-btn--primary {
    background: var(--elp-cyan);
    color: var(--elp-white);
    border-color: var(--elp-cyan);
}
.elp-btn--primary:hover {
    background: var(--elp-cyan-dark);
    border-color: var(--elp-cyan-dark);
    color: var(--elp-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,169,181,.30);
}

.elp-btn--outline {
    background: transparent;
    color: var(--elp-white);
    border-color: rgba(255,255,255,.60);
}
.elp-btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--elp-white);
    color: var(--elp-white);
    transform: translateY(-1px);
}

.elp-btn--outline-white {
    background: transparent;
    color: var(--elp-white);
    border-color: rgba(255,255,255,.6);
}
.elp-btn--outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--elp-white);
    color: var(--elp-white);
}

.elp-btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.elp-btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   5. HEADER / NAVIGATION
   ============================================================ */

/* ── Outer wrapper ── */
.elp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #3D625B;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.elp-header.is-scrolled {
    background: #2c4a44;
    box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

/* ── Main bar container ── */
.elp-header__bar {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 640px)  { .elp-header__bar { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .elp-header__bar { padding-inline: 2rem; } }

.elp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .elp-header__inner { height: 72px; }
}

/* ── Logo ── */
.elp-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.elp-header__logo img,
.elp-header__logo .elp-logo {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}
@media (min-width: 1024px) {
    .elp-header__logo img,
    .elp-header__logo .elp-logo { height: 44px; }
}
.elp-logo-text {
    font-family: var(--elp-font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--elp-white);
    letter-spacing: 0.04em;
}

/* ── Desktop Nav ── */
.elp-header__nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}
@media (min-width: 1024px) {
    .elp-header__nav { display: flex; }
}

.elp-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.elp-nav__list li a,
.elp-nav__link {
    display: block;
    padding: 0.5rem 0.875rem;
    color: rgba(255,255,255,.85);
    font-family: var(--elp-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.elp-nav__list li a:hover,
.elp-nav__link:hover,
.elp-nav__list li.current-menu-item > a {
    color: var(--elp-white);
    background: rgba(255,255,255,.10);
}

/* ── Right-side actions ── */
.elp-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── CTA button ── */
.elp-btn--cyan {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--elp-cyan);
    color: var(--elp-white);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-family: var(--elp-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}
.elp-btn--cyan:hover {
    background: var(--elp-cyan-dark);
    color: var(--elp-white);
    box-shadow: 0 4px 12px rgba(0,169,181,.40);
    transform: translateY(-1px);
}

.elp-header__cta {
    display: none;
}
@media (min-width: 1024px) {
    .elp-header__cta { display: inline-flex; }
}

/* ── Language Dropdown ── */
.elp-lang {
    position: relative;
}

.elp-lang__trigger {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    color: rgba(255,255,255,.85);
    background: transparent;
    border: none;
    border-radius: 6px;
    font-family: var(--elp-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.elp-lang__trigger:hover {
    color: var(--elp-white);
    background: rgba(255,255,255,.10);
}

.elp-lang__flag { font-size: 1rem; line-height: 1; }
.elp-lang__code { font-size: 0.875rem; font-weight: 500; }

.elp-lang__chevron {
    opacity: 0.7;
    transition: transform 0.2s ease;
    color: currentColor;
}
.elp-lang.is-open .elp-lang__chevron {
    transform: rotate(180deg);
}

.elp-lang__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
    overflow: hidden;
    min-width: 130px;
    z-index: 99995;
    /* Animate open */
    animation: elpLangIn 0.18s ease;
}
.elp-lang__menu[hidden] { display: none; }

@keyframes elpLangIn {
    from { opacity: 0; transform: translateY(-6px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.elp-lang__option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    font-family: var(--elp-font-body);
    font-size: 0.875rem;
    color: #374151;
    transition: background 0.15s ease;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.elp-lang__option:last-child { border-bottom: none; }
.elp-lang__option:hover { background: #f9fafb; color: #374151; }
.elp-lang__option.is-active {
    background: #3D625B;
    color: #ffffff;
    font-weight: 600;
}
.elp-lang__option-flag { font-size: 1rem; line-height: 1; }
.elp-lang__option-name { font-size: 0.875rem; }

/* Backdrop to close dropdown on outside click */
.elp-lang-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99990; /* must be BELOW .elp-lang__menu (z-index: 99995) */
}
.elp-lang-backdrop.is-active { display: block; }

/* ── Hamburger (mobile only) ── */
.elp-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--elp-white);
    cursor: pointer;
    transition: background 0.2s ease;
}
.elp-hamburger:hover { background: rgba(255,255,255,.10); }

@media (min-width: 1024px) {
    .elp-hamburger { display: none; }
}

.elp-hamburger__icon { display: flex; align-items: center; justify-content: center; }

/* ── Mobile Menu ── */
.elp-mobile-menu {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}
.elp-mobile-menu.is-open {
    max-height: 500px;
    opacity: 1;
}

@media (min-width: 1024px) {
    .elp-mobile-menu { display: none !important; }
}

.elp-mobile-menu__inner {
    background: #2c4a44;
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 0.75rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.elp-mobile-menu__link {
    display: block;
    padding: 0.75rem 0.75rem;
    color: rgba(255,255,255,.85);
    font-family: var(--elp-font-body);
    font-size: 1rem;
    font-weight: 400;
    border-radius: 6px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color 0.15s ease, background 0.15s ease;
}
.elp-mobile-menu__link:last-of-type { border-bottom: none; }
.elp-mobile-menu__link:hover {
    color: var(--elp-white);
    background: rgba(255,255,255,.08);
}

.elp-mobile-menu__cta {
    padding-top: 0.75rem;
}

/* ============================================================
   6. HERO
   ============================================================ */
.elp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--elp-teal-dark);
    overflow: hidden;
}

.elp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.55;
}

.elp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(28,56,50,.95) 0%,
        rgba(44,74,68,.85) 45%,
        rgba(44,74,68,.55) 70%,
        rgba(44,74,68,.30) 100%
    );
}

.elp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-block: 8rem 3rem;
    display: flex;
    flex-direction: column;
}

.elp-hero__label {
    font-family: var(--elp-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--elp-cyan-light);
    margin-bottom: 1rem;
    display: block;
}

.elp-hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.elp-hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-block: 0;
}

.elp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,169,181,.20);
    border: 1px solid rgba(0,169,181,.40);
    color: var(--elp-cyan-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.elp-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--elp-white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.elp-hero__title span,
.elp-hero__title--accent {
    color: var(--elp-cyan-light);
}

.elp-hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,.80);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 560px;
}

.elp-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.elp-hero__stats {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 3rem;
}

.elp-hero__stats-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.elp-stat {
    display: flex;
    flex-direction: column;
}

.elp-stat__number {
    font-family: var(--elp-font-head);
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.elp-stat__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,.90);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* ============================================================
   7. ABOUT
   ============================================================ */
.elp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.elp-about__image {
    border-radius: var(--elp-radius-lg);
    overflow: hidden;
    box-shadow: var(--elp-shadow-lg);
}

.elp-about__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.elp-about__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--elp-cyan);
    margin-bottom: 0.75rem;
}

.elp-about__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.elp-about__text {
    color: var(--elp-text-muted);
    font-size: 1.05rem;
}

.elp-about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.elp-about__feature {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.elp-about__feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0,169,181,.12);
    color: var(--elp-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.elp-about__feature-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--elp-teal);
    margin-bottom: 0.2rem;
}

.elp-about__feature-text span {
    font-size: 0.85rem;
    color: var(--elp-text-muted);
}

/* ============================================================
   8. SERVICES
   ============================================================ */
.elp-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.elp-service-card {
    background: var(--elp-white);
    border: 1px solid var(--elp-border);
    border-radius: var(--elp-radius-lg);
    padding: 2rem;
    transition: all var(--elp-transition);
    position: relative;
    overflow: hidden;
}

.elp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--elp-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--elp-transition);
}

.elp-service-card:hover {
    border-color: var(--elp-cyan);
    box-shadow: var(--elp-shadow-lg);
    transform: translateY(-4px);
}

.elp-service-card:hover::before {
    transform: scaleX(1);
}

.elp-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--elp-teal), var(--elp-teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.elp-service-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--elp-teal);
}

.elp-service-card__desc {
    font-size: 0.92rem;
    color: var(--elp-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   9. COUNTRIES
   ============================================================ */
.elp-countries__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.elp-country-card {
    border-radius: var(--elp-radius-lg);
    overflow: hidden;
    box-shadow: var(--elp-shadow);
    background: var(--elp-white);
    border: 1px solid var(--elp-border);
}

.elp-country-card__header {
    padding: 2.5rem 2rem;
    color: var(--elp-white);
    text-align: center;
}

.elp-country-card__header--lt {
    background: linear-gradient(135deg, rgba(44,110,63,.82) 0%, rgba(61,98,91,.88) 100%),
                url('../images/vilnius-city.jpg') center/cover no-repeat;
}

.elp-country-card__header--lv {
    background: linear-gradient(135deg, rgba(139,26,26,.82) 0%, rgba(61,98,91,.88) 100%),
                url('../images/riga-city.jpg') center/cover no-repeat;
}

.elp-country-card__flag {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: block;
}

.elp-country-card__name {
    font-size: 2rem;
    color: var(--elp-white);
    margin-bottom: 0.25rem;
}

.elp-country-card__capital {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.elp-country-card__body {
    padding: 2rem;
}

.elp-country-card__facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--elp-border);
}

.elp-fact {
    text-align: center;
}

.elp-fact__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--elp-text-muted);
    margin-bottom: 0.25rem;
}

.elp-fact__value {
    display: block;
    font-family: var(--elp-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--elp-teal);
}

.elp-country-card__body p {
    font-size: 0.95rem;
    color: var(--elp-text-muted);
}

.elp-country-card__body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--elp-teal);
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
}

.elp-country-card__benefits li,
.elp-country-card__permits li {
    font-size: 0.9rem;
    color: var(--elp-text);
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.elp-country-card__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--elp-cyan);
    font-weight: 700;
}

.elp-country-card__permits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--elp-teal-light);
}

/* ============================================================
   10. PROCESS
   ============================================================ */
.elp-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: none;
}

.elp-process__step {
    background: var(--elp-white);
    border: 1px solid var(--elp-border);
    border-radius: var(--elp-radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--elp-transition);
}

.elp-process__step:hover {
    border-color: var(--elp-cyan);
    box-shadow: var(--elp-shadow);
    transform: translateY(-3px);
}

.elp-process__step-number {
    font-family: var(--elp-font-head);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,169,181,.18);
    line-height: 1;
    margin-bottom: 1rem;
}

.elp-process__step-title {
    font-size: 1.15rem;
    color: var(--elp-teal);
    margin-bottom: 0.75rem;
}

.elp-process__step-desc {
    font-size: 0.92rem;
    color: var(--elp-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   11. DOCUMENTS
   ============================================================ */
.elp-documents__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.elp-doc-card {
    background: var(--elp-white);
    border: 1px solid var(--elp-border);
    border-radius: var(--elp-radius-lg);
    padding: 1.75rem;
    transition: box-shadow var(--elp-transition);
}

.elp-doc-card:hover {
    box-shadow: var(--elp-shadow);
}

.elp-doc-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--elp-border);
}

.elp-doc-card__icon {
    font-size: 1.75rem;
}

.elp-doc-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--elp-teal);
    margin: 0;
}

.elp-doc-card__list li {
    font-size: 0.875rem;
    color: var(--elp-text);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    border-bottom: 1px solid rgba(212,224,222,.5);
    line-height: 1.5;
}

.elp-doc-card__list li:last-child {
    border-bottom: none;
}

.elp-doc-card__list li::before {
    content: '·';
    position: absolute;
    left: 0.25rem;
    color: var(--elp-cyan);
    font-size: 1.2rem;
    line-height: 1.3;
}

.elp-documents__note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0,169,181,.08);
    border-left: 4px solid var(--elp-cyan);
    border-radius: 0 var(--elp-radius) var(--elp-radius) 0;
    font-size: 0.92rem;
    color: var(--elp-text);
}

/* ============================================================
   12. PRICING
   ============================================================ */
.elp-pricing__tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    background: var(--elp-cream);
    border-radius: 50px;
    padding: 0.375rem;
    width: fit-content;
    margin-inline: auto;
}

.elp-pricing__tab {
    padding: 0.625rem 2rem;
    border-radius: 50px;
    font-family: var(--elp-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--elp-text-muted);
    transition: all var(--elp-transition);
}

.elp-pricing__tab.active {
    background: var(--elp-teal);
    color: var(--elp-white);
    box-shadow: 0 2px 8px rgba(61,98,91,.25);
}

.elp-pricing__panel {
    display: none;
}

.elp-pricing__panel.active {
    display: block;
}

.elp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.elp-pricing-card {
    background: var(--elp-white);
    border: 1px solid var(--elp-border);
    border-radius: var(--elp-radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--elp-transition);
}

.elp-pricing-card:hover {
    box-shadow: var(--elp-shadow-lg);
    transform: translateY(-4px);
}

.elp-pricing-card--featured {
    background: var(--elp-teal);
    border-color: var(--elp-teal);
    color: var(--elp-white);
    transform: scale(1.03);
}

.elp-pricing-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.elp-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--elp-cyan);
    color: var(--elp-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.elp-pricing-card__name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: inherit;
}

.elp-pricing-card--featured .elp-pricing-card__name {
    color: var(--elp-white);
}

.elp-pricing-card__price {
    font-family: var(--elp-font-head);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--elp-cyan);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.elp-pricing-card--featured .elp-pricing-card__price {
    color: var(--elp-cyan-light);
}

.elp-pricing-card__desc {
    font-size: 0.85rem;
    color: var(--elp-text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--elp-border);
}

.elp-pricing-card--featured .elp-pricing-card__desc {
    color: rgba(255,255,255,.70);
    border-bottom-color: rgba(255,255,255,.20);
}

.elp-pricing-card__list {
    margin-bottom: 1.75rem;
}

.elp-pricing-card__list li {
    font-size: 0.875rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--elp-text);
    border-bottom: 1px solid rgba(212,224,222,.4);
}

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

.elp-pricing-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--elp-cyan);
    font-weight: 700;
    font-size: 0.8rem;
}

.elp-pricing-card--featured .elp-pricing-card__list li {
    color: rgba(255,255,255,.85);
    border-bottom-color: rgba(255,255,255,.12);
}

.elp-pricing-card--featured .elp-pricing-card__list li::before {
    color: var(--elp-cyan-light);
}

.elp-pricing-card__cta {
    display: block;
    text-align: center;
    width: 100%;
}

/* A-la-carte */
.elp-alacarte {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.elp-alacarte__heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--elp-teal);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--elp-cyan);
}

.elp-alacarte__table {
    width: 100%;
    border-collapse: collapse;
}

.elp-alacarte__table td {
    padding: 0.55rem 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--elp-border);
    color: var(--elp-text);
}

.elp-alacarte__table tr:last-child td {
    border-bottom: none;
}

.elp-alacarte__price {
    text-align: right;
    font-weight: 600;
    color: var(--elp-teal);
    white-space: nowrap;
}

.elp-pricing__note {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--elp-text-muted);
    text-align: center;
    font-style: italic;
}

/* ============================================================
   13. CONTACT
   ============================================================ */
.elp-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.elp-contact__info-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.elp-contact__info-text {
    color: var(--elp-text-muted);
    margin-bottom: 2rem;
}

.elp-contact__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.elp-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.elp-contact__detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0,169,181,.12);
    color: var(--elp-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.elp-contact__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--elp-text-muted);
    margin-bottom: 0.2rem;
}

.elp-contact__detail-value {
    font-size: 0.95rem;
    color: var(--elp-teal);
    font-weight: 500;
}

.elp-contact__detail-value a {
    color: var(--elp-teal);
}

/* ============================================================
   14. FORM
   ============================================================ */
.elp-form {
    background: var(--elp-white);
    border: 1px solid var(--elp-border);
    border-radius: var(--elp-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--elp-shadow);
}

.elp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.elp-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.elp-form__group:last-child {
    margin-bottom: 0;
}

.elp-form__group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--elp-teal);
    letter-spacing: 0.02em;
}

.elp-form__group input,
.elp-form__group select,
.elp-form__group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--elp-border);
    border-radius: var(--elp-radius);
    font-family: var(--elp-font-body);
    font-size: 0.95rem;
    color: var(--elp-text);
    background: var(--elp-white);
    transition: border-color var(--elp-transition), box-shadow var(--elp-transition);
    width: 100%;
}

.elp-form__group input:focus,
.elp-form__group select:focus,
.elp-form__group textarea:focus {
    outline: none;
    border-color: var(--elp-cyan);
    box-shadow: 0 0 0 3px rgba(0,169,181,.12);
}

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

.elp-form__privacy {
    font-size: 0.78rem;
    color: var(--elp-text-muted);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.elp-footer {
    background: var(--elp-dark);
    color: rgba(255,255,255,.75);
    padding-block: 4rem 2rem;
}

.elp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.elp-footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: 1rem;
}

.elp-footer__tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.elp-footer__social {
    display: flex;
    gap: 0.75rem;
}

.elp-footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--elp-transition);
}

.elp-footer__social-link:hover {
    background: var(--elp-cyan);
    color: var(--elp-white);
}

.elp-footer__col-title {
    font-family: var(--elp-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--elp-white);
    margin-bottom: 1.25rem;
}

.elp-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.elp-footer__links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,.75);
    transition: color var(--elp-transition);
}

.elp-footer__links a:hover {
    color: var(--elp-cyan-light);
}

.elp-footer__contact-item {
    font-size: 0.875rem;
    color: rgba(255,255,255,.80);
    margin-bottom: 0.6rem;
}

.elp-footer__contact-item a {
    color: rgba(255,255,255,.80);
}

.elp-footer__contact-item a:hover {
    color: var(--elp-cyan-light);
}

.elp-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.elp-footer__copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,.60);
    margin: 0;
}

.elp-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.elp-footer__legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,.40);
    transition: color var(--elp-transition);
}

.elp-footer__legal a:hover {
    color: rgba(255,255,255,.70);
}

/* ============================================================
   16. ASTRA OVERRIDES
   ============================================================ */
/* Remove Astra default header when using custom header */
.ast-header-break-point .main-header-bar,
.main-header-bar,
#masthead,
.site-header,
.ast-primary-header-bar,
.ast-above-header-bar,
.ast-below-header-bar {
    display: none !important;
}

/* Remove Astra default footer */
#colophon,
.site-footer,
.ast-small-footer,
.footer-widget-area,
.ast-footer-widget-area {
    display: none !important;
}

/* Remove Astra page title */
.ast-page-title-bar {
    display: none;
}

/* Remove default Astra padding */
.ast-single-post .site-content,
.site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

#content {
    padding-top: 0 !important;
}

.ast-container {
    max-width: none !important;
    padding: 0 !important;
}

/* Astra adds padding-top to body via inline style for its header height.
   Override it so our fixed header doesn't leave a gap. */
body.ast-header-break-point,
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Astra wraps content in .ast-page-builder-template or .entry-content.
   Ensure no extra top spacing bleeds through. */
.ast-page-builder-template .entry-content,
.ast-page-builder-template #content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure our header is always on top of everything */
.elp-header {
    z-index: 99999 !important;
}

/* ============================================================
   17. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .elp-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .elp-pricing-card--featured {
        transform: none;
    }

    .elp-pricing-card--featured:hover {
        transform: translateY(-4px);
    }

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

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

    .elp-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .elp-about__grid {
        grid-template-columns: 1fr;
    }

    .elp-about__image {
        display: none;
    }
}

/* ============================================================
   18. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    .elp-section {
        padding-block: 3.5rem;
    }

    .elp-nav,
    .elp-lang-switcher {
        display: none;
    }

    .elp-hamburger {
        display: flex;
    }

    .elp-hero__stats {
        gap: 1.5rem;
    }

    .elp-hero__actions {
        flex-direction: column;
    }

    .elp-hero__actions .elp-btn {
        width: 100%;
        justify-content: center;
    }

    .elp-services__grid {
        grid-template-columns: 1fr;
    }

    .elp-countries__grid {
        grid-template-columns: 1fr;
    }

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

    .elp-process__steps {
        grid-template-columns: 1fr;
    }

    .elp-documents__grid {
        grid-template-columns: 1fr;
    }

    .elp-pricing__grid {
        grid-template-columns: 1fr;
    }

    .elp-alacarte {
        grid-template-columns: 1fr;
    }

    .elp-contact__grid {
        grid-template-columns: 1fr;
    }

    .elp-form__row {
        grid-template-columns: 1fr;
    }

    .elp-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .elp-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .elp-header__inner {
        height: 64px;
    }
}

/* ============================================================
   19. UTILITIES
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--elp-text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
