/* =================================================================
   CONTACT PAGE STYLES
   ================================================================= */

.contact-page {
    background: var(--color-bg);
    color: var(--color-text);
    padding-top: 180px;
    min-height: 100vh;
}

/* Hero Section */
.c-hero {
    text-align: center;
    padding-bottom: 100px; /* Extra padding for console overlap */
    position: relative;
    overflow: hidden;
}

.c-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.abs-blur-circ-1 {
    width: 400px;
    height: 400px;
    position: absolute;
    background-color: var(--color-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(150px);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.c-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Status Pill */
.c-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.status-live {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
}

.pulse-dot-status {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: statusPulse 2s infinite;
}

.c-hero .title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.c-hero .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.status-sep {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.status-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes statusPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Interface Grid */
.c-interface {
    padding: 60px 0 120px;
}

.c-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Terminal Wrapper */
.c-terminal-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.c-terminal {
    display: grid;
    grid-template-columns: 350px 1fr;
    width: 100%;
    max-width: 1200px;
    background: rgba(10, 15, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    margin: 0 auto;
}

/* Sidebar (Left) */
.c-terminal__sidebar {
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 0; /* Let children handle gaps */
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}
.terminal-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}
.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-id {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-info__list {
    display: flex;
    flex-direction: column;
    gap: 35px; /* Proper spacing between blocks */
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    font-weight: 700;
}

.c-data-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--color-text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.c-data-row:hover {
    background: rgba(138, 66, 255, 0.1);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.c-data-row i { color: var(--color-primary-light); font-size: 1.1rem; }
.c-data-row .value { flex-grow: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.c-data-row .copy-icon { opacity: 0; transform: translateX(-10px); transition: all 0.3s ease; }
.c-data-row:hover .copy-icon { opacity: 1; transform: translateX(0); }

/* Map Visual */
.c-location-map {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.c-location-map:hover {
    border-color: var(--color-primary);
}

.map-visual {
    height: 100px;
    background: #0a0f2e;
    position: relative;
    overflow: hidden;
}

.radar-sweep {
    position: absolute;
    top: 50%; left: 50%;
    width: 200px; height: 200px;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent 0deg, rgba(46, 107, 255, 0.2) 360deg);
    border-radius: 50%;
    animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.location-dot {
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--color-accent);
}

.location-text {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.location-text strong { font-size: 0.95rem; color: var(--color-text); }
.location-text span { font-size: 0.8rem; color: var(--color-text-muted); }

.social-grid {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Console Panel */
.c-console {
    height: auto; /* Allow growth */
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible; /* Prevent clipping of shadows/dropdowns */
}

.c-console__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.console-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.console-title i {
    color: var(--color-primary-light);
    font-size: 1.2rem;
}

.c-console__status {
    font-size: 0.75rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.status-dot {
    width: 6px; height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent);
    transition: all 0.3s ease;
}

.c-console__body {
    padding: 40px;
    min-height: 500px;
}

.console-view {
    display: none;
    animation: fadeIn 0.4s ease;
}
.console-view.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NEW BOOKING SECTION
   ============================================ */
.c-booking-section {
    padding: 0 0 120px;
}

.c-booking-card {
    background: rgba(10, 15, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    min-height: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Left Info Panel */
.c-booking-info {
    padding: 50px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.expert-profile .avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
}
.expert-profile img { width: 100%; height: 100%; object-fit: cover; }
.expert-profile h4 { font-size: 1.1rem; color: var(--color-text); font-weight: 700; }
.expert-profile span { font-size: 0.85rem; color: var(--color-text-muted); }

.c-booking-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.session-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.session-meta i { color: var(--color-primary-light); margin-right: 5px; }

.session-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: auto;
}

/* Right Interface */
.c-booking-interface {
    padding: 40px;
    position: relative;
}

.cal-header, .view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
}
.cal-nav button, .back-icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease;
}
.cal-nav button:hover, .back-icon-btn:hover { background: var(--color-primary); border-color: var(--color-primary); }
.cal-nav { display: flex; gap: 10px; }

.cal-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    text-align: center; margin-bottom: 15px;
    font-size: 0.8rem; color: var(--color-text-muted); font-weight: 600;
}

.cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: var(--color-text);
    border: 1px solid transparent;
}
.cal-day:hover:not(.disabled) { background: rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.2); }
.cal-day.active { background: var(--color-primary); color: white; font-weight: 600; box-shadow: 0 4px 15px rgba(46, 107, 255, 0.4); border-color: transparent; }
.cal-day.disabled { opacity: 0.3; cursor: not-allowed; }
.cal-day.today { border: 1px solid var(--color-primary); color: var(--color-primary-light); }

/* Split View Layout */
.booking-flow-container { position: relative; height: 100%; overflow: hidden; }
.booking-stage { display: none; height: 100%; animation: fadeIn 0.4s ease; }
.booking-stage.active { display: block; }

.datetime-split {
    display: grid;
    grid-template-columns: 1fr 0fr; /* Slots collapsed initially */
    gap: 0;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.datetime-split.expanded {
    grid-template-columns: 1fr 200px;
    gap: 30px;
}

.slots-col {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 0;
    display: flex;
    flex-direction: column;
}
.datetime-split.expanded .slots-col { opacity: 1; padding-left: 30px; }

.slots-col h4 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    white-space: nowrap;
}

.slots-scroll {
    overflow-y: auto;
    max-height: 400px;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.slots-scroll::-webkit-scrollbar { width: 4px; }
.slots-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.time-btn {
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-primary-light);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
.time-btn:hover { background: var(--color-primary); color: white; border-color: var(--color-primary); }

/* Form Stage */
.form-header-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.form-header-row h3 { font-size: 1.5rem; margin: 0; }

.selected-slot-summary {
    background: rgba(138, 66, 255, 0.1);
    border: 1px solid rgba(138, 66, 255, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

#newBookingForm {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#newBookingForm .input-group label {
    color: var(--color-primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px !important;
    text-transform: uppercase;
}

#newBookingForm .input-group input,
#newBookingForm .input-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 1rem;
    color: var(--color-text);
    transition: all 0.3s ease;
    width: 100%;
}

#newBookingForm .input-group input:focus,
#newBookingForm .input-group textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(138, 66, 255, 0.1);
    outline: none;
}

.c-form {
    display: flex; flex-direction: column; gap: 20px;
}

.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}
.textarea-icon { top: 20px; transform: none; }

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px 16px 50px; /* Added padding for icon */
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(138, 66, 255, 0.1);
}

.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(154, 148, 194, 0.5)'%3E%3Cpath d='M12 16L6 10H18L12 16Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    cursor: pointer;
}

.input-group select option {
    background: #0a0f2e;
    color: var(--color-text);
}

.input-group input:focus + .input-icon, 
.input-group textarea:focus + .input-icon,
.input-group:focus-within .input-icon { color: var(--color-primary-light); }

.c-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.c-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 66, 255, 0.3);
}

