/* ═══════════════════════════════════════════════════════════════
   Track iT — Static & Content Pages Stylesheet
   About, Contact Form, Legal & Privacy Pages
   ═══════════════════════════════════════════════════════════════ */

/* ── Page Hero Banner ────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #1c1917, #09090b) !important;
    border-bottom: 1px solid var(--border) !important;
    color: #fff;
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    color: #fff;
    font-family: 'Cinzel', serif !important;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto;
}

/* ── Content Container (Legal/About) ─────────────────────────── */
.page-content-box {
    max-width: 860px;
    margin: -40px auto 60px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.page-content-box h2 {
    font-size: 1.6rem;
    margin: 32px 0 14px;
    color: var(--text);
}
.page-content-box h2:first-child { margin-top: 0; }

.page-content-box h3 {
    font-size: 1.25rem;
    margin: 24px 0 10px;
    color: var(--text);
}

.page-content-box p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 1rem;
}

.page-content-box ul, .page-content-box ol {
    margin: 12px 0 24px 24px;
    color: var(--text-secondary);
}

.page-content-box li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-content-box ul { list-style: disc; }
.page-content-box ol { list-style: decimal; }

/* ── Contact Layout ──────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin: 48px 0;
}

.contact-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}

/* ── Contact Info Cards (CIC) ─────────────────────────────── */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cic {
    position: relative;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 20px 20px 20px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

/* Gold left accent bar */
.cic-accent {
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: rgba(212, 175, 55, 0.35);
    transition: background 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.cic:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.cic:hover .cic-accent,
.cic--open .cic-accent {
    background: var(--luxury-gold);
    top: 0;
    bottom: 0;
    border-radius: 0;
}

/* Icon */
.cic-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.75);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.cic:hover .cic-icon,
.cic--open .cic-icon {
    background: rgba(212, 175, 55, 0.13);
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--luxury-gold);
}

/* Body */
.cic-body {
    flex: 1;
    min-width: 0;
}

.cic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 5px;
}

.cic-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.cic-toggle-arrow {
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    transition: transform 0.3s ease, color 0.25s ease;
    flex-shrink: 0;
}

.cic--open .cic-toggle-arrow,
.cic:hover .cic-toggle-arrow {
    color: var(--luxury-gold);
}

.cic-arrow--up {
    transform: rotate(180deg);
}

.cic-value {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 3px 0;
    font-weight: 500;
}

.cic-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

/* Expandable detail panel */
.cic-detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cic-detail.open {
    max-height: 600px;
    opacity: 1;
    margin-top: 14px;
    padding-top: 14px;
}

.cic-detail-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.cic-detail-text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 8px 0 10px 0;
}

/* Status row */
.cic-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.cic-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 7px #10b981;
    flex-shrink: 0;
}

/* Guarantee list */
.cic-guarantee-list {
    list-style: none;
    margin: 10px 0 6px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cic-guarantee-list li {
    font-size: 0.81rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.cic-guarantee-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 5px;
    border-left: 1.5px solid rgba(212, 175, 55, 0.75);
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.75);
    transform: rotate(-45deg);
}

/* Action tags */
.cic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.cic-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.cic-tag:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.06);
}

.cic-tag--action {
    border-color: rgba(212, 175, 55, 0.3);
    color: rgba(212, 175, 55, 0.85);
}

.cic-tag--action:hover {
    border-color: var(--luxury-gold);
    color: #fff;
    background: rgba(212, 175, 55, 0.12);
}

/* ── About Cards Grid ────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--luxury-gold) !important;
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
    background: rgba(212, 175, 55, 0.01) !important;
}

.about-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-card:hover .about-card-icon {
    transform: scale(1.18);
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .page-content-box { padding: 28px 20px; margin-top: -24px; }
}
