.elementor-1113 .elementor-element.elementor-element-74c15f8{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1113 .elementor-element.elementor-element-562d64b{--spacer-size:50px;}.elementor-1113 .elementor-element.elementor-element-e05eae0{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-1113 .elementor-element.elementor-element-8e28f4e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1113 .elementor-element.elementor-element-f05aab3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-1113 .elementor-element.elementor-element-00c0253{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1113 .elementor-element.elementor-element-99ef177{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1113 .elementor-element.elementor-element-151d41f{--spacer-size:30px;}@media(min-width:768px){.elementor-1113 .elementor-element.elementor-element-8e28f4e{--width:50%;}.elementor-1113 .elementor-element.elementor-element-f05aab3{--width:50%;}}/* Start custom CSS for html, class: .elementor-element-522c5a7 *//* FAQ Section - Elementor Ready CSS */

.faq-section {
    position: relative;
    min-height: 100vh;
    background: #000000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Pattern */
.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-background .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Main Container */
.faq-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.tag-icon {
    font-size: 16px;
}

.tag-text {
    color: #3b82f6;
    font-size: 18px;
    font-weight: 500;
}

.faq-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.title-highlight {
    color: rgba(255, 255, 255, 0.6);
}

.faq-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

/* FAQ Question */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.question-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .question-icon {
    color: #3b82f6;
    transform: rotate(180deg);
}

.chevron-icon {
    width: 100%;
    height: 100%;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.answer-content {
    padding: 0 30px 30px 30px;
}

.answer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .answer-content {
        padding: 0 24px 24px 24px;
    }
    
    .answer-content p {
        font-size: 0.95rem;
        padding-top: 16px;
    }
    
    .question-icon {
        margin-left: 16px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-description {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .question-icon {
        margin-left: 0;
        align-self: flex-end;
        margin-top: -40px;
    }
    
    .answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .answer-content p {
        font-size: 0.9rem;
        padding-top: 12px;
    }
    
    .faq-accordion {
        gap: 16px;
    }
}

/* Animation for smooth expansion */
@keyframes expandAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .answer-content {
    animation: expandAnswer 0.3s ease forwards;
}

/* Focus states for accessibility */
.faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.faq-question:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-8aad4f0 *//* Contact Form 7 Styling for Elementor - Matches Original Design */

/* Main form container */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Form paragraphs (field containers) */
.wpcf7-form p {
    margin: 0;
    position: relative;
}

/* Input fields styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

/* Placeholder styling */
.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form input[type="url"]::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Focus states */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Error states */
.wpcf7-form input[type="text"].wpcf7-not-valid,
.wpcf7-form input[type="email"].wpcf7-not-valid,
.wpcf7-form input[type="tel"].wpcf7-not-valid,
.wpcf7-form input[type="url"].wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Textarea specific styling */
.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Submit button styling */
.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    width: auto;
    min-width: 200px;
    margin-top: 10px;
}

/* Submit button hover effect */
.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* Submit button active state */
.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Submit button disabled state */
.wpcf7-form input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Validation error messages */
.wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 8px;
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Form response messages */
.wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    border: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Success message */
.wpcf7-response-output.wpcf7-mail-sent-ok {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Validation errors message */
.wpcf7-response-output.wpcf7-validation-errors {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Mail sent error message */
.wpcf7-response-output.wpcf7-mail-sent-ng {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Loading spinner */
.wpcf7-form .wpcf7-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide default Contact Form 7 styling */
.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }
    
    .wpcf7-form textarea {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .wpcf7-form input[type="submit"] {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Additional styling for better integration */
.wpcf7-form .wpcf7-form-control {
    width: 100%;
}

/* Hide any default Contact Form 7 styling that might interfere */
.wpcf7-form .wpcf7-form-control-wrap input,
.wpcf7-form .wpcf7-form-control-wrap textarea {
    width: 100% !important;
    box-sizing: border-box !important;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-8e28f4e *//* Modern Contact Section UI - Matching Screenshot Design */

.contact-section-wrapper {
    /* Main container with background gradient */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Background gradient matching the screenshot */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Network pattern background */
.contact-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(59, 130, 246, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(139, 92, 246, 0.03) 50%, transparent 51%);
    background-size: 400px 400px, 300px 300px, 50px 50px, 50px 50px;
    animation: networkFlow 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes networkFlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    33% { transform: translate(20px, -20px) rotate(1deg); opacity: 1; }
    66% { transform: translate(-10px, 10px) rotate(-1deg); opacity: 0.8; }
}

/* Main layout container */
.contact-section-wrapper > div {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0;
    max-width: 1200px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Contact Form Container - Left Side */
.contact-section-wrapper .contact-form-container {
    flex: 1;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contact Image Container - Right Side */
.contact-section-wrapper .contact-image-container {
    flex: 1;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image styling */
.contact-section-wrapper .contact-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Quote overlay */
.contact-section-wrapper .contact-image-container .quote-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    z-index: 3;
}

.contact-section-wrapper .contact-image-container .quote-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-family: inherit;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section-wrapper .contact-image-container .quote-author {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact Form 7 Styling */
.contact-section-wrapper .contact-form-container .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form title and description */
.contact-section-wrapper .contact-form-container h2,
.contact-section-wrapper .contact-form-container .form-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.contact-section-wrapper .contact-form-container p,
.contact-section-wrapper .contact-form-container .form-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

/* Input fields styling */
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="text"],
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="email"],
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="tel"],
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="url"],
.contact-section-wrapper .contact-form-container .wpcf7-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

/* Placeholder styling */
.contact-section-wrapper .contact-form-container .wpcf7-form input::placeholder,
.contact-section-wrapper .contact-form-container .wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
}

/* Focus states */
.contact-section-wrapper .contact-form-container .wpcf7-form input:focus,
.contact-section-wrapper .contact-form-container .wpcf7-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Error states */
.contact-section-wrapper .contact-form-container .wpcf7-form input.wpcf7-not-valid,
.contact-section-wrapper .contact-form-container .wpcf7-form textarea.wpcf7-not-valid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Textarea specific styling */
.contact-section-wrapper .contact-form-container .wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit button styling - Gradient as requested */
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #003cff 0%, #00b7ff 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 60, 255, 0.3);
    backdrop-filter: blur(10px);
    font-family: inherit;
    width: 100%;
    margin-top: 10px;
    position: relative;
}

/* Submit button hover effect */
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 60, 255, 0.4);
    background: linear-gradient(135deg, #0028cc 0%, #0099cc 100%);
}

/* Submit button active state */
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Submit button disabled state */
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Add rocket emoji to submit button */
.contact-section-wrapper .contact-form-container .wpcf7-form input[type="submit"]::after {
    content: ' 🚀';
    margin-left: 8px;
}

/* Validation error messages */
.contact-section-wrapper .contact-form-container .wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 8px;
    display: block;
}

/* Form response messages */
.contact-section-wrapper .contact-form-container .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    border: none;
    font-family: inherit;
}

/* Success message */
.contact-section-wrapper .contact-form-container .wpcf7-response-output.wpcf7-mail-sent-ok {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Validation errors message */
.contact-section-wrapper .contact-form-container .wpcf7-response-output.wpcf7-validation-errors {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Mail sent error message */
.contact-section-wrapper .contact-form-container .wpcf7-response-output.wpcf7-mail-sent-ng {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Loading spinner */
.contact-section-wrapper .contact-form-container .wpcf7-form .wpcf7-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section-wrapper {
        padding: 50px 20px;
    }
    
    .contact-section-wrapper > div {
        max-width: 1000px;
    }
    
    .contact-section-wrapper .contact-form-container {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    /* Stack vertically on mobile */
    .contact-section-wrapper > div {
        flex-direction: column;
        max-width: 100%;
    }
    
    .contact-section-wrapper .contact-form-container {
        padding: 30px 25px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-section-wrapper .contact-image-container {
        min-height: 300px;
    }
    
    .contact-section-wrapper .contact-image-container .quote-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }
    
    /* Adjust form elements for mobile */
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="text"],
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="email"],
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="tel"],
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="url"],
    .contact-section-wrapper .contact-form-container .wpcf7-form textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="submit"] {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .contact-section-wrapper .contact-form-container .wpcf7-form textarea {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .contact-section-wrapper {
        padding: 30px 15px;
    }
    
    .contact-section-wrapper > div {
        border-radius: 20px;
    }
    
    .contact-section-wrapper .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-section-wrapper .contact-image-container {
        min-height: 250px;
    }
    
    .contact-section-wrapper .contact-image-container .quote-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 16px;
    }
    
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="text"],
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="email"],
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="tel"],
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="url"],
    .contact-section-wrapper .wpcf7-form textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .contact-section-wrapper .contact-form-container .wpcf7-form input[type="submit"] {
        padding: 12px 24px;
        font-size: 0.95rem;
        border-radius: 40px;
    }
    
    .contact-section-wrapper .contact-form-container .wpcf7-form textarea {
        min-height: 80px;
    }
    
    .contact-section-wrapper .contact-image-container .quote-text {
        font-size: 1rem;
    }
    
    .contact-section-wrapper .contact-image-container .quote-author {
        font-size: 0.85rem;
    }
}

