/*
Theme Name: Manufactured
Theme URI: https://manufacturedhomepartners.com
Description: A professional manufactured homes business theme
Version: 1.0.0
Author: LBM
Author URI: https://manufacturedhomepartners.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: manufactured
Domain Path: /languages
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:
        "Montserrat",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}
.site-header-inner {
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-logo-link {
    display: block;
}
.custom-logo {
    width: auto;
}
.primary-navigation {
    display: flex;
    gap: 0;
}
.primary-navigation ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}
.primary-navigation li {
    margin: 0;
    padding: 0;
}
.primary-navigation a {
    display: block;
    padding: 15px 20px;
    color: #1f364c;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}
.primary-navigation a:hover {
    background-color: #e27c00;
    color: #fff;
}
.primary-navigation li.current-menu-item a {
    background-color: #e27c00;
    color: #fff;
}
.language-selector {
    display: grid;
    gap: 2px;
    align-items: center;
}
.language-selector img {
    width: 32px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.language-selector img:hover {
    transform: scale(1.1);
}
.page-header {
    margin-bottom: 40px;
}
.page-title {
    font-size: 2.5em;
    color: #3e4f61;
    margin-bottom: 10px;
}
.site-footer {
    background-color: #1f364c;
    color: #fff;
    padding: 40px 20px;
}
.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.site-footer a {
    color: #e27c00;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    .primary-navigation a {
        padding: 12px 15px;
        font-size: 14px;
    }
    .page-title {
        font-size: 2em;
    }
}
.hero-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 80%;
    padding: 40px 20px;
}
.hero-tagline {
    width: 100%;
    background-color: #e27c00;
    color: #fff;
    padding: 12px 20px;
    display: block;
    font-size: 18px;
    font-weight: bolder;
    text-align: center;
}
.hero-tag-first {
    font-weight: 100;
}
.hero-title {
    font-size: 3em;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons > .btn {
    width: 50%;
    text-align: center;
    font-size: 2rem;
    font-weight: bolder;
}
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-primary {
    background-color: #d97700;
    color: #fff;
}
.btn-primary:hover {
    background-color: #e27c00;
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: #1f364c;
    color: #fff;
}
.btn-secondary:hover {
    background-color: #2a3845;
    transform: translateY(-2px);
}
.features-section {
    background-color: #fff;
    padding: 40px;
}
.section-container {
    margin: 0 auto;
    padding: 80px 20px;
}
.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #e27c00;
    font-weight: 700;
    text-transform: uppercase;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}
.feature-item {
    padding: 20px 0;
    text-align: center;
}
.feature-icon {
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}
.feature-title {
    font-size: 1.8em;
    color: #1f364c;
    margin-bottom: 15px;
    font-weight: 600;
}
.feature-description {
    color: #666;
    line-height: 1.6;
}
.testimonials-section {
    background-color: #1f364c;
    color: #fff;
}
.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin: 0 auto;
}
.carousel-btn {
    background: none;
    border: none;
    color: #e27c00;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}
.carousel-btn:hover {
    color: #fff;
}
.testimonials-wrapper {
    flex: 1;
    overflow: hidden;
}
.testimonials-inner {
    display: flex;
    transition: transform 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-item {
    flex: 0 0 100%;
    padding: 40px;
    border-radius: 4px;
}
.testimonial-text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-text p {
    text-align: justify;
    margin-bottom: 20px;
}
.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.testimonial-meta strong {
    color: #e27c00;
    font-size: 1em;
}
.testimonial-meta span {
    font-size: 0.9em;
    opacity: 0.9;
}
.cta-section {
    background-color: #3e4f61;
    color: #fff;
}
.cta-divider {
    height: 4px;
    background-color: #e27c00;
    margin-bottom: 60px;
}
.cta-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-info-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-column h3 {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}
.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}
.contact-item a,
.contact-item span {
    color: #fff;
    text-decoration: none;
    font-size: 0.95em;
}
.contact-item a:hover {
    color: #e27c00;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #e27c00;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: #e27c00;
    color: #fff;
}
.cta-box {
    background-color: #e27c00;
    padding: 40px;
    border-radius: 4px;
    color: #fff;
}
.cta-box h2 {
    font-size: 1.3em;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
}
.cta-box p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 25px;
}
.btn-cta {
    background-color: #3e4f61;
    color: #fff;
    padding: 12px 35px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
}
.btn-cta:hover {
    background-color: #2a3845;
}
.testimonials-inner {
    display: grid;
    grid-template-columns: 1fr;
}
.testimonial-item {
    display: none;
}
.testimonial-item.active {
    display: block;
}
.arrow-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.investor-title {
    font-size: 3em;
    font-weight: 700;
    margin-left: 20px;
    line-height: 1.2;
    color: #fff;
}
.investor-subtitle {
    font-size: 2em;
    font-weight: 700;
    margin-left: 20px;
    line-height: 1.2;
    color: #e27c00;
}
.investor-paragraph {
    font-size: 1em;
    margin-left: 20px;
    line-height: 1.2;
    color: #fff;
    text-align: justify;
}
.investor-content {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.projects-section {
    display: flex;
    align-items: center;
    height: 300px;
}
.projects-text {
    flex: 1 1 60%;
    padding: 40px 100px;
    display: flex;
    gap: 30px;
    flex-direction: column;
}
.projects-title {
    color: #e27c00;
}
.projects-paragraph {
    color: #1f364c;
    font-weight: 500;
    text-align: justify;
}
.projects-image {
    flex: 1 1 40%;
    min-height: -webkit-fill-available;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.btni {
    display: inline-block;
    padding: 7px 22px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.financing-text {
    flex: 1 1 60%;
    padding: 40px 100px;
    display: flex;
    gap: 30px;
    flex-direction: column;
    color: #fff;
}
.financing-section {
    display: flex;
    align-items: center;
    height: 300px;
    background-color: #e27c00;
}
.financing-paragraph {
    color: #fff;
    font-weight: 500;
    text-align: justify;
}
body.page-id-59 .hero-tagline {
    display: none;
}
.investor-tagline {
    width: 100%;
    background-color: #e27c00;
    color: #fff;
    padding: 12px 20px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
.investor-section {
    position: relative;
    height: 355px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.contact-title {
    font-size: 3em;
    font-weight: 700;
    margin-left: 20px;
    line-height: 1.2;
    color: #e27c00;
}
@media (max-width: 768px) {
    #site-navigation {
        display: none;
    }
    .hero-title {
        font-size: 2em;
    }
    .hero-subtitle {
        font-size: 1em;
    }
    .hero-section {
        height: 350px;
    }
    .btn {
        width: 100%;
    }
    .section-title {
        font-size: 1.8em;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .cta-section .section-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
    .projects-text,
    .financing-text {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5em;
    }
    .hero-subtitle {
        font-size: 0.9em;
    }
    .section-title {
        font-size: 1.5em;
    }
    .feature-item {
        padding: 20px;
    }
    .testimonial-item {
        padding: 20px;
    }
    .investor-content {
        position: relative;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 90%;
        padding: 0;
    }
    .investor-title {
        font-size: 2em;
        margin-left: 20px;
        line-height: 1.2;
        color: #fff;
    }
    .investor-subtitle {
        font-size: 1.5em;
        margin-left: 20px;
        line-height: 1.2;
        color: #e27c00;
    }
    .investor-paragraph {
        font-size: 1em;
        line-height: 1.2;
        color: #fff;
        text-align: justify;
        margin: 20px 15px;
    }
    .projects-section {
        display: flex;
        align-items: center;
        height: auto;
        flex-direction: column;
        gap: 20px;
    }
    .projects-text,
    .projects-image {
        width: 100%;
        max-width: 100%;
    }
    .projects-text {
        flex: 1 1 60%;
        padding: 10px 30px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
    .projects-image {
        min-height: 250px;
        background-size: cover;
    }
    .financing-section {
        display: flex;
        align-items: center;
        height: auto;
        flex-direction: column;
        gap: 20px;
    }
    .financing-text,
    .projects-image {
        width: 100%;
        max-width: 100%;
    }
    .financing-text {
        flex: 1 1 60%;
        padding: 10px 30px;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
}
.site-info {
    text-align: center;
}
.contact-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 20px;
}
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 0.4);
    z-index: 1;
}
.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.contact-content {
    color: #fff;
}
.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #ff8c00;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}
.contact-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 0.3);
}
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-title {
        font-size: 36px;
    }
    .contact-description {
        font-size: 16px;
    }
}
.contact-message {
    padding: 15px 20px;
    margin: 0 0 20px 0;
    font-weight: 600;
}
.contact-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.contact-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.form-group {
    margin-bottom: 8px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 20px;
    letter-spacing: 0.5px;
}
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: #e8e8e8;
    font-size: 14px;
    transition: background 0.3s;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    background: #e0e2e5;
}
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
    color: #555;
}
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 50%;
    background: #4a5568;
    border: 3px solid #4a5568;
}
.radio-label span {
    font-size: 16px;
}
.submit-btn {
    background: #ff8c00;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    float: right;
    transition: background 0.3s;
}
.submit-btn:hover {
    background: #e67e00;
}
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    .submit-btn {
        width: 100%;
        float: none;
    }
}


.resource-card a:focus {
    outline: 2px solid #ff8c42;
    outline-offset: 2px;
}

