/* ========================================
   ETERNUS — Global Design System
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
    /* Colors */
    --clr-beige: #E6E1D8;
    --clr-gray: #5A5A5A;
    --clr-olive: #8FA99B;
    --clr-green: #2F4F3E;
    --clr-white: #FFFFFF;
    --clr-black: #000000;
    --clr-light-bg: #F3F1EC;
    --clr-dark-bg: #5A5A5A;
    --clr-card-border: #5A5A5A;
    --clr-border: rgba(90, 90, 90, 0.45);
    --clr-border-soft: rgba(90, 90, 90, 0.25);
    --clr-text-muted: rgba(0, 0, 0, 0.68);

    /* Typography */
    --ff-heading: 'Poppins', sans-serif;
    --ff-body: 'Manrope', sans-serif;

    /* Spacing */
    --section-py: 88px;
    --section-px: 24px;
    --container-max: 1200px;
    --gap: 28px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-pill: 4px;

    /* Transitions */
    --transition: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 8px 20px rgba(47, 79, 62, 0.08);
    --shadow-md: 0 16px 32px rgba(47, 79, 62, 0.14);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--clr-black);
    background: var(--clr-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-heading);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--clr-black);
}

h1 {
    font-size: clamp(2rem, 3.8vw, 3rem);
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
    font-size: clamp(1.3rem, 2.3vw, 1.8rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--clr-black);
    font-size: 1rem;
}

/* ── Container ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-px);
}

/* ── Section ── */
.section {
    padding: var(--section-py) 0;
}

.section--beige {
    background: var(--clr-beige);
}

.section--dark {
    background: var(--clr-dark-bg);
    color: var(--clr-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--clr-white);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.92);
}

.section--dark .content-section__text li {
    color: rgba(255, 255, 255, 0.92);
}

.section--olive {
    background: var(--clr-olive);
}

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__header h2 {
    margin-bottom: 12px;
}

.section__header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.section__header--left {
    text-align: left;
}

.section__header--left p {
    margin-left: 0;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background: var(--clr-green);
    color: var(--clr-white);
}

.btn--primary:hover {
    background: #244032;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(47, 79, 62, 0.22);
}

.btn--outline {
    background: transparent;
    color: var(--clr-black);
    border: 1px solid var(--clr-green);
}

.btn--outline:hover {
    background: var(--clr-green);
    color: var(--clr-white);
}

.btn--white {
    background: var(--clr-white);
    color: var(--clr-black);
    border: 1px solid var(--clr-border);
}

.btn--white:hover {
    background: var(--clr-beige);
    transform: translateY(-1px);
}

.btn--white-outline {
    border: 1px solid var(--clr-border);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--clr-beige);
    transition: var(--transition);
    border-bottom: 1px solid var(--clr-border-soft);
}

.site-header.scrolled {
    background: rgba(243, 241, 236, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(47, 79, 62, 0.12);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-px);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--clr-black);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--clr-black);
    background: rgba(47, 79, 62, 0.12);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.dropdown__toggle:hover {
    color: var(--clr-black);
    background: rgba(47, 79, 62, 0.12);
}

.dropdown__toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: var(--transition);
}

.dropdown:hover .dropdown__toggle::after {
    transform: rotate(180deg);
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 34px rgba(47, 79, 62, 0.15);
    border: 1px solid var(--clr-border-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    padding: 8px 0;
    z-index: 100;
}

.dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--clr-gray);
    transition: var(--transition);
}

.dropdown__menu a:hover {
    background: rgba(143, 169, 155, 0.28);
    color: var(--clr-black);
    padding-left: 24px;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-black);
}

.header__phone svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-black);
}

.header__cta {
    margin-left: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-black);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Nav ── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-beige);
    z-index: 999;
    overflow-y: auto;
    padding: 24px;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav__link {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--clr-gray);
    border-bottom: 1px solid var(--clr-border-soft);
}

.mobile-nav__link:hover {
    color: var(--clr-black);
}

.mobile-nav__group-title {
    display: block;
    padding: 14px 0 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav__sub-link {
    display: block;
    padding: 10px 0 10px 16px;
    font-size: 0.95rem;
    color: var(--clr-gray);
    border-bottom: 1px solid var(--clr-border-soft);
}

.mobile-nav__sub-link:hover {
    color: var(--clr-black);
}

.mobile-nav__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px;
    background: var(--clr-green);
    color: var(--clr-white);
    border-radius: var(--radius-md);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 1.1rem;
    justify-content: center;
}