/* Animation for smooth entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section-wrapper > div {
    animation: fadeInUp 0.8s ease-out;
}

/* Additional utility classes */
.contact-section-wrapper .contact-form-container .wpcf7-form p {
    margin: 0;
}

.contact-section-wrapper .contact-form-container .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

.contact-section-wrapper .contact-form-container .wpcf7-form .wpcf7-form-control {
    width: 100%;
}

/* Hide any default Contact Form 7 styling that might interfere */
.contact-section-wrapper .contact-form-container .wpcf7-form .wpcf7-form-control-wrap input,
.contact-section-wrapper .contact-form-container .wpcf7-form .wpcf7-form-control-wrap textarea {
    width: 100% !important;
    box-sizing: border-box !important;
}/* End custom CSS */
/* Start custom CSS for image, class: .elementor-element-c4369fb */.contact-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 40px;
  background: radial-gradient(circle at top, #0e1b2a, #000000);
  justify-content: center;
  border-radius: 32px;
}

.contact-form-container,
.contact-image-container {
  background: #0b0b0b;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  flex: 1 1 450px;
  max-width: 600px;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #121212;
  color: white;
  font-size: 16px;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
  color: #aaa;
}

.contact-form-container input[type="submit"] {
  background: linear-gradient(135deg, #003cff, #00b7ff);
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-container input[type="submit"]:hover {
  background: linear-gradient(135deg, #0022cc, #0099dd);
}

.contact-image-container img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .contact-section-wrapper {
    flex-direction: column;
    padding: 40px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a986e42 *//* FAQ Section - Elementor Ready CSS */

.faq-section {
    position: relative;
    min-height: 100vh;
    background: #000000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Pattern */
.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-background .grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Main Container */
.faq-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.tag-icon {
    font-size: 16px;
}

.tag-text {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
}

.faq-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-highlight {
    color: rgba(255, 255, 255, 0.6);
}

.faq-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

/* FAQ Question */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.question-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .question-icon {
    color: #3b82f6;
    transform: rotate(180deg);
}

.chevron-icon {
    width: 100%;
    height: 100%;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.answer-content {
    padding: 0 30px 30px 30px;
}

.answer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .answer-content {
        padding: 0 24px 24px 24px;
    }
    
    .answer-content p {
        font-size: 0.95rem;
        padding-top: 16px;
    }
    
    .question-icon {
        margin-left: 16px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-description {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .question-icon {
        margin-left: 0;
        align-self: flex-end;
        margin-top: -40px;
    }
    
    .answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .answer-content p {
        font-size: 0.9rem;
        padding-top: 12px;
    }
    
    .faq-accordion {
        gap: 16px;
    }
}

/* Animation for smooth expansion */
@keyframes expandAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .answer-content {
    animation: expandAnswer 0.3s ease forwards;
}

/* Focus states for accessibility */
.faq-question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.faq-question:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}/* End custom CSS */