@media (max-width: 1024px) {
    .c-terminal, .c-booking-card { grid-template-columns: 1fr; height: auto; }
    .c-terminal__sidebar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .c-console__body, .c-booking-info, .c-booking-interface { padding: 30px; }
    .c-booking-info { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    
    .datetime-split.expanded { grid-template-columns: 1fr; gap: 30px; }
    .slots-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; padding-left: 0 !important; }
    .slots-scroll { flex-direction: row; overflow-x: auto; padding-bottom: 10px; max-height: none; }
    .time-btn { min-width: 100px; }
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .c-hero .title { font-size: 3rem; }
}

/* ============================================
   PRE-FLIGHT PROTOCOLS (FAQ)
   ============================================ */
.c-protocols {
    padding: 0 0 120px;
}

.c-protocols__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.c-protocols__header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--color-primary-light);
    background: rgba(138, 66, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid rgba(138, 66, 255, 0.2);
    font-weight: 600;
}

.c-protocols__header .title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.c-protocols__header .subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.c-protocols__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.protocol-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.protocol-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(138, 66, 255, 0.3);
}

.protocol-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
}

.trigger-left { display: flex; gap: 15px; align-items: center; }
.protocol-id { font-family: var(--font-heading); color: var(--color-primary-light); opacity: 0.7; font-size: 1rem; font-weight: 700; }
.question { font-size: 1.1rem; font-weight: 600; }

.protocol-trigger i {
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
}

.protocol-item.active .protocol-trigger i { transform: rotate(45deg); color: var(--color-primary); }

.protocol-content {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.protocol-inner {
    padding: 0 24px 24px 24px;
    padding-left: 60px; /* Align with question text */
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .protocol-inner { padding-left: 24px; }
    .trigger-left { flex-direction: column; align-items: flex-start; gap: 5px; }
}

/* ============================================
   THE CODENOSYS COVENANT
   ============================================ */
.c-covenant {
    padding: 0 0 120px;
}

.c-covenant__wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.c-covenant__header {
    text-align: center;
    margin-bottom: 80px;
}

.c-covenant__header .tagline {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--color-primary-light);
    margin-bottom: 16px;
}

.c-covenant__header .title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.c-covenant__header .subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.c-covenant__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.covenant-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.covenant-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(138, 66, 255, 0.3);
}

.card-icon {
    width: 60px; height: 60px;
    background: rgba(138, 66, 255, 0.1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary-light);
    transition: all 0.4s ease;
}

.covenant-card:hover .card-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .c-covenant__grid { grid-template-columns: 1fr; gap: 20px; }
}