/* ===================================================================
   Voxisim — main stylesheet
   Extracted from examples/index.html
   =================================================================== */

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
}

/* ── Header ──────────────────────────────────────────────────────── */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #333;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span { color: #0066cc; }

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover { color: #0066cc; }

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

nav a:hover::after { width: 100%; }

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

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.lang-trigger:hover,
.lang-trigger[aria-expanded="true"] {
    border-color: #0066cc;
    background: #f0f6ff;
    color: #0066cc;
}

.lang-flag { font-size: 18px; line-height: 1; }
.lang-code { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.lang-chevron { font-size: 10px; transition: transform 0.2s; }
.lang-trigger[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    list-style: none;
    padding: 6px 0;
    z-index: 200;
    /* Small top margin via padding so dropdown feels detached but hover area is continuous */
    margin-top: 6px;
}

/* Opened by JS (click) or keyboard */
.lang-selector--open .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s;
}

.lang-option::after { display: none; }

.lang-option:hover {
    background: #f0f6ff;
    color: #0066cc;
}

.lang-option--active {
    background: #e8f0fe;
    color: #0066cc;
    font-weight: 600;
}

.lang-option--active:hover { background: #d8e8fd; }

.lang-option-flag { font-size: 18px; line-height: 1; }
.lang-option-name { flex: 1; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.breadcrumbs { margin-bottom: 30px; }

.breadcrumbs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover { color: #0052a3; }

.breadcrumb-separator {
    color: #999;
    margin: 0 4px;
    font-size: 14px;
}

.breadcrumb-current {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 400;
}

/* ── Verification block ──────────────────────────────────────────── */
.verification-block {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heads-up-warning {
    background-color: #fff8e6;
    border-left: 4px solid #ffa500;
    padding: 16px;
    border-radius: 6px;
    margin: 0;
}

.heads-up-warning p {
    margin: 0;
    font-size: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
}

.heads-up-warning strong {
    color: #ff6b35;
    font-weight: 700;
}

.benefits-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.benefits-list li {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid #f5f5f5;
}

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

.benefits-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

/* ── Messages section ────────────────────────────────────────────── */
.messages-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.selected-number-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.selected-number-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selected-number-info span:first-child {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.selected-number-info span:last-child {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.update-button {
    padding: 12px 24px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    min-width: 96px;
}

.update-button:hover { background-color: #0052a3; }

.update-button.is-updating {
    background-color: #004f9e;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.16);
    cursor: progress;
    opacity: 0.9;
    transform: translateY(1px);
}

.update-button.is-updating::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-top-color: #ffffff;
    border-radius: 50%;
    vertical-align: -2px;
    animation: update-button-spin 0.7s linear infinite;
}

@keyframes update-button-spin {
    to { transform: rotate(360deg); }
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.messages-list.is-updating {
    opacity: 0.55;
    filter: grayscale(0.45);
}

.messages-list-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.message-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.message-item:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.message-sender {
    font-size: 14px;
    color: #0066cc;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    display: block;
    margin-bottom: 8px;
}

.message-text {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    word-break: break-all;
}

.message-time {
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
}

.messages-list::-webkit-scrollbar { width: 6px; }
.messages-list::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.messages-list::-webkit-scrollbar-thumb { background: #888; border-radius: 10px; }
.messages-list::-webkit-scrollbar-thumb:hover { background: #555; }

/* ── Disclaimer / App download ───────────────────────────────────── */
.disclaimer-notice {
    background-color: #fff8e6;
    border-left: 4px solid #ffa500;
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
}

.disclaimer-notice p {
    margin: 0;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

.disclaimer-notice strong {
    color: #ff8c00;
    font-weight: 600;
}

.app-download-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #ffe0b2;
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.app-button {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.app-button img {
    display: block;
    height: 40px;
    width: auto;
}

.app-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* ── Phone numbers grid ──────────────────────────────────────────── */
.phone-numbers-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.phone-numbers-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.phone-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.phone-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.phone-card:hover {
    border-color: #0066cc;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
    transform: translateY(-4px);
}

.phone-card-flag {
    font-size: 32px;
    line-height: 1;
}

.phone-number {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.copy-button {
    padding: 12px 24px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.copy-button:hover {
    background-color: #0052a3;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.copy-button:active { transform: scale(0.98); }

.phone-numbers-load-more {
    display: block;
    margin: 32px auto 0;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.phone-numbers-load-more:hover {
    background-color: #0066cc;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.phone-numbers-load-more[hidden] { display: none; }

/* ── Available countries ─────────────────────────────────────────── */
.available-countries-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.available-countries-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.countries-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 0;
}

.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.country-card[hidden] { display: none; }

.country-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.country-card-current,
.country-card-current:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    box-shadow: none;
    color: #8a8f98;
    cursor: default;
    transform: none;
}

.country-card-current .country-flag {
    filter: grayscale(1);
    opacity: 0.55;
}

.country-card-current .country-name {
    color: #8a8f98;
}

.country-flag {
    font-size: 32px;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.countries-load-more {
    display: block;
    margin: 32px auto 0;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.countries-load-more:hover {
    background-color: #0066cc;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.countries-load-more[hidden] { display: none; }

/* ── Easy steps ──────────────────────────────────────────────────── */
.easy-steps-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.easy-steps-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #0052a3 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card:hover {
    border-color: #0066cc;
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
    transform: translateY(-8px);
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* ── Content block ───────────────────────────────────────────────── */
.content-block {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
}

.content-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.content-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.content-block p:last-child { margin-bottom: 0; }

/* ── Benefits block ──────────────────────────────────────────────── */
.benefits-block {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.benefits-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefits-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* ── Services categories ─────────────────────────────────────────── */
.services-categories-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.services-categories-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 80px;
    text-align: center;
    line-height: 1.3;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
}

.category-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
    min-height: 80px;
    align-items: center;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.category-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.services-text {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.service-link {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-link:hover {
    color: #0066cc;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #0066cc;
    text-underline-offset: 4px;
}

/* ── Reviews ─────────────────────────────────────────────────────── */
.reviews-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.reviews-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.reviews-aggregate-rating {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.aggregate-rating-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.aggregate-rating-stars {
    font-size: 24px;
    color: #FFD700;
    letter-spacing: 4px;
}

.aggregate-rating-text {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.review-card:hover {
    border-color: #0066cc;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.review-author-title {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.review-rating {
    display: flex;
    gap: 4px;
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 8px;
}

.review-body {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
}

.review-date {
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
    margin-top: 8px;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.3;
}

.faq-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover { background-color: #f9f9f9; }

.faq-heading {
    margin: 0;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.faq-toggle {
    flex-shrink: 0;
    font-size: 24px;
    color: #999;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #0066cc;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-content {
    padding: 0 24px 24px 24px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
}

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0066cc;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 10px; }

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover { color: #0066cc; }

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    color: #999999;
    font-size: 12px;
}

/* ── Text pages (privacy / terms) ────────────────────────────────── */
.text-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px 80px;
}

.text-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.text-page .intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 48px;
    line-height: 1.7;
}

.text-page h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 12px;
}

.text-page p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.text-page ul {
    margin: 0 0 16px 24px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.text-page a { color: #0066cc; }
.text-page a:hover { color: #0052a3; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 20px;
    }

    header nav {
        flex-direction: column;
        gap: 16px;
    }

    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    nav a { font-size: 14px; }
    .logo { font-size: 20px; }

    .hero-section { margin: 50px auto; }
    .hero-section h1 { font-size: 32px; margin-bottom: 20px; }
    .hero-section p { font-size: 15px; }

    .verification-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 50px auto;
    }

    .benefits-section { padding: 20px; }

    .selected-number-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .disclaimer-notice { font-size: 12px; padding: 12px; }
    .app-buttons { gap: 10px; flex-direction: column; }
    .app-button { width: 100%; text-align: center; }

    .breadcrumbs-list { font-size: 12px; gap: 4px; }
    .breadcrumb-link, .breadcrumb-current { font-size: 12px; }
    .breadcrumb-separator { font-size: 12px; margin: 0 2px; }

    .phone-numbers-section { margin: 60px auto; }
    .phone-numbers-section h2 { font-size: 28px; margin-bottom: 30px; }
    .phone-numbers-grid { grid-template-columns: 1fr; gap: 16px; }

    .available-countries-section h2 { font-size: 24px; }
    .countries-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 16px; }
    .country-card { padding: 16px; }
    .country-flag { font-size: 28px; }
    .country-name { font-size: 13px; }

    .easy-steps-section { margin: 60px auto; }
    .easy-steps-section h2 { font-size: 28px; margin-bottom: 40px; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .step-card { padding: 30px 20px; }
    .step-title { font-size: 18px; }

    .content-block { margin: 60px auto; }
    .content-block h2 { font-size: 26px; margin-bottom: 20px; }
    .content-block p { font-size: 15px; }

    .benefits-block { margin: 60px auto; }
    .benefits-block h2 { font-size: 28px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
    .benefit-title { font-size: 16px; }
    .benefit-description { font-size: 14px; }

    .services-categories-section { margin: 60px auto; }
    .services-categories-section h2 { font-size: 28px; margin-bottom: 50px; }
    .categories-grid { grid-template-columns: 1fr; gap: 40px; }
    .category-title { font-size: 18px; }
    .category-description { font-size: 14px; }

    .reviews-section { margin: 60px auto; }
    .reviews-section h2 { font-size: 28px; margin-bottom: 20px; }
    .reviews-aggregate-rating { margin-bottom: 40px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
    .review-body { font-size: 14px; }

    .faq-section { margin: 60px auto; }
    .faq-section h2 { font-size: 28px; margin-bottom: 40px; }
    .faq-question-text { font-size: 16px; }
    .faq-answer-content { font-size: 14px; padding: 0 16px 16px 16px; }
    .faq-question { padding: 16px; }

    .footer-content { grid-template-columns: 1fr; gap: 20px; }

    .text-page { margin: 50px auto; }
    .text-page h1 { font-size: 30px; }
}

@media (max-width: 1024px) {
    .categories-grid { gap: 50px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
}
