/* ===================================
   CONTACT PAGE - EXACT FIGMA DESIGN
   WordPress Theme Version
   
   Complete pixel-perfect styles matching Figma import
   Ready for Go High Level form integration
   =================================== */

/* ===================================
   BASE & UTILITIES
   =================================== */

.hidden-mobile {
    display: none;
}

/* ===================================
   CONTACT FORM SECTION - NEW LAYOUT
   =================================== */

.contact-form-section {
    background-color: #ffffff;
    padding: 120px 20px 80px;
    width: 100%;
}

.contact-form-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Info & Logos */
.contact-form-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #ee2966;
    margin: 0;
}

.contact-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.contact-form-trust-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.5;
    color: #1f2937;
    margin: 32px 0 24px 0;
}

/* Logos Grid */
.contact-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    align-items: center;
    margin-bottom: 32px;
}

.contact-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.contact-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
}

.contact-member-count {
    grid-column: span 2;
    justify-content: flex-start;
}

.contact-member-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #6b7280;
    text-align: left;
}

/* Google Reviews */
.contact-google-reviews {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.google-logo-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1f2937;
}

.google-stars {
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 20px;
    height: 20px;
}

.google-rating-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Right Column - Form */
.contact-form-right {
    background-color: #ffffff;
    padding: 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.contact-signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
}

.form-label-block {
    display: block;
    margin-bottom: 12px;
}

.required-asterisk {
    color: #ee2966;
}

.form-input {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #f3f4f6;
    color: #1f2937;
    outline: none;
    transition: all 0.2s;
}

.form-input:focus {
    background-color: #ffffff;
    border-color: #ee2966;
    box-shadow: 0 0 0 3px rgba(238, 41, 102, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1f2937;
}

.radio-input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #ee2966;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #ee2966;
}

.checkbox-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

/* Submit Button */
.form-submit-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    background-color: #ee2966;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
}

.form-submit-btn:hover {
    background-color: #d91f57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 41, 102, 0.3);
}

/* ===================================
   FAQ SECTION ON CONTACT PAGE
   =================================== */

.faq-section-contact {
    background-color: #f9fafb;
    padding: 80px 20px;
}

.faq-section-contact .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section-contact .faq-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1f2937;
    text-align: center;
    margin: 0 0 16px 0;
}

.faq-section-contact .faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
    margin: 0 0 48px 0;
}

.faq-section-contact .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-section-contact .faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-section-contact .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    transition: all 0.3s;
}

.faq-section-contact .faq-question:hover {
    background-color: #f9fafb;
}

.faq-section-contact .faq-question.active {
    background-color: #fef2f7;
    color: #ee2966;
}

.faq-section-contact .faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-section-contact .faq-icon.rotate {
    transform: rotate(180deg);
}

.faq-section-contact .faq-answer {
    padding: 0 24px 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.faq-section-contact .faq-answer p {
    margin: 0;
}

/* ===================================
   OLD CONTACT FORM STYLES (LEGACY)
   =================================== */

/* Contact Form Section */
.contact-form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

/* Header */
.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 896px;
    width: 100%;
}

.contact-main-title {
    font-weight: 700 !important;
    font-size: 32px !important;
    line-height: 60px !important;
    color: #111827 !important;
    text-align: center !important;
    margin: 0 !important;
}

.contact-description {
    max-width: 768px;
    padding: 0 16px;
}

.contact-description p {
    font-size: 14px;
    line-height: 28px;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

/* Form Box */
.contact-form-box {
    background-color: #f6eff4 !important;
    border-radius: 24px !important;
    max-width: 1024px !important;
    width: 100% !important;
    padding: 40px 20px 32px !important;
    position: relative !important;
    box-shadow: none !important;
    border: none !important;
}

.form-box-title {
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 40px !important;
    color: #111827 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
}

/* Form Styles */
.ghl-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-field-full {
    width: 100%;
}

.form-label {
    font-size: 13.125px;
    line-height: 20px;
    color: #6b7280;
    font-weight: 400;
}

.form-textarea {
    background-color: white !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    line-height: 24px !important;
    color: #111827 !important;
    resize: vertical !important;
    min-height: 176px !important;
    transition: box-shadow 0.3s !important;
    width: 100% !important;
    box-shadow: none !important;
}

.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(238, 41, 102, 0.2);
}

.form-footer-text {
    font-size: 13.453px;
    line-height: 20px;
    color: #4b5563;
    text-align: center;
    margin-top: -8px;
}

.form-phone-link {
    color: #ee2966;
    font-weight: 700;
    text-decoration: none;
}

.form-phone-link:hover {
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE - TABLET (768px+)
   =================================== */
@media (min-width: 768px) {
    .hidden-mobile {
        display: inline;
    }
    
    /* New Contact Layout */
    .contact-form-section {
        padding: 140px 32px 100px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
    }

    .contact-form-main-title {
        font-size: 48px;
    }

    .contact-form-subtitle {
        font-size: 17px;
    }

    .contact-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .contact-member-count {
        grid-column: span 1;
    }
    
    /* Old Contact Form Section */
    .contact-form-container {
        padding: 0 90px !important;
    }
    
    .contact-main-title {
        font-size: 48px !important;
    }
    
    .contact-description p {
        font-size: 16.875px !important;
    }
    
    .form-box-title {
        font-size: 28px !important;
        margin-bottom: 64px !important;
    }
    
    .ghl-contact-form {
        padding: 0 40px !important;
    }
    
    .form-row-two {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* FAQ Section */
    .faq-section-contact {
        padding: 100px 32px;
    }

    .faq-section-contact .faq-title {
        font-size: 48px;
    }

    .faq-section-contact .faq-subtitle {
        font-size: 18px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP (1024px+)
   =================================== */
@media (min-width: 1024px) {
    /* New Contact Layout */
    .contact-form-section {
        padding: 80px 40px 120px;
    }

    .contact-form-main-title {
        font-size: 56px;
    }

    .contact-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Old Contact Form Section */
    .contact-main-title {
        font-size: 58.945px;
    }
    
    .form-box-title {
        font-size: 35.156px;
    }

    /* FAQ Section */
    .faq-section-contact {
        padding: 120px 40px;
    }

    .faq-section-contact .faq-title {
        font-size: 56px;
    }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
    .contact-form-grid {
        gap: 100px;
    }
}