:root {
    --cons-gold: #E8BA00;
    --cons-green: #345830;
    --cons-text: #111827;
    --cons-muted: #6B7280;
    --cons-border: rgba(107, 114, 128, 0.12);
}

/* ── Hero ─────────────────────────────────────── */
.cons-hero {
    position: relative;
    background: #FFFFFF;
    box-shadow: 1px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
}

.cons-hero::before {
    content: '';
    position: absolute;
    width: 390px;
    height: 280px;
    right: 0;
    top: -78px;
    background: rgba(232, 186, 0, 0.55);
    filter: blur(200px);
    pointer-events: none;
}

.cons-hero .container {
    position: relative;
    z-index: 1;
    max-width: 90% !important;
}

.cons-soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 186, 0, 0.1);
    border: 1px solid rgba(232, 186, 0, 0.4);
    border-radius: 100px;
    padding: 6px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #7a5700;
    letter-spacing: 0.5px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cons-gold);
    animation: pill-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pill-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.cons-hero-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--cons-text);
    margin: 0 0 20px;
}

.cons-hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--cons-muted);
    max-width: 860px;
    margin: 0 auto;
}

/* ── Body ─────────────────────────────────────── */
.cons-body {
    background: #f9f9f9;
    padding: 60px 0 100px;
}

.cons-body .container {
    max-width: 90% !important;
}

/* ── Description cards ────────────────────────── */
.cons-desc-section {
    max-width: 1049px;
    margin: 0 auto 70px;
}

html[dir="rtl"] .cons-desc-section { margin-right: auto; }
html[dir="ltr"] .cons-desc-section { margin-left: auto; }

.cons-para {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--cons-border);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.cons-para:hover {
    box-shadow: 1px 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.cons-para-accent {
    width: 4px;
    background: var(--cons-gold);
    flex-shrink: 0;
}


.cons-para-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--cons-muted);
    padding: 24px 28px;
    margin: 0;
    flex: 1;
}

html[dir="rtl"] .cons-para-text { text-align: right; }
html[dir="ltr"] .cons-para-text { text-align: left; }

/* ── Section heading ──────────────────────────── */
.cons-section-title {
    font-size: 30px;
    font-weight: 400;
    color: var(--cons-text);
    margin-bottom: 28px;
    max-width: 1049px;
}

html[dir="rtl"] .cons-section-title { text-align: right; margin-right: auto; }
html[dir="ltr"] .cons-section-title { text-align: left; margin-left: auto; }

/* ── Consultation type cards ──────────────────── */
.cons-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1049px;
    margin: 0 auto 60px;
}

html[dir="rtl"] .cons-types-grid { margin-right: auto; }
html[dir="ltr"] .cons-types-grid { margin-left: auto; }

.cons-type-card {
    background: #fff;
    border: 1px solid var(--cons-border);
    border-radius: 20px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.cons-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cons-gold);
    opacity: 0;
    transition: opacity 0.25s;
}

.cons-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 1px 12px 28px rgba(0, 0, 0, 0.13);
}

.cons-type-card:hover::before {
    opacity: 1;
}

.cons-type-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 186, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}

.cons-type-card:hover .cons-type-icon {
    background: rgba(232, 186, 0, 0.2);
}

.cons-type-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--cons-text);
    line-height: 1.4;
}

/* ── CTA section ──────────────────────────────── */
.cons-cta {
    background: linear-gradient(135deg, #fffbea 0%, #fff5cc 100%);
    border: 1px solid rgba(232, 186, 0, 0.3);
    border-radius: 24px;
    padding: 48px 56px;
    text-align: center;
    max-width: 1049px;
    margin: 0 auto;
}

html[dir="rtl"] .cons-cta { margin-right: auto; }
html[dir="ltr"] .cons-cta { margin-left: auto; }

.cons-cta-launch {
    font-size: 18px;
    font-weight: 300;
    color: var(--cons-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cons-cta-contact-label {
    font-size: 16px;
    color: var(--cons-muted);
    margin-bottom: 16px;
}

.cons-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--cons-gold);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 100px;
    margin-bottom: 32px;
    text-decoration: none;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(232, 186, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    direction: ltr;
}

.cons-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 186, 0, 0.55);
    color: #fff;
}

.cons-cta-closing {
    font-size: 20px;
    font-weight: 400;
    color: var(--cons-text);
    margin: 0;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1199px) {
    .cons-types-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .cons-hero         { padding: 100px 0 40px; }
    .cons-hero-title   { font-size: 36px; }
    .cons-hero-subtitle{ font-size: 22px; }
    .cons-para-text    { font-size: 16px; }
    .cons-section-title{ font-size: 24px; }
    .cons-cta          { padding: 36px 28px; }
}

@media (max-width: 767px) {
    .cons-hero         { padding: 80px 0 30px; }
    .cons-hero-title   { font-size: 28px; }
    .cons-hero-subtitle{ font-size: 18px; }
    .cons-cta-phone    { font-size: 18px; padding: 12px 28px; }
    .cons-cta-closing  { font-size: 17px; }
}

@media (max-width: 540px) {
    .cons-types-grid { grid-template-columns: 1fr 1fr; }
}