/* ── Hero ── */
.hero {
    padding: 140px 0 72px;
    background: linear-gradient(180deg, var(--clr-light-bg) 0%, var(--clr-beige) 55%, rgba(143, 169, 155, 0.35) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 28px;
}

.hero__content {
    max-width: 680px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(47, 79, 62, 0.09);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(47, 79, 62, 0.22);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-black);
    margin-bottom: 20px;
}

.hero__badge::before {
    content: '*';
    font-size: 0.7rem;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__phone-label {
    font-size: 0.85rem;
    color: var(--clr-gray);
}

.hero__phone-number {
    font-family: var(--ff-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-black);
    display: block;
}

.hero__aside {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.hero__aside h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.hero__aside p {
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.hero__quick-links {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.hero__quick-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-pill);
    background: var(--clr-green);
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.hero__quick-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.hero__quick-link--ghost {
    background: transparent;
    color: var(--clr-black);
    border: 1px solid var(--clr-border);
}

.hero__quick-link--ghost:hover {
    background: rgba(143, 169, 155, 0.28);
}

.hero__aside-list {
    display: grid;
    gap: 10px;
}

.hero__aside-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: var(--clr-gray);
}

.hero__aside-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hero__stat {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--clr-border-soft);
    border-radius: var(--radius-md);
    padding: 16px;
    min-height: 100px;
}

.hero__stat strong {
    display: block;
    font-family: var(--ff-heading);
    color: var(--clr-black);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.hero__stat span {
    font-size: 0.85rem;
    color: var(--clr-gray);
    line-height: 1.4;
}

/* Hero page-level (inner pages) */
.hero--inner {
    padding: 120px 0 60px;
    text-align: center;
}

.hero--inner .hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero--inner p {
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--clr-gray);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--clr-green);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.5;
}

/* ── Cards Grid ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px var(--gap);
    align-items: stretch;
}

.cards-grid>.card,
.cards-grid>a.card {
    height: 100%;
}

.card {
    background: var(--clr-olive);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    display: none;
}

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

.card--bordered {
    background: transparent;
    border: 1px solid var(--clr-card-border);
}

.card--with-photo {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 100%;
}

.card__media {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-bottom: 1px solid var(--clr-card-border);
    background: rgba(90, 90, 90, 0.2);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(90, 90, 90, 0.04) 0%, rgba(90, 90, 90, 0.22) 100%);
    pointer-events: none;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.02) brightness(0.9) opacity(0.88);
    transition: transform 0.45s ease;
}

.card__body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 20px;
    height: 100%;
}

.card--with-photo h3 {
    min-height: 0;
    margin-bottom: 8px;
}

.card--with-photo .card__icon {
    display: none;
}

.card--with-photo p {
    margin-bottom: 10px;
}

.card--with-photo .card__link,
.card--with-photo .btn {
    margin-top: 4px;
    align-self: flex-start;
}

.card--with-photo:hover .card__media img {
    transform: scale(1.05);
}

#priority-directions .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin: 0 auto;
}

.card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    color: var(--clr-green);
    filter: grayscale(1) saturate(0);
    font-variant-emoji: text;
}

.card__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.feature__icon svg,
.service-item__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--clr-black);
    position: relative;
    z-index: 1;
}

.card p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.86);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-green);
    position: relative;
    z-index: 1;
}

.card__link::after {
    content: '->';
    transition: var(--transition);
}

.card:hover .card__link::after {
    transform: translateX(4px);
}

/* ── Services List ── */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--clr-green);
    box-shadow: 0 4px 16px rgba(47, 79, 62, 0.14);
}

.service-item__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-beige);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    color: var(--clr-green);
    font-size: 1.2rem;
}

.service-item__text {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--clr-gray);
}

/* ── Countries Grid ── */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.country-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    font-weight: 500;
    color: var(--clr-gray);
}

.country-link:hover {
    border-color: var(--clr-green);
    color: var(--clr-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 79, 62, 0.14);
}

.country-link__flag {
    font-size: 1.5rem;
    line-height: 1;
    border: 1px solid var(--clr-border-soft);
    border-radius: 2px;
}

/* ── Steps / Process ── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--gap);
    counter-reset: step;
}

.step {
    counter-increment: step;
    padding: 32px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--clr-green);
    color: var(--clr-white);
    border-radius: 50%;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.step h4 {
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem;
}

/* ── Trust / Features ── */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--gap);
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 22px;
}

.feature__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 79, 62, 0.12);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--clr-green);
    filter: grayscale(1) saturate(0);
    font-variant-emoji: text;
}

.section--dark .feature__icon {
    background: rgba(255, 255, 255, 0.24);
    color: var(--clr-white);
}

.feature__text h4 {
    margin-bottom: 4px;
}

.feature__text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ── Inline Contact ── */
.section--contact {
    background: var(--clr-light-bg);
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    background: var(--clr-beige);
    box-shadow: var(--shadow-sm);
}

