/* Contact Page Specific Styles */

/* Contact Hero */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.company-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.company-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
}

.company-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.company-badge strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.company-badge span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-submit i {
    transition: var(--transition-fast);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

/* Contact Information */
.contact-info-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-medium);
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

.contact-details a {
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Schedule Section */
.schedule-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.schedule-section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.schedule-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.schedule-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Availability Card */
.availability-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.availability-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

.status-text {
    font-weight: 600;
    color: var(--text-primary);
}

.availability-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-dark-secondary);
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .section-title {
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.faq-item.active::before {
    transform: scaleX(1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    user-select: none;
    position: relative;
    z-index: 2;
}

.faq-question h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
    flex: 1;
    padding-right: 1rem;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-icon i {
    color: white;
    font-size: 0.875rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    background: var(--secondary-color);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    background: rgba(99, 102, 241, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
}

.faq-content {
    padding: 0 2rem 2rem;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.faq-item.active .faq-content {
    transform: translateY(0);
}

.faq-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-content li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-content strong {
    color: var(--text-primary);
}

/* Process Timeline */
.process-timeline {
    margin: 1.5rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease forwards;
}

.faq-item.active .timeline-item:nth-child(1) { animation-delay: 0.2s; }
.faq-item.active .timeline-item:nth-child(2) { animation-delay: 0.3s; }
.faq-item.active .timeline-item:nth-child(3) { animation-delay: 0.4s; }
.faq-item.active .timeline-item:nth-child(4) { animation-delay: 0.5s; }

.timeline-marker {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-right: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 24px;
    background: var(--border-color);
    opacity: 0.5;
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-content {
    flex: 1;
}

.timeline-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.timeline-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.industry-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInFromBottom 0.6s ease forwards;
}

.faq-item.active .industry-card:nth-child(1) { animation-delay: 0.2s; }
.faq-item.active .industry-card:nth-child(2) { animation-delay: 0.3s; }
.faq-item.active .industry-card:nth-child(3) { animation-delay: 0.4s; }
.faq-item.active .industry-card:nth-child(4) { animation-delay: 0.5s; }
.faq-item.active .industry-card:nth-child(5) { animation-delay: 0.6s; }
.faq-item.active .industry-card:nth-child(6) { animation-delay: 0.7s; }

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.industry-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.industry-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.industry-card span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Animations */
@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Pulse animation for active states */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.faq-item.active .faq-icon {
    animation: pulse 2s infinite;
}

/* Sales-Focused Components */

/* Results Showcase */
.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.result-stat {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    padding: 1.5rem 1rem;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Investment Tiers */
.investment-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tier-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.tier-enterprise {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.tier-enterprise::before {
    background: linear-gradient(90deg, #ffd700, var(--secondary-color));
}

.tier-header h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tier-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier-card li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-card li:last-child {
    border-bottom: none;
}

/* Urgency Elements */
.urgency-note {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: pulse 2s infinite;
}

.urgency-note i {
    font-size: 1.25rem;
}

/* Competitive Advantages */
.competitive-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.advantage-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.advantage-icon i {
    color: white;
    font-size: 1.5rem;
}

.advantage-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Client Testimonial */
.client-testimonial {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    font-style: italic;
}

.client-testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.client-testimonial cite {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Results Timeline */
.results-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-result {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.result-timeframe {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.875rem;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.result-milestone strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.result-milestone p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guarantee-box i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Ideal Client Profiles */
.ideal-client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.client-profile {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.client-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.profile-header h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
}

.client-profile ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.client-profile li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.client-profile li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.success-rate {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Industry Results */
.industry-expertise h4 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.1rem;
}

.industry-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.industry-metric {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.industry-metric strong {
    color: var(--primary-color);
}

/* Next Steps Section */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.primary-step {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.step-value {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.step-timeline {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* Urgency CTA */
.urgency-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.urgency-cta .cta-content h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.urgency-cta .cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.proof-item i {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-secondary));
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.cta-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cta-stat span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-urgency {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffa500;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.cta-urgency i {
    font-size: 1.125rem;
}

/* Section Divider */
.section-divider {
    margin: 60px 0 0;
    height: 150px;
    overflow: hidden;
    opacity: 0.1;
}

.divider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loading State */
.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit.loading span {
    visibility: hidden;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-accordion {
        gap: 0.75rem;
    }
    
    .company-badges {
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-marker {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .timeline-marker::after {
        display: none;
    }
    
    .industry-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .results-showcase {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .investment-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tier-enterprise {
        transform: none;
    }
    
    .competitive-advantages {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .ideal-client-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-results {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .social-proof {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    /* Improve form inputs for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Better touch targets for mobile */
    .btn-submit {
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
        min-height: 48px; /* Minimum touch target size */
    }
    
    /* Improve textarea on mobile */
    .form-group textarea {
        min-height: 140px;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
    }
    
    .company-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .company-badge {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .process-timeline {
        margin: 1rem 0;
    }
    
    .timeline-item {
        margin-bottom: 1rem;
    }
    
    .timeline-marker {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .industry-card {
        padding: 1rem 0.75rem;
    }
    
    .industry-card i {
        font-size: 1.25rem;
    }
    
    .results-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .competitive-advantages {
        grid-template-columns: 1fr;
    }
    
    .timeline-result {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-timeframe {
        min-width: auto;
        align-self: flex-start;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .urgency-cta {
        padding: 2rem 1rem;
    }
    
    .urgency-note {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .industry-results {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-stat strong {
        font-size: 1.5rem;
    }
    
    .cta-urgency {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .page-subtitle {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .contact-info-wrapper {
        padding: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .schedule-section {
        text-align: center;
        padding: 1.5rem;
    }
    
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .company-badge {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-content {
        padding: 0 1.25rem 1.25rem;
    }
}