/* ===========================
   STRATEGIC CONSULTATION PAGE
   =========================== */

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Hero Section */
.consultation-section {
    background: #FFFFFF;
}

.consultation-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 4rem;
}

.consultation-hero-left {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 900px;
}

.consultation-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.consultation-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    animation: fadeInScale 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s backwards;
}

/* Free Consultation Badge */
.free-consult-badge {
    background: linear-gradient(135deg, #000000 0%, #2A2A2A 100%);
    color: var(--white) !important;
    padding: 1rem 2rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.free-consult-badge::before {
    content: '⚡ ';
    margin-right: 0.5rem;
}

.consultation-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 2.5rem;
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s backwards;
}

.consultation-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s backwards;
}

.cta-primary {
    padding: 1rem 2.5rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Pulse Animation on Primary CTA */
.cta-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.1em;
}

.cta-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 2px solid var(--black);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.consultation-hero-right {
    display: none;
}

/* Session Coverage */
.session-coverage {
    padding: 5rem 4rem;
    background: #D0D0D0;
}

.coverage-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    text-align: left;
    position: relative;
    display: inline-block;
}

.coverage-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #B87333;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.coverage-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.04);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.coverage-card:hover::before {
    width: 100%;
}

.coverage-card:nth-child(1) { animation-delay: 0.1s; }
.coverage-card:nth-child(2) { animation-delay: 0.2s; }
.coverage-card:nth-child(3) { animation-delay: 0.3s; }
.coverage-card:nth-child(4) { animation-delay: 0.4s; }

.coverage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-left-color: var(--black);
    border-left-width: 4px;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    line-height: 1;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.coverage-card:hover .card-number {
    color: rgba(0, 0, 0, 0.2);
    transform: scale(1.15) translateX(5px);
}

.coverage-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.coverage-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
}

/* Engagement Profile */
.engagement-profile {
    padding: 5rem 4rem;
    background: #FFFFFF;
}

.profile-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.profile-intro {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.profile-list {
    list-style: none;
    max-width: 800px;
}

.profile-list li {
    font-size: 1rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--slate);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--black);
}

.profile-list li:hover {
    padding-left: 2.5rem;
    color: var(--black);
}

/* Process Flow */
.process-flow {
    padding: 5rem 4rem;
    background: #D0D0D0;
}

.process-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 4rem;
    text-align: left;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(5) { animation-delay: 0.3s; }
.process-step:nth-child(7) { animation-delay: 0.4s; }

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--slate);
}

.process-connector {
    flex: 0.3;
    height: 2px;
    background: linear-gradient(90deg, var(--black) 0%, rgba(0,0,0,0.2) 100%);
}

/* Authority Band */
.authority-band {
    padding: 4rem;
    background: #1a1a1a;
    color: var(--white);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.authority-item h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.authority-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Consultation Pricing */
.consultation-pricing {
    padding: 5rem 4rem;
    background: #FFFFFF;
}

.pricing-heading {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    text-align: left;
}

.pricing-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.pricing-detail {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #DADADA;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.pricing-detail:nth-child(1) { animation-delay: 0.1s; }
.pricing-detail:nth-child(2) { animation-delay: 0.2s; }
.pricing-detail:nth-child(3) { animation-delay: 0.3s; }
.pricing-detail:nth-child(4) { animation-delay: 0.4s; }

.pricing-detail:hover {
    background: #C0C0C0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Highlight Free Consultation */
.pricing-highlight {
    background: linear-gradient(135deg, #000000 0%, #2A2A2A 100%) !important;
    border: 2px solid var(--black);
    position: relative;
    overflow: hidden;
}

.pricing-highlight::before {
    content: '✨ LIMITED OFFER';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--white);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    transform: rotate(0deg);
}

.pricing-highlight h4,
.pricing-highlight .detail-note {
    color: rgba(255, 255, 255, 0.8) !important;
}

.pricing-highlight:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.free-badge {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 0.05em;
}

.pricing-detail h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--slate);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-detail p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.detail-note {
    font-size: 0.85rem;
    color: var(--slate);
    display: block;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
}

.cta-primary-large {
    padding: 1.25rem 3rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
    .consultation-hero {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }

    .consultation-hero-right {
        height: 300px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .consultation-hero,
    .session-coverage,
    .engagement-profile,
    .process-flow,
    .authority-band,
    .consultation-pricing {
        padding: 3rem 1.5rem;
    }

    .consultation-title {
        font-size: 2.5rem;
    }

    .coverage-grid,
    .authority-grid,
    .pricing-details-grid {
        grid-template-columns: 1fr;
    }

    .consultation-ctas {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===========================
   CONSULTATION REQUEST FORM
   =========================== */

.consult-form-wrap {
    max-width: 900px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 2px solid #B87333;
}

.consult-form-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.consult-form-sub {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Access Gate */
.consult-gate {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--black);
    padding: 2rem 2.5rem;
    margin-bottom: 0;
}

.gate-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
}

.gate-row {
    display: flex;
    gap: 0;
    max-width: 420px;
}

.gate-input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1px solid #cccccc;
    border-right: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s ease;
}

.gate-input:focus {
    border-color: var(--black);
}

.gate-btn {
    padding: 0.85rem 1.5rem;
    background: var(--black);
    color: #ffffff;
    border: 1px solid var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.gate-btn:hover {
    background: #333333;
}

.gate-hint {
    font-size: 0.82rem;
    color: var(--slate);
    margin-top: 0.9rem;
    line-height: 1.5;
}

.gate-hint a {
    color: #B87333;
    text-decoration: none;
    font-weight: 600;
}

.gate-hint a:hover {
    text-decoration: underline;
}

.gate-error {
    font-size: 0.82rem;
    color: #cc3333;
    margin-top: 0.5rem;
    min-height: 1.2em;
    font-weight: 600;
}

/* Request Form */
.consult-request-form {
    display: none;
    animation: fadeIn 0.4s ease both;
}

.consult-request-form.visible {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group-full {
    grid-column: 1 / -1;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
}

.form-optional {
    font-weight: 400;
    color: var(--slate);
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid #cccccc;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-submit-row {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.5;
    max-width: 600px;
}

.form-success {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #111111;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
    display: none;
    border-left: 3px solid #B87333;
}

.form-success.visible {
    display: block;
    animation: fadeIn 0.4s ease both;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .gate-row {
        flex-direction: column;
        max-width: 100%;
    }
    .gate-input {
        border-right: 1px solid #cccccc;
        border-bottom: none;
    }
    .gate-btn {
        width: 100%;
    }
    .consult-form-wrap {
        padding-top: 2rem;
        margin-top: 2.5rem;
    }
}