.contact-card__list {
    display: grid;
    gap: 10px;
    margin: 8px 0 24px;
}

.contact-card__list li {
    position: relative;
    padding-left: 22px;
    color: var(--clr-gray);
}

.contact-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
}

.contact-card__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-chip {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--clr-border);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-black);
}

.contact-chip:hover {
    background: rgba(143, 169, 155, 0.3);
}

.contact-card__form-wrap {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--clr-border-soft);
}

.contact-card__form-wrap h3 {
    margin-bottom: 8px;
}

.contact-card__form-wrap p {
    margin-bottom: 18px;
    font-size: 0.92rem;
}

.contact-inline-form .btn {
    width: 100%;
}

/* ── CTA Block ── */
.cta-block {
    text-align: center;
    padding: 60px 40px;
    background: var(--clr-green);
    color: var(--clr-white);
    border-radius: var(--radius-lg);
    margin: 0 auto;
    max-width: 900px;
}

.cta-block h2 {
    color: var(--clr-white);
    margin-bottom: 12px;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 24px;
}

.cta-block .btn--white {
    margin: 0 8px;
}

/* ── FAQ ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    font-family: var(--ff-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--clr-black);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--clr-green);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer__inner {
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ── Content Page ── */
.content-section {
    padding: var(--section-py) 0;
}

.content-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.content-section__grid--reverse {
    direction: rtl;
}

.content-section__grid--reverse>* {
    direction: ltr;
}

.content-section__text h2 {
    margin-bottom: 16px;
}

.content-section__text ul {
    list-style: none;
    padding: 0;
}

.content-section__text li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--clr-gray);
}

.content-section__text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
}

.content-section__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-beige);
    min-height: 320px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-card-border);
    box-shadow: var(--shadow-sm);
}

.content-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.02) brightness(0.92) opacity(0.9);
}

/* ── Footer ── */
.site-footer {
    background: var(--clr-beige);
    color: var(--clr-black);
    padding: 60px 0 0;
    border-top: 1px solid var(--clr-border-soft);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer__brand {
    font-family: var(--ff-heading);
}

.footer__brand .header__logo {
    color: var(--clr-black);
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.footer__col h4 {
    color: var(--clr-black);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer__col a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--clr-black);
    padding-left: 4px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--clr-black);
    font-size: 0.9rem;
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-black);
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid var(--clr-border-soft);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.footer__bottom p {
    color: var(--clr-text-muted);
    margin: 0;
    margin-bottom: 10px;
}

.footer__legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__legal-links a {
    color: var(--clr-text-muted);
    text-decoration: underline;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer__legal-links a:hover {
    color: var(--clr-black);
}

.footer__recaptcha-note {
    margin: 12px auto 0;
    max-width: 720px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--clr-text-muted);
}

.footer__recaptcha-note a {
    color: inherit;
    text-decoration: underline;
}

.footer__recaptcha-note a:hover {
    color: var(--clr-black);
}

/* ── Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--clr-gray);
    transition: var(--transition);
}

.modal__close:hover {
    background: rgba(143, 169, 155, 0.34);
    color: var(--clr-black);
}

.modal h3 {
    margin-bottom: 8px;
}

.modal p {
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-family: var(--ff-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-green);
    box-shadow: 0 0 0 3px rgba(47, 79, 62, 0.2);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* ── Responsive ── */
@media (max-width: 1024px) {

    .header__nav,
    .header__phone,
    .header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-section__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .content-section__image {
        max-width: 640px;
        margin: 0 auto;
    }

    .content-section__grid--reverse {
        direction: ltr;
    }

    .hero__layout {
        grid-template-columns: 1fr;
    }

    .hero__aside {
        max-width: 640px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-py: 56px;
        --section-px: 16px;
        --gap: 16px;
    }

    .hero {
        padding: 110px 0 56px;
    }

    .hero__layout {
        gap: 20px;
        margin-bottom: 20px;
    }

    .hero__aside {
        padding: 22px;
    }

    .hero--inner {
        padding: 100px 0 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card__media {
        height: 185px;
    }

    #priority-directions .cards-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .countries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-block {
        padding: 40px 24px;
    }

    .contact-card {
        padding: 24px;
        gap: 22px;
    }
}

@media (max-width: 480px) {
    .card__media {
        height: 170px;
    }

    .content-section__image {
        min-height: 230px;
    }

    .countries-grid {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .services-list {
        grid-template-columns: 1fr;
    }
}

/* ── Utility ── */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-48 {
    margin-top: 48px;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* ── Logo Image ── */
.header__logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* Hide reCAPTCHA v3 badge without disabling reCAPTCHA */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
