
.ct-icon-container svg {
    width: var(--theme-icon-size, 15px);
    height: var(--theme-icon-size, 15px);
    fill: #1daa61 !important;
    transition: var(--theme-icon-transition, fill 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955));
}

/* .ct-header-cta{
    display:none !important;
} */

[data-header*="type-1"] .ct-header [data-id="menu"]>ul>li>a {
    --theme-font-weight: 700;
    --theme-text-transform: uppercase;
    --theme-font-size: 12px;
    --theme-line-height: 1.3;
    --theme-link-initial-color: #353535;
}

/* Quote Request Form Styles */

.quote-request-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Company Header Section */
.company-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.company-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    color: #fff;
}

.company-tagline {
    margin: 0 0 15px 0;
    font-size: 1.3em;
    color: #ecf0f1;
    font-weight: 600;
}

.company-description {
    margin: 0;
    font-size: 1em;
    color: #bdc3c7;
    line-height: 1.6;
}

.company-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item strong {
    color: #f39c12;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item span {
    color: white;
    font-size: 1.1em;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #f39c12;
    text-decoration: underline;
}

/* Services Section */
.services-section {
    margin-bottom: 40px;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-item h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.2em;
}

.service-item p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Quote Form Section */
.quote-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.quote-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.8em;
    text-align: center;
}

.form-intro {
    margin: 0 0 30px 0;
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    text-align: center;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95em;
}

.form-hint {
    font-size: 0.85em;
    color: #666;
    margin-top: 6px;
    line-height: 1.4;
}

.form-input {
    padding: 6px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.form-input[type="file"]::file-selector-button {
    padding: 8px 16px;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.form-input[type="file"]::file-selector-button:hover {
    background-color: #d68910;
}

.form-input:focus {
    outline: none;
    border-color: #f39c12;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-input::placeholder {
    color: #999;
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.form-group.checkbox {
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.form-group.checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f39c12;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85em;
    margin-top: -4px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-input.error {
    border-color: #e74c3c;
    background-color: #fadbd8;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.button {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button-primary {
    background-color: #f39c12;
    color: white;
}

.button-primary:hover {
    background-color: #d68910;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.button-primary:active {
    transform: translateY(0);
}

.button-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
}

.button-secondary:hover {
    background-color: #bdc3c7;
    color: #2c3e50;
}

/* Form Message */
.form-message {
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d5f4e6;
    color: #27ae60;
    border: 1px solid #27ae60;
}

.form-message.error {
    background-color: #fadbd8;
    color: #c0392b;
    border: 1px solid #c0392b;
}

/* Additional Info Section */
.additional-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #f39c12;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.additional-info h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.4em;
}

.additional-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.additional-info li {
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
}

/* Contact Form 7 Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7 .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
    /* padding: 12px 15px; */
    padding: 6px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: #f39c12;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.wpcf7 textarea {
    resize: vertical;
    min-height: 150px;
}

.wpcf7 input[type="file"] {
    padding: 10px;
}

.wpcf7 input[type="file"]::file-selector-button {
    padding: 8px 16px;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.wpcf7 input[type="file"]::file-selector-button:hover {
    background-color: #d68910;
}

.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #f39c12;
    margin-right: 8px;
}

.wpcf7 label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95em;
    cursor: pointer;
}

.wpcf7-response-output {
    margin: 20px 0;
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #d5f4e6;
    color: #27ae60;
    border: 1px solid #27ae60;
}

.wpcf7-response-output.wpcf7-validation-errors {
    background-color: #fadbd8;
    color: #c0392b;
    border: 1px solid #c0392b;
}

.wpcf7 .wpcf7-form-control.wpcf7-validation-error {
    border-color: #e74c3c !important;
    background-color: #fadbd8 !important;
}

.wpcf7 span.wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100%;
}

.wpcf7 .wpcf7-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #f39c12;
    color: white;
    align-self: flex-start;
}

.wpcf7 .wpcf7-submit:hover {
    background-color: #d68910;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.wpcf7 .wpcf7-submit:active {
    transform: translateY(0);
}

/* CF7 Multi-column layout support */
.wpcf7-checkbox-multiple,
.wpcf7-radio-multiple {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-request-container {
        padding: 20px 15px;
    }

    .company-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .company-header h1 {
        font-size: 2em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .quote-form-wrapper {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .company-header {
        padding: 15px;
    }

    .company-header h1 {
        font-size: 1.5em;
    }

    .company-tagline {
        font-size: 1.1em;
    }

    .quote-form-wrapper h2 {
        font-size: 1.4em;
    }

    .form-input {
        padding: 6px 12px;
    }

    .service-item {
        padding: 15px;
    }
}
