.elementor-84 .elementor-element.elementor-element-a8da1cb{--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;}/* Start custom CSS for html, class: .elementor-element-6afedef *//* --- Courtiva Residential Page Styles --- */

/* Basic Setup */
main {
    font-family: 'Inter', sans-serif;
    color: #2D3748; /* text-gray-800 */
    background-color: #ffffff;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) { .container { max-width: 640px; padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

/* Section Styling */
.courtiva-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (min-width: 768px) {
    .courtiva-section {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}
.courtiva-section.light-bg {
    background-color: #F7FAFC;
}
.section-header {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
    color: #1A202C;
}
@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}
.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 48rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
@media (min-width: 768px) {
    .hero-title { font-size: 3.75rem; line-height: 1; }
    .hero-subtitle { font-size: 1.25rem; line-height: 1.75rem; }
}

/* Call-to-Action Buttons */
.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: opacity 300ms;
}
.cta-button.orange-button {
    background-color: #F97316;
}
.cta-button:hover {
    opacity: 0.9;
}
.cta-button.full-width-button {
    width: 100%;
    text-align: center;
}

/* Benefits Section */
.benefits-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.benefit-item {
    text-align: center;
    padding: 1.5rem;
}
.benefit-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    border-radius: 9999px;
    margin-left: auto;
    margin-right: auto;
    background-color: #002D72;
}
.benefit-icon {
    height: 2rem;
    width: 2rem;
    color: #ffffff;
}
.benefit-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-top: 1.25rem;
    color: #1A202C;
}
.benefit-description {
    margin-top: 0.5rem;
    color: #4A5568; /* text-gray-600 */
}

/* Product Section */
.product-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.product-card-wrapper {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 300ms;
    display: flex;
    flex-direction: column;
}
.product-card-wrapper:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.product-card-image-container {
    overflow: hidden;
}
.product-card-image {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    transition: transform 300ms;
}
.product-card-wrapper:hover .product-card-image {
    transform: scale(1.05);
}
.product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1A202C;
}
.product-card-description {
    color: #2D3748;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.product-card-content .cta-button {
    margin-top: auto;
}

/* Showcase & Testimonial Section */
.showcase-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}
@media (min-width: 640px) { .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.showcase-card {
    display: block;
    position: relative;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding-bottom: 75%; /* Aspect ratio 4:3 */
}
.showcase-card-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms;
}
.showcase-card:hover .showcase-card-image {
    transform: scale(1.05);
}
.showcase-card-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.showcase-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
}
.showcase-card-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.25rem;
}
.testimonial-section {
    margin-top: 5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.testimonial-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1A202C;
}
.testimonial-quote {
    color: #2D3748;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.testimonial-cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
}

/* FAQ Section */
.faq-container {
    text-align: center;
    max-width: 56rem;
}
.faq-list {
    margin-top: 2rem;
    text-align: left;
}
.faq-list > * + * {
    margin-top: 1rem;
}
.faq-item {
    background-color: #ffffff;
    padding: 1rem;
    border-left: 4px solid #F97316;
    border-radius: 0.25rem;
}
.faq-question {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #1A202C;
}
.faq-answer {
    margin-top: 0.25rem;
    color: #4A5568;
}
.faq-links {
    margin-top: 2rem;
}
.faq-link {
    font-weight: 700;
    color: #002D72;
}
.faq-link:first-child {
    margin-right: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #002D72;
}
.cta-content {
    padding: 5rem 1rem;
    text-align: center;
    color: #ffffff;
}
.cta-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
}
.cta-subtitle {
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #BEE3F8; /* text-blue-200 */
}
@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}
.cta-button.large-button {
    padding: 0.75rem 2rem;
}/* End custom CSS */