/* ════════════════════════════════════════════════════════════════
   CONTACT US PAGE — contact.css
   Relax Therapy | High-Trust Medical Sanctuary
   Palette: Primary (#455f3a), Terracotta (#ba805c), Secondary (#907155),
            Cream Blush (#ffe4d7, #fff5ef), Body Bg (#faf7f5)
════════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.ct-breadcrumb-wrap {
    background-color: #f6f2ee;
    border-bottom: 1px solid rgba(144, 113, 85, 0.15);
    padding: 14px 0;
    font-size: 0.88rem;
}
.ct-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--color-text-muted);
}
.ct-breadcrumb a {
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.ct-breadcrumb a:hover { color: var(--color-primary); }
.ct-breadcrumb .sep { color: rgba(144, 113, 85, 0.35); font-size: 0.72rem; }
html[dir="rtl"] .ct-breadcrumb .sep i { transform: scaleX(-1); }
.ct-breadcrumb .current { color: var(--color-primary); font-weight: 700; }

/* ── Hero ── */
.ct-hero-section {
    position: relative;
    background: linear-gradient(135deg, #112012 0%, #1e331b 60%, #142513 100%);
    color: #ffffff;
    padding: 72px 0 84px;
    overflow: hidden;
    text-align: center;
}
.ct-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.ct-hero-glow-l {
    position: absolute;
    width: 520px; height: 520px;
    background: rgba(69, 95, 58, 0.35);
    border-radius: 50%;
    filter: blur(120px);
    top: -140px; left: -100px;
    pointer-events: none;
}
.ct-hero-glow-r {
    position: absolute;
    width: 440px; height: 440px;
    background: rgba(186, 128, 92, 0.18);
    border-radius: 50%;
    filter: blur(110px);
    bottom: -100px; right: 0;
    pointer-events: none;
}
.ct-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.ct-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    color: #ffe4d7;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.ct-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    line-height: 1.18;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}
.ct-hero-title .brand-accent {
    color: #ffd8c7;
}
.ct-hero-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 0;
}

/* ── Quick Contact Channel Cards Grid ── */
.ct-channels-section {
    padding: 0;
    margin-top: 24px;
    position: relative;
    z-index: 10;
}
.ct-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ct-channel-card {
    background: #ffffff;
    border: 1px solid rgba(144, 113, 85, 0.16);
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 10px 30px rgba(42, 32, 25, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}
.ct-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(42, 32, 25, 0.12);
    border-color: rgba(69, 95, 58, 0.35);
}
.ct-channel-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(69, 95, 58, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.ct-channel-card.wa .ct-channel-icon-wrap {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}
.ct-channel-card.loc .ct-channel-icon-wrap {
    background: rgba(186, 128, 92, 0.12);
    color: var(--color-accent-terracotta);
}
.ct-channel-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-title);
    margin-bottom: 4px;
}
.ct-channel-sub {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}
.ct-channel-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: auto;
    word-break: break-word;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ct-channel-val:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}
.ct-channel-static {
    text-decoration: none;
    cursor: default;
}
.ct-channel-static:hover {
    text-decoration: none;
}
.ct-channel-val .fa-arrow-up-right-from-square { font-size: 0.75rem; }

/* ── RTL Text Styles ── */
html[dir="rtl"] .ct-hero-pill,
html[dir="rtl"] .ct-hero-title,
html[dir="rtl"] .ct-hero-lead {
    direction: rtl;
    text-align: center;
    unicode-bidi: plaintext;
}
html[dir="rtl"] .ct-hero-pill,
html[dir="rtl"] .ct-form-pill {
    letter-spacing: 0;
    text-transform: none;
}
html[dir="rtl"] .ct-form-pill {
    display: flex;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
    direction: rtl;
}
html[dir="rtl"] .ct-channel-card h4,
html[dir="rtl"] .ct-channel-sub,
html[dir="rtl"] .ct-channel-val {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
}
html[dir="rtl"] .ct-form-pill,
html[dir="rtl"] .ct-form-card h2,
html[dir="rtl"] .ct-form-lead,
html[dir="rtl"] .ct-form-group label,
html[dir="rtl"] .ct-form-group .ct-input,
html[dir="rtl"] .ct-form-group .ct-select,
html[dir="rtl"] .ct-form-group .ct-textarea,
html[dir="rtl"] .ct-privacy-note,
html[dir="rtl"] .ct-success-banner {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
}
html[dir="rtl"] .ct-location-header h3,
html[dir="rtl"] .ct-location-header p,
html[dir="rtl"] .ct-map-badge,
html[dir="rtl"] .ct-perks-list li,
html[dir="rtl"] .ct-perk-desc,
html[dir="rtl"] .btn-ct-directions {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
}

