/* ============================================
   CONTACT PAGE - Premium UI
   Prefix: ctc-
   ============================================ */

/* Section Layout */
.ctc-section {
    padding: 100px 0;
    position: relative;
}

.ctc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.ctc-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.2);
    color: var(--gv-primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.ctc-section-title {
    font-family: var(--gv-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.ctc-section-title span {
    color: var(--gv-primary);
}

.ctc-section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 750px;
}

.ctc-center {
    text-align: center;
}

.ctc-center .ctc-section-subtitle {
    margin: 0 auto 40px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ctc-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ctc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(248, 209, 2, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ctc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 209, 2, 0.1);
    border: 1px solid rgba(248, 209, 2, 0.25);
    color: var(--gv-primary);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.ctc-hero h1 {
    font-family: var(--gv-font-heading);
    font-size: clamp(2.5rem, 5.5vw, 3.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ctc-hero h1 span {
    color: var(--gv-primary);
}

.ctc-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FORM + INFO LAYOUT
   ============================================ */
.ctc-main {
    background: var(--gv-bg-secondary);
}

.ctc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form */
.ctc-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
}

.ctc-form-wrap h3 {
    font-family: var(--gv-font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.ctc-form-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
}

.ctc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.ctc-field {
    margin-bottom: 16px;
}

.ctc-field label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    font-weight: 600;
}

.ctc-field input,
.ctc-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--gv-font-body);
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.ctc-field input:focus,
.ctc-field textarea:focus {
    border-color: rgba(248, 209, 2, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(248, 209, 2, 0.08);
}

.ctc-field input::placeholder,
.ctc-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ctc-field textarea {
    min-height: 120px;
    resize: vertical;
}

.ctc-field .ctc-error {
    font-size: 0.8rem;
    color: var(--gv-accent-red);
    margin-top: 4px;
}

.ctc-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gv-primary) 0%, var(--gv-primary-dark) 100%);
    color: #0a1430;
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: var(--gv-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(248, 209, 2, 0.25);
    width: 100%;
    justify-content: center;
}

.ctc-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(248, 209, 2, 0.35);
}

/* Success/Error Messages */
.ctc-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.92rem;
    font-weight: 600;
}

.ctc-alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--gv-accent-green);
}

.ctc-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--gv-accent-red);
}

/* Contact Info Cards */
.ctc-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ctc-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.ctc-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(248, 209, 2, 0.15);
}

.ctc-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ctc-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-primary);
    font-size: 0.9rem;
}

.ctc-info-card h4 {
    font-family: var(--gv-font-heading);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.ctc-info-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 8px;
    line-height: 1.5;
}

.ctc-info-card a {
    color: var(--gv-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ctc-info-card a:hover {
    color: var(--gv-primary-light);
}

/* Office Hours */
.ctc-hours {
    background: rgba(248, 209, 2, 0.04);
    border: 1px solid rgba(248, 209, 2, 0.1);
}

.ctc-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ctc-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.06);
}

.ctc-hours-list li:last-child {
    border-bottom: none;
}

.ctc-hours-list li .day {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Social Links */
.ctc-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.ctc-social a {
    width: 40px;
    height: 40px;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ctc-social a:hover {
    background: rgba(248, 209, 2, 0.15);
    transform: translateY(-2px);
}

/* ============================================
   GROWTH SYSTEMS
   ============================================ */
.ctc-systems {
    background: var(--gv-bg-primary);
}

.ctc-systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ctc-system-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    text-align: center;
}

.ctc-system-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(248, 209, 2, 0.15);
    transform: translateY(-2px);
}

.ctc-system-icon {
    width: 48px;
    height: 48px;
    background: rgba(248, 209, 2, 0.08);
    border: 1px solid rgba(248, 209, 2, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-primary);
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.ctc-system-card h4 {
    font-family: var(--gv-font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.ctc-system-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0 0 12px;
}

.ctc-system-link {
    color: var(--gv-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ctc-system-link:hover {
    color: var(--gv-primary-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.ctc-faq {
    background: var(--gv-bg-secondary);
}

.ctc-faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.ctc-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ctc-faq-item:hover {
    border-color: rgba(248, 209, 2, 0.15);
}

.ctc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease;
}

.ctc-faq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.ctc-faq-q h4 {
    font-family: var(--gv-font-heading);
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.ctc-faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(248, 209, 2, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gv-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ctc-faq-item.active .ctc-faq-toggle {
    transform: rotate(45deg);
    background: rgba(248, 209, 2, 0.15);
}

.ctc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.ctc-faq-item.active .ctc-faq-a {
    max-height: 300px;
}

.ctc-faq-a p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.ctc-cta {
    background: var(--gv-bg-primary);
}

.ctc-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ctc-cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ctc-cta-highlight {
    font-size: 1.15rem !important;
    color: var(--gv-primary) !important;
    font-style: italic;
    font-weight: 600;
}

.ctc-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.ctc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gv-primary) 0%, var(--gv-primary-dark) 100%);
    color: #0a1430;
    padding: 16px 36px;
    border-radius: 12px;
    font-family: var(--gv-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(248, 209, 2, 0.25);
}

.ctc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(248, 209, 2, 0.35);
    color: #0a1430;
    text-decoration: none;
}

.ctc-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gv-primary);
    padding: 16px 36px;
    border-radius: 12px;
    border: 2px solid rgba(248, 209, 2, 0.4);
    font-family: var(--gv-font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ctc-btn-secondary:hover {
    background: rgba(248, 209, 2, 0.08);
    border-color: var(--gv-primary);
    transform: translateY(-2px);
    color: var(--gv-primary);
    text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .ctc-section {
        padding: 72px 0;
    }

    .ctc-grid {
        grid-template-columns: 1fr;
    }

    .ctc-systems-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .ctc-section {
        padding: 56px 0;
    }

    .ctc-container {
        padding: 0 16px;
    }

    .ctc-hero {
        padding: 48px 0 36px;
    }

    .ctc-form-wrap {
        padding: 28px;
    }

    .ctc-form-row {
        grid-template-columns: 1fr;
    }

    .ctc-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .ctc-btn-primary,
    .ctc-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ctc-section {
        padding: 44px 0;
    }

    .ctc-container {
        padding: 0 14px;
    }

    .ctc-hero {
        padding: 36px 0 28px;
    }

    .ctc-form-wrap {
        padding: 22px;
    }

    .ctc-info-card {
        padding: 20px;
    }
}