/* ── Main Split: Inquiry Form & Sanctuary Location & Map ── */
.ct-main-section {
    padding: 80px 0 96px;
    background-color: var(--color-bg-body);
}
.ct-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: flex-start;
}

/* Form Card */
.ct-form-card {
    background: #ffffff;
    border: 1px solid rgba(144, 113, 85, 0.16);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 8px 30px rgba(42, 32, 25, 0.05);
}
.ct-form-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--color-primary);
    background: rgba(69, 95, 58, 0.08);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 12px;
}
.ct-form-card h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.6vw, 2.3rem);
    font-weight: 700;
    color: var(--color-text-title);
    margin-bottom: 8px;
}
.ct-form-lead {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.ct-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.ct-form-group label {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--color-text-title);
}
.ct-form-group label span.req {
    color: #e74c3c;
}
.ct-input,
.ct-select,
.ct-textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid rgba(144, 113, 85, 0.22);
    background: #faf7f4;
    color: var(--color-text-title);
    font-size: 0.92rem;
    outline: none;
    transition: all 0.22s ease;
    font-family: inherit;
}
.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(69, 95, 58, 0.1);
}
.ct-textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-ct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    border-radius: 9999px;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    box-shadow: 0 8px 24px rgba(69, 95, 58, 0.3);
    transition: all 0.25s ease;
    cursor: pointer;
}
.btn-ct-submit:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(69, 95, 58, 0.4);
}
.ct-privacy-note {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}
.ct-privacy-note > i { font-size: 0.72rem; }
.ct-privacy-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Success notification message */
.ct-success-banner {
    display: none;
    background: #eef7ee;
    border: 1px solid #78e08f;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 24px;
    color: #1e7e34;
    font-size: 0.92rem;
    align-items: center;
    gap: 12px;
}
.ct-success-banner.visible { display: flex; }
.ct-success-banner > i { font-size: 1.2rem; }
.ct-success-banner.error {
    background: #fdf0ee;
    border-color: #e8a49a;
    color: #b34528;
}

/* Location & Interactive Google Map Card */
.ct-location-card {
    background: #ffffff;
    border: 1px solid rgba(144, 113, 85, 0.16);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 8px 30px rgba(42, 32, 25, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ct-location-header h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-text-title);
    margin-bottom: 6px;
}
.ct-location-header p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Map Embed Wrap */
.ct-map-container {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(144, 113, 85, 0.18);
    position: relative;
    box-shadow: 0 6px 20px rgba(42, 32, 25, 0.06);
}
.ct-map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}
.ct-map-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(17, 32, 18, 0.9);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
}
.ct-map-badge i { color: #ffe4d7; }

/* Location Perks List */
.ct-perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ct-perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--color-text-body);
    line-height: 1.5;
}
.ct-perk-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(69, 95, 58, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.ct-perk-desc {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.btn-ct-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 9999px;
    background: rgba(69, 95, 58, 0.08);
    border: 1.5px solid rgba(69, 95, 58, 0.25);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.22s ease;
    text-decoration: none;
}
.btn-ct-directions:hover {
    background: var(--color-primary);
    color: #ffffff;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ct-channels-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-split-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .ct-hero-section { padding: 56px 0 56px; }
    .ct-channels-grid { grid-template-columns: 1fr; }
    .ct-channels-section { margin-top: 16px; }
    .ct-form-card { padding: 28px 20px; }
    .ct-form-row { grid-template-columns: 1fr; gap: 0; }
    .ct-location-card { padding: 24px 20px; }
    .ct-map-container iframe { height: 260px; }
}
