/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE6/7/8/9 & FF3.
 */

@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Geologica:wght@100..900&display=swap');

/* ==========================================================================
   Font Face Declarations
   ========================================================================== */

@font-face {
    font-family: 'Hightone';
    src: url('../fonts/hightone/Hightone-Regular.woff2') format('woff2'),
         url('../fonts/hightone/Hightone-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hightone';
    src: url('../fonts/hightone/Hightone-Italic.woff2') format('woff2'),
         url('../fonts/hightone/Hightone-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --dark-blue: #011331;
    --light-gold: #EECDAF;
    --gradient-light: #C7DEEE;
    --gradient-dark: #89C5EE;
    
    /* Font Variables */
    --font-heading: 'Hightone', sans-serif;
    --font-content: 'Geologica', sans-serif;
    --font-button: 'Anton SC', sans-serif;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a{
    text-decoration: none;
}

button:focus{
    outline: none !important;
}

body{
    background-image: url('/wp-content/uploads/2025/09/Rectangle-576.png');
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    overflow-x: hidden;
}

.img-mobile-logo, .navbar-phone-cta-bar{
    display: none;
}

/* ==========================================================================
   Title Styles - Base class for all titles
   ========================================================================== */

.title-primary {
    font-family: var(--font-heading);
    font-size: 87px;
    line-height: 70px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.title-primary br {
    display: none;
}

/* Title Color Variations */
.title-primary.text-white {
    color: white;
}

.title-primary.text-dark {
    color: var(--dark-blue) !important;
}

.title-primary.text-primary {
    color: var(--dark-blue);
}

.title-primary.text-gradient {
    background-image: url('/wp-content/uploads/2025/11/Rectangle-3969.png');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 5px 0;
}

/* ==========================================================================
   Button Styles - Reutilizable para todo el sitio
   ========================================================================== */

.btn-primary-custom {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 43px;
    border: 0.75px solid var(--light-gold);
    background: radial-gradient(68.46% 61.89% at 50% 50%, var(--gradient-light) 0%, var(--gradient-dark) 100%);
    box-shadow: 0 0 17px 0 rgba(238, 205, 175, 0.38);
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-button);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-transform: uppercase;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px 0 rgba(238, 205, 175, 0.5);
    color: #000;
    text-decoration: none;
}
 
.btn-primary-custom:focus,
.btn-primary-custom:active {
    color: #000;
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 0 3px rgba(238, 205, 175, 0.3);
}

/* ==========================================================================
   Financing Section Styles
   ========================================================================== */

.financing-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

.financing-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    bottom: -80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(238, 205, 175, 0.1) 20%, 
        rgba(238, 205, 175, 0.3) 40%, 
        rgba(238, 205, 175, 0.4) 50%, 
        rgba(238, 205, 175, 0.3) 60%, 
        rgba(238, 205, 175, 0.1) 80%, 
        transparent 100%);
    z-index: -1;
}

.financing-content {
    background-image: url('/wp-content/uploads/2025/09/Rectangle-566.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    border-radius: 84px;
    text-align: center;
    padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.financing-logo {
    max-width: 200px;
    height: auto;
}

.financing-content h2{
	max-width: 70%;
	margin-bottom: 18px !important;
}

.financing-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: normal;
	font-weight: 200;
    max-width: 700px;
}

/* ==========================================================================
   CTA Section Styles
   ========================================================================== */

.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content {
    z-index: 2;
    text-align: center;
    max-width: 510px;
}

.cta-section .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.review-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 2rem;
}

.review-logo {
    width: 100%;
	max-width: 100px;
}

.cta-content h2{
	margin-bottom: 12px;
}

.cta-title,
.cta-section .cta-title,
.cta-section h2.title-primary {
    background-image: url('/wp-content/uploads/2025/11/Rectangle-3969.png');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 5px 0;
}

.cta-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: normal;
	font-weight: 200;
	margin-bottom: 20px;
}



/* ==========================================================================
   About Us Section Styles
   ========================================================================== */

.about-us-section {
    padding: 80px 0;
}

.about-slider-container {
    position: relative;
    border-radius: 20px;
    min-height: 500px;
    overflow: visible;
    padding-bottom: 40px;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.about-slider .slide-item {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 500px;
}

.slide-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Navegación del slider */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 40px;
    height: 5px;
    border-radius: 10px;
    background: rgba(238, 205, 175, 0.45);
    border: 2px solid rgba(238, 205, 175, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:focus{
    outline: none;
}

.slider-dot.active {
    background: #89C5EE;
    border-color: #89C5EE;
}

.slider-prev,
.slider-next {
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    pointer-events: all;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover{
    background: white;
}

.slider-prev{
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.slider-next{
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.slider-prev:focus,
.slider-next:focus {
    outline: none;
    box-shadow: none;
}

.about-content {
    padding-left: 40px;
}


.about-text {
    font-family: var(--font-content);
    font-size: 16PX;
    line-height: normal;
    color: var(--dark-blue);
    margin-bottom: 26PX;
    font-weight: 200;
    max-width: 650px;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Left Content Right Slider - Specific Styles */
.left-content-right-slider-section .slide-image {
    border-radius: 4px;
    border: 2px solid #FFF;
    box-shadow: 0 0 24px 0 rgba(55, 55, 55, 0.18);
}

/* Slick Slider Customization */
.about-slider .slick-dots {
    bottom: 20px;
    z-index: 10;
}

.about-slider .slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 0.7;
}

.about-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--light-gold);
}




/* ==========================================================================
   Secondary Button Styles
   ========================================================================== */

.btn-secondary-custom {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid var(--dark-blue);
    background: transparent;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-button);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-transform: uppercase;
}

.btn-secondary-custom:hover {
    background: var(--dark-blue);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(1, 19, 49, 0.3);
}

.btn-secondary-custom:focus,
.btn-secondary-custom:active {
    color: white;
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 19, 49, 0.3);
}

/* ==========================================================================
   Resources Section Styles
   ========================================================================== */

.resources-section {
    padding: 80px 0;
}

.resource-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.resource-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
	border-radius: 4px;
}

.resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-card-image img {
    transform: scale(1.05);
}

.resource-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    overflow: hidden;
}

.resource-card-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2025/10/Rectangle-547.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.resource-card:hover .resource-card-content::after {
    opacity: 1;
}

.resource-card-content > * {
    position: relative;
    z-index: 1;
}

.resource-card-title {
    font-family: var(--font-button);
    font-size: 25px;
    font-weight: 400;
    line-height: 23px;
	text-align: center;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.resource-card-excerpt {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: normal;
	text-align: center;
    color: var(--dark-blue);
    margin-bottom: 10px;
    flex-grow: 1;
}

.resource-card-cta {
	text-align: center;
}

/* Resource Card CTA Specific Styles */
.resource-card-cta .btn-primary-custom {
    width: 208px;
    background: white;
    border: 2.25px solid var(--light-gold);
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-card-cta .btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(68.46% 61.89% at 50% 50%, var(--gradient-light) 0%, var(--gradient-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

.resource-card-cta .btn-primary-custom:hover::before {
    opacity: 1;
}

.resource-card-cta .btn-primary-custom:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px 0 rgba(238, 205, 175, 0.5);
}

/* Responsive Design */


/* ==========================================================================
   Values Section Styles
   ========================================================================== */

.values-section {
    padding: 80px 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(20% - 30px);
    min-width: 175px;
    max-width: 300px;
    background: var(--dark-blue);
    border-radius: 4px;
    border: 2px solid #FFF;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2025/10/Rectangle-547.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card-content {
    padding: 60px 17px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.value-card-icon {
    margin-bottom: 20px;
    max-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.value-card-title {
    font-family: var(--font-button);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.value-card:hover .value-card-title {
    color: var(--dark-blue);
}

.value-card-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.5;
    color: white;
    font-weight: 200;
    transition: color 0.4s ease;
}

.value-card:hover .value-card-text {
    color: var(--dark-blue);
}

.value-card-text p {
    margin-bottom: 0.5rem;
}

.value-card-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Our Team Section
   ========================================================================== */

.our-team-section {
    padding: 80px 0;
    position: relative;
}

.our-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(1800deg, rgba(1, 19, 49, 0.00) 0%, #011331 100%);
    pointer-events: none;
    z-index: 1;
}

.our-team-hibiscus {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
}

.our-team-section .container {
    position: relative;
    z-index: 3;
}

.our-team-title-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
}

.our-team-line-decoration {
    position: absolute;
    top: 80px;
    left: 0;
    width: 68%;
    height: 150px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
}

.our-team-title {
    font-family: var(--font-heading);
    font-size: 87px;
    font-weight: 400;
    line-height: 1;
    color: white;
    text-transform: uppercase;
}

.our-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.team-member-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    max-width: 300px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 9px 0 rgba(80, 80, 80, 0.25);
}

.team-member-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.team-member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #89C5EE 0%, rgba(137, 197, 238, 0.00) 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-member-card:hover .team-member-image::after {
    opacity: 1;
}

.team-member-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-member-content {
    background: var(--dark-blue);
    padding: 25px 20px;
    text-align: center;
    transition: background 0.4s ease;
}

.team-member-card:hover .team-member-content {
    background: #89C5EE;
}

.team-member-name {
    font-family: var(--font-button);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.team-member-card:hover .team-member-name {
    color: var(--dark-blue);
}

.team-member-job-title {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.5;
    color: white;
    font-weight: 200;
    transition: color 0.4s ease;
}

.team-member-card:hover .team-member-job-title {
    color: var(--dark-blue);
}

/* Team Member Modal */
.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.team-modal-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    background: var(--dark-blue);
    border-radius: 8px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.18);
    z-index: 10000;
}

.team-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 35px;
    color: white;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.team-modal-close:hover {
    opacity: 0.7;
}

.team-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 36px 22px;
}

.team-modal-left {
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.team-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.team-modal-right {
    padding: 50px 40px;
    color: white;
}

.team-modal-name {
    font-family: var(--font-button);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.team-modal-job-title {
    font-family: var(--font-content);
    font-size: 18px;
    line-height: 1.5;
    color: white;
    font-weight: 400;
    margin-bottom: 30px;
}

.team-modal-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: white;
    font-weight: 400;
}

/* ==========================================================================
   Grid List Section
   ========================================================================== */

.grid-list-section {
    padding: 70px 0;
}

.grid-list-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 87px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.grid-list-section-content {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.grid-list-section-content p {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: white;
    text-align: center;
    max-width: 948px;
    margin-bottom: 0.5rem;
}

.grid-list-section-content p:last-child {
    margin-bottom: 0;
}

.grid-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.grid-list-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 400px;
    background: rgba(1, 19, 49, 0.67);
    border-radius: 4px;
    border: 2px solid #FFF;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.grid-list-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2025/10/Rectangle-547.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.grid-list-card:hover {
    background: var(--dark-blue);
}

.grid-list-card:hover::after {
    opacity: 1;
}

.grid-list-card-content {
    padding: 60px 17px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.grid-list-card-icon {
    margin-bottom: 20px;
    max-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-list-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.grid-list-card-title {
    font-family: var(--font-button);
    font-size: 32px;
    font-weight: 400;
    max-width: 259px;
    line-height: 1.2;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.grid-list-card:hover .grid-list-card-title {
    color: var(--dark-blue);
}

.grid-list-card-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.5;
    color: white;
    font-weight: 200;
    transition: color 0.4s ease;
}

.grid-list-card:hover .grid-list-card-text {
    color: var(--dark-blue);
}

.grid-list-card-text p {
    margin-bottom: 0.5rem;
}

.grid-list-card-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Mission & Vision Section
   ========================================================================== */

.mission-vision-section {
    padding: 80px 0;
}

.mission-vision-section-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 87px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin: 0;
}

.mission-vision-intro {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    max-width: 1012px;
    margin: 0 auto 25px;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.mission-vision-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-vision-image {
    width: 100%;
    overflow: hidden;
}

.mission-vision-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid white;
    box-shadow: 0 0 24px 0 rgba(55, 55, 55, 0.18);
    display: block;
}

.mission-vision-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mission-vision-title {
    font-family: var(--font-heading);
    font-size: 47px;
    line-height: 1.2;
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: normal;
}

.mission-vision-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    font-weight: 200;
}

.mission-vision-text p {
    margin-bottom: 1rem;
}

.mission-vision-text p:last-child {
    margin-bottom: 0;
}

.mission-vision-cta {
    width: 220px;
    display: inline-block;
    text-align: center;
}

/* ==========================================================================
   Careers Accordion Section
   ========================================================================== */

.careers-accordion-section {
    padding: 40px 0 80px 0;
}

.careers-accordion-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 87px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--dark-blue);
}

.careers-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    border-radius: 4px;
    background: var(--dark-blue);
    border: 2.67px solid white;
    box-shadow: 0 2px 10px 0 rgba(55, 55, 55, 0.35);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px 0 rgba(55, 55, 55, 0.45);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 47px;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    font-weight: normal;
    transition: color 0.3s ease;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: white;
    transition: color 0.3s ease;
}

.accordion-icon svg {
    width: 24px;
    height: 24px;
}

.accordion-icon .icon-minus {
    display: none;
}

.accordion-item.active .accordion-icon .icon-plus {
    display: none;
}

.accordion-item.active .accordion-icon .icon-minus {
    display: block;
}

.accordion-item.active {
    background: white;
    border: 2.67px solid var(--dark-blue);
}

.accordion-item.active .accordion-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-item.active .accordion-title {
    color: var(--dark-blue);
}

.accordion-item.active .accordion-icon {
    color: var(--dark-blue);
}

.accordion-collapse {
    display: none;
    overflow: hidden;
}

.accordion-collapse.show {
    display: block;
}

.accordion-body {
    padding: 0 40px 50px 40px;
    background: transparent;
    border: none;
}

.job-description {
    margin-bottom: 30px;
}

.job-description h2,
.job-description h3,
.job-description h4,
.job-description h5,
.job-description h6 {
    font-family: var(--font-button);
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.job-description h3 {
    font-size: 25px;
}

.job-description p {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.job-description p:last-child {
    margin-bottom: 0;
}

.job-description ul,
.job-description ol {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    padding-left: 30px;
}

.job-description ul li,
.job-description ol li {
    margin-bottom: 0.5rem;
}

.job-description ul {
    list-style-type: disc;
}

.job-description ol {
    list-style-type: decimal;
}

.job-cta-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.job-cta {
    width: 220px;
    display: inline-block;
    text-align: center;
}

/* ==========================================================================
   Form Section
   ========================================================================== */

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%) translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) translateY(-50%);
        opacity: 1;
    }
}

.form-section {
    position: relative;
    padding: 80px 0;
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    margin-top: 40px;
}

.form-van-wrapper {
    position: absolute;
    left: 55%;
    top: 0;
    transform: translate(-50%, -50%);
    max-width: 640px;
    width: 100%;
    z-index: 10;
    animation: slideInFromLeft 1.2s ease-out forwards;
}

.form-van {
    width: 100%;
    height: auto;
    display: block;
}

.form-container {
    background: var(--dark-blue);
    border-radius: 18px;
    padding: 30px;
    max-width: 1060px;
    margin: 0 auto 0;
}

.form-inner {
    background: transparent;
    border-radius: 4px;
    border: 2px solid #C7DEEE;
    padding: 70px 35px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 87px;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
}

.form-wrapper {
    color: white;
}

/* Gravity Forms Styling */
.form-wrapper .gform_wrapper {
    margin: 0;
}

.form-wrapper .gform_wrapper .gform_title {
    display: none;
}

.form-wrapper .gform_wrapper .gform_body {
    width: 100%;
}



.form-wrapper .gform_wrapper .gfield_label {
    font-family: var(--font-content);
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
    font-weight: 400;
}

.form-wrapper .gform_wrapper input[type="text"],
.form-wrapper .gform_wrapper input[type="email"],
.form-wrapper .gform_wrapper input[type="tel"],
.form-wrapper .gform_wrapper textarea{
    width: 100% !important;
    padding: 12px 15px !important;
    border-radius: 4px !important;
    border: 1px solid #C7DEEE !important;
    background: white !important;
    font-family: var(--font-content) !important;
    font-size: 16px !important;
    color: var(--dark-blue) !important;
}

.form-wrapper .gform_wrapper select,
.form-wrapper .gform_wrapper select.gfield_select,
.form-wrapper .gform_wrapper select.large {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23003D6A' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 15px center !important;
    background-size: 12px !important;
    padding-right: 40px !important;
    cursor: pointer !important;
    color: #003D6A !important;
    font-family: var(--font-content) !important;
    font-size: 16px !important;
    color: var(--dark-blue) !important;
}

.form-wrapper .gform_wrapper select option {
    color: var(--dark-blue) !important;
    background: white !important;
    padding: 10px !important;
}

.form-wrapper .gform_wrapper select option:first-child,
.form-wrapper .gform_wrapper select option[value=""] {
    color: #999 !important;
}

.form-wrapper .gform_wrapper select:focus,
.form-wrapper .gform_wrapper select.gfield_select:focus,
.form-wrapper .gform_wrapper select.large:focus {
    outline: none !important;
    border-color: #C7DEEE !important;
    color: #003D6A !important;
}


.form-wrapper .gform_wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.form-wrapper .gform_wrapper .gform_footer {
    text-align: center;
    margin-top: 30px;
}

.form-wrapper .gform_wrapper .gform_footer {
    text-align: center !important;
}

.form-wrapper .gform_wrapper .gform_footer input[type="submit"],
.form-wrapper .gform_wrapper .gform_button {
    display: inline-block !important;
    padding: 12px 40px !important;
    border-radius: 43px !important;
    border: 0.75px solid var(--light-gold) !important;
    background: radial-gradient(68.46% 61.89% at 50% 50%, var(--gradient-light) 0%, var(--gradient-dark) 100%) !important;
    box-shadow: 0 0 17px 0 rgba(238, 205, 175, 0.38) !important;
    color: #000 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-family: var(--font-button) !important;
    cursor: pointer !important;
    width: 220px !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    margin: 0 auto !important;
}

.form-wrapper .gform_wrapper .gform_footer input[type="submit"]:hover,
.form-wrapper .gform_wrapper .gform_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px 0 rgba(238, 205, 175, 0.5) !important;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */

.contact-form-section {
    padding: 70px 0;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 87px;
    line-height: 1.2;
    font-weight: normal;
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.contact-form-content {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 200;
    max-width: 1012px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-content p {
    margin-bottom: 1rem;
}

.contact-form-content p:last-child {
    margin-bottom: 0;
}

.contact-form-cta {
    margin-bottom: 50px;
    text-align: center;
}

.contact-form-wrapper {
    margin-bottom: 0 !important;
}

.contact-form-wrapper .gform_wrapper {
    margin-bottom: 0 !important;
}

.contact-form-wrapper .gform_wrapper .gform_footer {
    margin-bottom: 0 !important;
    margin-top: 30px;
}

.contact-form-call-us {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: white;
    text-align: center;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 400;
}

.contact-form-call-us p {
    margin-bottom: 0;
}

/* Contact Form Container Max Width */
.contact-form-section .form-container {
    max-width: 631px !important;
}

/* Contact Form Specific Styles */
.contact-form-wrapper .gform_wrapper .gform_title {
    display: block !important;
    font-family: var(--font-button);
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

.contact-form-section .form-title {
    line-height: 1;
    margin-bottom: 10px;
}

/* Contact Form Inputs Styling */
.contact-form-wrapper .gform_wrapper .gform_fields {
    gap: 30px 20px !important;
}

.contact-form-wrapper .gform_wrapper input[type="text"],
.contact-form-wrapper .gform_wrapper input[type="email"],
.contact-form-wrapper .gform_wrapper input[type="tel"],
.contact-form-wrapper .gform_wrapper textarea,
.contact-form-wrapper .gform_wrapper select {
    border-radius: 4px !important;
    padding: 15px 20px !important;
    height: auto;
    max-height: 48px;
}

.contact-form-wrapper .gform_wrapper input[type="text"]::placeholder,
.contact-form-wrapper .gform_wrapper input[type="email"]::placeholder,
.contact-form-wrapper .gform_wrapper input[type="tel"]::placeholder,
.contact-form-wrapper .gform_wrapper textarea::placeholder {
    font-family: var(--font-content) !important;
    font-size: 16px !important;
    font-weight: 200 !important;
    color: #AFAFAF !important;
}

.contact-form-wrapper .gform_wrapper input[type="text"]:focus,
.contact-form-wrapper .gform_wrapper input[type="email"]:focus,
.contact-form-wrapper .gform_wrapper input[type="tel"]:focus,
.contact-form-wrapper .gform_wrapper textarea:focus,
.contact-form-wrapper .gform_wrapper select:focus {
    border: 2px solid #EECDAF !important;
    box-shadow: 0 2px 24px 0 rgba(238, 205, 175, 0.70) !important;
    outline: none !important;
}

.contact-form-wrapper .gform_wrapper .ginput_container_fileupload {
    background: white !important;
    border: 1px solid #C7DEEE !important;
    border-radius: 4px !important;
    padding: 12px 15px !important;
    font-family: var(--font-content) !important;
    font-size: 16px !important;
    color: var(--dark-blue) !important;
}

.contact-form-wrapper .gform_wrapper .ginput_container_fileupload:focus-within {
    border: 2px solid #EECDAF !important;
    box-shadow: 0 2px 24px 0 rgba(238, 205, 175, 0.70) !important;
}

.contact-form-wrapper .gform_wrapper .gform_footer input[type="submit"],
.contact-form-wrapper .gform_wrapper .gform_button {
    font-size: 20px !important;
}

/* ==========================================================================
   Featured Article Section
   ========================================================================== */

.featured-article-section {
    padding: 43px 0 15px 0;
}

.featured-article-section-title {
    font-family: var(--font-heading);
    font-size: 87px;
    line-height: 1.1;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--dark-blue);
    text-align: center;
    margin: 0 0 30px 0;
}

.featured-article-card {
    display: grid;
    grid-template-columns: 63% 37%;
    gap: 0;
    background: var(--dark-blue);
    border-radius: 4px;
    box-shadow: 0 4px 9px 0 rgba(80, 80, 80, 0.25);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.featured-article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2025/10/Rectangle-547.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.featured-article-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 4px 0 0 4px;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 575px;
    transition: transform 0.4s ease;
    border-radius: 4px 0 0 4px;
}

.featured-article-card:hover .featured-article-image img {
    transform: scale(1.05);
}

.featured-article-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.featured-article-title {
    font-family: var(--font-button);
    font-size: 25px;
    font-weight: 400;
    line-height: 23px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    text-align: left;
}

.featured-article-title a {
    color: inherit;
    text-decoration: none;
}

.featured-article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.featured-category-tag {
    font-family: var(--font-button);
    font-size: 14px;
    font-weight: 900;
    color: var(--dark-blue);
    background: white;
    border: 1px solid #89C5EE;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.featured-article-date {
    font-family: var(--font-content);
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 11px;
    font-weight: 500;
    transition: color 0.4s ease;
    text-align: left;
}

.featured-article-excerpt {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-blue);
    font-weight: 200;
    margin-bottom: 20px;
    transition: color 0.4s ease;
    text-align: left;
    max-height: 120px;
    overflow: hidden;
}

.featured-article-cta {
    width: auto;
}

.featured-article-cta .btn-primary-custom {
    width: 206px;
    text-align: center;
    display: inline-block;
    border: 0.75px solid var(--light-gold);
    background: radial-gradient(68.46% 61.89% at 50% 50%, var(--gradient-light) 0%, var(--gradient-dark) 100%);
    color: #000;
}

/* ==========================================================================
   Blog Posts Section
   ========================================================================== */

.blog-posts-section {
    padding: 15px 0;
}

.blog-posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-posts-title {
    font-family: var(--font-heading);
    font-size: 87px;
    line-height: 1.1;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin: 0;
}

.blog-category-filter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-category-label {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin: 0
}

.blog-category-select {
    padding: 12px 40px 12px 15px;
    border-radius: 18px;
    border: 1px solid var(--dark-blue);
    background: transparent;
    font-family: var(--font-content);
    font-size: 16px;
    color: var(--dark-blue);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23011331' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    cursor: pointer;
    min-width: 200px;
}

.blog-category-select:focus {
    outline: none;
    border-color: var(--light-gold);
}

.blog-category-select option:first-child {
    color: #999;
}

.blog-category-select option {
    color: var(--dark-blue);
    background: white;
}

.blog-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.blog-post-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: calc(33.333% - 30px);
    background: white;
    border-radius: 4px;
    border: 1px solid white;
    box-shadow: 0 4px 9px 0 rgba(80, 80, 80, 0.25);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-post-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2025/10/Rectangle-547.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.blog-post-card:hover::after {
    opacity: 1;
}

.blog-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 4px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 4px;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.blog-post-title {
    font-family: var(--font-button);
    font-size: 25px;
    font-weight: 400;
    line-height: 23px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.4s ease;
    text-align: center;
}

.blog-post-title a {
    color: inherit;
    text-decoration: none;
}

.blog-post-card:hover .blog-post-title {
    color: var(--dark-blue);
}

.blog-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.blog-category-tag {
    font-family: var(--font-button);
    font-size: 14px;
    font-weight: 900;
    color: var(--dark-blue);
    background: white;
    border: 1px solid #89C5EE;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.blog-post-card:hover .blog-category-tag {
    background: white;
    border-color: #89C5EE;
    color: var(--dark-blue);
}

.blog-post-date {
    font-family: var(--font-content);
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 11px;
    font-weight: 500;
    transition: color 0.4s ease;
    text-align: center;
}

.blog-post-card:hover .blog-post-date {
    color: var(--dark-blue);
}

.blog-post-excerpt {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-blue);
    font-weight: 200;
    margin-bottom: 10px;
    transition: color 0.4s ease;
    flex-grow: 1;
    text-align: center;
}

.blog-post-card:hover .blog-post-excerpt {
    color: var(--dark-blue);
}

.blog-post-cta {
    margin-top: auto;
    width: 100%;
}

.blog-post-cta .btn-primary-custom {
    width: 100%;
    text-align: center;
    display: block;
    border: 2.25px solid #EECDAF;
    background: white;
    color: var(--dark-blue);
}

.blog-post-card:hover .blog-post-cta .btn-primary-custom {
    border: 0.75px solid var(--light-gold);
    background: radial-gradient(68.46% 61.89% at 50% 50%, var(--gradient-light) 0%, var(--gradient-dark) 100%);
    color: #000;
}

.blog-pagination {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    color: #969696;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 28px;
    transition: color 0.3s ease;
    line-height: 1;
}

.blog-pagination .page-numbers.current {
    background: transparent;
    color: var(--dark-blue);
}

.blog-pagination .page-numbers:hover:not(.current) {
    background: transparent;
    color: var(--dark-blue);
}

/* Previous button */
.blog-pagination a.page-numbers.prev,
.blog-pagination .prev.page-numbers {
    padding: 15px;
    border: 1.5px solid #EECDAF;
    border-radius: 5px;
    background: transparent;
    color: var(--dark-blue);
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 45px;
    height: 45px;
    font-weight: bold;
    cursor: pointer;
}

.blog-pagination a.page-numbers.prev:hover {
    background: transparent;
    border-color: var(--dark-blue);
    color: var(--dark-blue);
}

.blog-pagination span.page-numbers.prev {
    padding: 15px;
    border: 1.5px solid #EECDAF;
    border-radius: 5px;
    background: transparent;
    color: #969696;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 45px;
    height: 45px;
    font-weight: bold;
    cursor: default;
    opacity: 0.5;
}

/* Next button - always visible and styled */
.blog-pagination a.page-numbers.next,
.blog-pagination .next.page-numbers {
    padding: 15px;
    border: 1.5px solid #EECDAF;
    border-radius: 5px;
    background: var(--dark-blue);
    color: white;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 45px;
    height: 45px;
    font-weight: bold;
    cursor: pointer;
}

.blog-pagination a.page-numbers.next:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
}

.blog-pagination span.page-numbers.next {
    padding: 15px;
    border: 1.5px solid #EECDAF;
    border-radius: 5px;
    background: transparent;
    color: #969696;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 45px;
    height: 45px;
    font-weight: bold;
    cursor: default;
    opacity: 0.5;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer {
    background-image: url('/wp-content/uploads/2025/10/Rectangle-555.png');
    color: white;
    padding: 60px 0 30px;
}

/* Footer Banner */
.footer-banner {
    width: 100%;
    margin-bottom: 0;
}

.footer-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-row {
    padding: 41px 0 25px 0;
}

/* Contact Information */
.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.footer-contact-item:last-child {
	align-items: flex-start;
}

.footer-hours{
	padding-top: 30px;
}

.footer-contact-item i {
    width: 20px;
    margin-right: 10px;
    color: var(--light-gold);
}

.footer-contact-link, .footer-contact-item span {
    color: white;
    text-decoration: none;
	font-family: var(--font-content);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
    transition: color 0.3s ease;
	max-width: 170px;
}

.footer-contact-item a{
    max-width: 220px;
}

.footer-contact-link:hover {
    color: var(--light-gold);
    text-decoration: none;
}
/* Footer Menu Titles */
.footer-menu-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
	font-weight: 400;
    letter-spacing: 1px;

}

/* Footer Menu Lists */
.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 10px;
}

.footer-menu-list li a {
    color: white;
    text-decoration: none;
    font-family: var(--font-content);
    font-size: 16px;
	font-weight: 400;
	line-height: normal;

    transition: color 0.3s ease;
}

.footer-menu-list li a:hover {
    color: var(--light-gold);
    text-decoration: none;
}

/* Review Logos */
.footer-reviews-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-review-logo img {
    width: auto;
}


/* Footer Bottom Content - Single Row with Flexbox */
.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
	padding-bottom: 65px;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* LMH Text */
.footer-lmh-text {
	color: white;
    font-size: 14px;
	font-family: var(--font-content);
	font-weight: 400;
}

.footer-lmh-text a {
    color: var(--light-gold);
    text-decoration: none;
}

.footer-lmh-text a:hover {
    text-decoration: underline;
}

/* Copyright */
.footer-copyright {
    color: white;
    font-size: 14px;
	font-family: var(--font-content);
	font-weight: 400;
}

/* Legal Links */
.footer-legal-link {
    text-decoration: none;
    transition: color 0.3s ease;
	color: white;
    font-size: 14px;
	font-family: var(--font-content);
	font-weight: 400;
}

.footer-legal-link:hover {
    color: var(--light-gold);
    text-decoration: none;
}

/* Responsive Design */



/* ==========================================================================
   Header Styles
   ========================================================================== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* First Row: Black Bar */
.header-row-black {
    background-color: #000;
    height: 35px;
    display: flex;
    align-items: center;
}

/* Second Row: Hello Bar */
.header-row-hello {
	background-image: url('/wp-content/uploads/2025/09/Frame-427318355-1.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hello-bar-content {
    padding: 5px 0;
}

.hello-bar-link {
    color: var(--dark-blue);
    text-decoration: underline;
    font-weight: 400;
	font-family: var(--font-content);
    font-size: 14px;
    transition: color 0.3s ease;
}

.hello-bar-link:hover {
    color: #000;
    text-decoration: none;
}

/* Third Row: Main Navigation */
.header-row-nav {
    background-image: url('/wp-content/uploads/2025/11/Rectangle-567.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    padding: 0 !important;
    align-items: stretch;
}

/* Home page specific - transparent background */
.home .header-row-nav {
    background-image: none;
    background-color: transparent;
}

.header-row-nav.scrolled {
    background-color: var(--dark-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    margin-right: 0;
    padding: 16px 0;
}


/* Navigation Menu */
.navbar-nav.mx-auto {
    flex-direction: row;
}

.navbar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-collapse{
	justify-content: center;
	width: auto !important;
}

/* No forzar display en desktop; dejar que Bootstrap controle collapse */
#navbar-content {
    height: 100%;
    align-items: stretch;
}



#menu-main-menu{
	gap: 35px;
    align-items: stretch !important;
}

#menu-main-menu li:hover{
    background: radial-gradient(68.46% 61.89% at 50% 50%, #C7DEEE 0%, #89C5EE 100%);
    color: var(--dark-blue);
}

#menu-main-menu li:hover .nav-link{
    color: var(--dark-blue);
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
	font-size: 16px;
	font-family: var(--font-content);
    padding: 8px 15px;
    transition: color 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-row-nav.scrolled .navbar-nav .nav-link {
    color: white;
}

.navbar-nav .nav-link:hover {
    color: var(--light-gold);
}

/* Dropdown Menus */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 36px 0 rgba(61, 61, 61, 0.25);
    display: none;
    border-radius: 0 !important;
    padding: 0 !important;
    position: absolute;
    top: 97%;
    left: 0;
    z-index: 1000;
    background-color: white;
    width: 360px;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu.show {
    display: block;
}

.navbar-nav .dropdown-item {
    padding: 25px 40px;
    font-family: var(--font-content);
    font-size: 16px;
    color: #011331;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--light-gold);
    color: var(--dark-blue);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
}

.navbar-nav .nav-item.dropdown {
    position: relative;
}

/* Phone CTA Button */
.phone-cta-btn {
    padding: 8px 41px;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-row-nav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   Home Hero Section Styles
   ========================================================================== */

.home-hero {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
	margin-top: -127px;
	padding-top: 200px;
}

.home-hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-blue);
    opacity: 0.7;
    z-index: 1;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* Sombra que sigue la forma del PNG */
    filter: drop-shadow(0 4px 36px rgba(199, 199, 199, 0.25));
}

.hero-content {
    padding-left: 40px;
}

.hero-heading {
    margin-bottom: 2rem;
	font-size: 107px;
	line-height: 87px;
	max-width: 88%;
}

.hero-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: normal;
    color: #FEF9F5;
    margin-bottom: 14px;
    font-weight: 300;
}

.hero-text p {
    max-width: 88%;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-bottom-section {
    margin-top: 2rem;
}

.hero-bottom-section .row{
    gap: 10px;
}

.hero-cta {
    margin-right: 20px;
    padding: 12px 46px;
}

/* Hero Review Logos */
.hero-review-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-review-logo {
    display: inline-block;
}

.hero-review-logo img {
    width: auto;
}

/* Responsive Design */


/* ==========================================================================
   Expanded Hero Section Styles
   ========================================================================== */

.expanded-hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.expanded-hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
}

.expanded-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 4px 36px rgba(199, 199, 199, 0.25));
}

.expanded-hero-heading {
    margin-bottom: 0;
    font-size: 107px;
    line-height: 87px;
    padding: 5px 0;
}

.expanded-hero-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: normal;
    color: #FEF9F5;
    margin-bottom: 30px;
    font-weight: 300;
}

.expanded-hero-text p {
    margin-bottom: 1rem;
}

.expanded-hero-text p:last-child {
    margin-bottom: 0;
}

.expanded-hero-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.expanded-hero-review-logo {
    display: inline-block;
}

.expanded-hero-review-logo img {
    width: 100%;
}

.expanded-hero-cta {
    text-align: center;
}

/* ==========================================================================
   Content Block Section Styles
   ========================================================================== */

.content-block-section {
    padding: 80px 0;
}

.content-block-content {
    color: var(--dark-blue);
    max-width: 1200px;
    margin: 0 auto;
}

/* Headings */
.content-block-content h1,
.content-block-content h2,
.content-block-content h3,
.content-block-content h4,
.content-block-content h5,
.content-block-content h6 {
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
	font-family: var(--font-heading);
}

/* H3 and below use button font */
.content-block-content h3,
.content-block-content h4,
.content-block-content h5,
.content-block-content h6 {
/*     font-family: var(--font-button); */
}

.content-block-content h1 {
    font-size: 87px;
}

.content-block-content h2 {
    font-size: 70px;
}

.content-block-content h3 {
    font-size: 50px;
}

.content-block-content h4 {
    font-size: 35px;
}

.content-block-content h5 {
    font-size: 25px;
}

.content-block-content h6 {
    font-size: 20px;
}

/* Paragraphs */
.content-block-content p {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 300;
}

.content-block-content p:last-child {
    margin-bottom: 0;
}

/* Lists */
.content-block-content ul,
.content-block-content ol {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    padding-left: 30px;
    font-weight: 300;
}

.content-block-content li {
    margin-bottom: 0.5rem;
}

/* Links */
.content-block-content a {
    color: var(--dark-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-block-content a:hover {
    color: var(--light-gold);
}

/* Strong and emphasis */
.content-block-content strong,
.content-block-content b {
    font-weight: 600;
}

.content-block-content em,
.content-block-content i {
    font-style: italic;
}

/* ==========================================================================
   Customer Reviews Section Styles
   ========================================================================== */

.customer-reviews-section {
    padding: 80px 0;
}

.customer-reviews-intro {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.customer-reviews-slider-container {
    position: relative;
    padding: 0 50px 60px;
}

.customer-reviews-slider {
    position: relative;
}

.review-slide {
    padding: 0 10px;
}

.review-card {
    background: white;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: all 0.3s ease;
	margin: 30px 0;
}

.review-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.review-date-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.review-date-icon {
    height: auto;
}

.review-date-text {
    font-family: var(--font-content);
    font-size: 16px;
    color: #89C5EE;
    font-weight: 400;
}

.review-content {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    flex-grow: 1;
    font-weight: 200;
}

.review-content p {
    margin-bottom: 0.5rem;
}

.review-content p:last-child {
    margin-bottom: 0;
}

.review-name-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.review-name-text {
    font-family: var(--font-heading);
    font-size: 47px;
    color: var(--dark-blue);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
}

.review-name-icon {
    max-width: 100px;
    height: auto;
}

/* Slider navigation for customer reviews - Slick arrows */
.customer-reviews-slider-container {
    position: relative;
}

.customer-reviews-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.customer-reviews-slider .slick-prev {
    left: calc((100vw - 100%) / -2);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.customer-reviews-slider .slick-next {
    right: calc((100vw - 100%) / -2);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.customer-reviews-slider .slick-arrow:hover {
    background: white;
}

.customer-reviews-slider .slick-arrow:focus {
    outline: none;
    box-shadow: none;
}

.customer-reviews-slider .slick-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Slick dots for customer reviews */
.customer-reviews-slider .slick-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.customer-reviews-slider .slick-list{
    padding: 10px 0;
}



.customer-reviews-slider .slick-dots li {
    width: 40px;
    height: 5px;
    margin: 0;
}

.customer-reviews-slider .slick-dots li button {
    width: 40px;
    height: 5px;
    padding: 0;
    border-radius: 10px;
    background: rgba(98, 98, 98, 0.45);
    border: 2px solid rgba(238, 205, 175, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    line-height: 0;
}

.customer-reviews-slider .slick-dots li button:focus {
    outline: none;
}

.customer-reviews-slider .slick-dots li.slick-active button {
    background: #89C5EE;
    border-color: #89C5EE;
}

/* ==========================================================================
   Services List Section Styles
   ========================================================================== */

.services-list-section {
    padding: 80px 0;
    background: var(--dark-blue);
    background-size: cover;
	background-repeat: no-repeat;
    position: relative;
}

.services-list-section::before {
    content: '';
    position: absolute;
    top: -110px;
    left: 0;
    right: 0;
    height: 116px;
    background: linear-gradient(180deg, 
        rgba(1, 19, 49, 0) 0%,     
        rgba(1, 19, 49, 0.15) 20%,  
        rgba(1, 19, 49, 0.4) 40%,  
        rgba(1, 19, 49, 0.7) 60%,  
        rgba(1, 19, 49, 0.9) 80%,  
        rgba(1, 19, 49, 1) 100%    
    );
    z-index: 10;
    pointer-events: none; 
}

.services-list-section .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    width: 280px;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 2px solid white;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Overlay States */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(1, 19, 49, 0.00) 0%, #011331 100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg, #eecdafc7 66.83%, rgba(238, 205, 175, 0.00) 100%);
}

/* Card Content */
.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
}

/* Normal State (Default) */
.service-card-normal {
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
	justify-content: flex-end;
	align-items: center;
    pointer-events: auto;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.service-card:hover .service-card-normal {
    opacity: 0;
    pointer-events: none;
}

/* Touch/mobile: activar hover via .active */
.service-card.active .service-card-overlay {
    background: linear-gradient(180deg, #eecdafc7 66.83%, rgba(238, 205, 175, 0.00) 100%);
}
.service-card.active .service-card-normal {
    opacity: 0;
    pointer-events: none;
}
.service-card.active .service-card-hover {
    opacity: 1;
    pointer-events: auto;
}

.service-card-title {
    font-family: var(--font-button);
    font-size: 40px;
    color: white;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Hover State */
.service-card-hover {
    position: absolute;
    top: 30px;
    left: 25px;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
	align-items: center;
	justify-content: space-between;
    pointer-events: none;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.service-card:hover .service-card-hover {
    opacity: 1;
    pointer-events: auto;
}

.service-card-title-hover {
    font-family: var(--font-button);
    font-size: 40px;
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-description {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: normal;
    color: var(--dark-blue);
	text-align: center;
	padding-bottom: 20px;
	max-height: 100px;
	overflow-y: auto;
	overflow-x: hidden;
}

.service-card-description p {
    margin-bottom: 0.8rem;
}

.service-card-description p:last-child {
    margin-bottom: 0;
}

/* Custom scrollbar for service description */
.service-card-description::-webkit-scrollbar {
    width: 4px;
}

.service-card-description::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.service-card-description::-webkit-scrollbar-thumb {
    background: var(--light-gold);
    border-radius: 2px;
}

.service-card-description::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

/* Service CTA Buttons */
.service-cta-btn,
.service-cta-btn-hover {
    padding: 8px 40px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-cta-btn:hover {
    background: var(--dark-blue) !important;
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.service-cta-btn-hover {
    border-color: var(--dark-blue);
    color: var(--dark-blue);
}

.service-cta-btn-hover:hover {
    background: var(--dark-blue) !important;
    color: white;
    transform: translateY(-2px);
}

/* Service Card CTA Containers - Fix flicker on hover */
.service-card-cta-normal,
.service-card-cta-hover {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    margin-top: auto;
}

.service-card-cta-normal a,
.service-card-cta-hover a {
    pointer-events: auto;
    position: relative;
    z-index: 4;
    display: inline-block;
    /* Prevenir que el cambio de background cause flicker */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Main CTA */
.services-main-cta {
    padding: 11px 40px;
}





/* Aloha Section Styles */
.aloha-section {
    padding: 60px 0;
}

.aloha-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.aloha-image {
    width: 70%;
    animation: perspectiveFlip 4s ease-out infinite;
    transform-origin: center center;
}

@keyframes perspectiveFlip {
    0% {
        transform: perspective(1000px) rotateX(75deg) scaleY(0.3);
        opacity: 0.7;
    }
    50% {
        transform: perspective(1000px) rotateX(0deg) scaleY(1);
        opacity: 1;
    }
    100% {
        transform: perspective(1000px) rotateX(75deg) scaleY(0.3);
        opacity: 0.7;
    }
}

.aloha-section .first-line {
    text-align: right;
}

/* ==========================================================================
   Internal Hero Section Styles
   ========================================================================== */

.internal-hero {
    position: relative;
    max-height: 364px;
    height: 364px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.internal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(1, 19, 49, 0.00) 0%, #011331 100%);
    z-index: 1;
}

.internal-hero .container {
    position: relative;
    z-index: 2;
}

.internal-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.internal-hero-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 1.1;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
}

/* ==========================================================================
   Contact Hero Styles
   ========================================================================== */

.contact-hero {
    position: relative;
    max-height: 364px;
    height: 364px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(1, 19, 49, 0.00) 0%, #011331 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.contact-hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-left-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
    text-align: center;
}

.contact-hero-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.contact-hero-info-title {
    font-family: var(--font-button);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.contact-hero-info-content {
    font-family: var(--font-content);
    font-size: 18px;
    line-height: 1.6;
    color: white;
    font-weight: 500;
    text-align: center;
}

.contact-hero-info-content p {
    margin-bottom: 0.5rem;
}

.contact-hero-info-content p:last-child {
    margin-bottom: 0;
}

.contact-hero-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 1.1;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.contact-hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-hero-right-images {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-hero-image-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-image-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Internal Hero Logo and Van Styles
   ========================================================================== */

.internal-hero-logo-van {
    position: relative;
    max-height: 364px;
    height: 364px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.internal-hero-logo-van-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(1, 19, 49, 0.00) 0%, #011331 100%);
    z-index: 1;
}

.internal-hero-logo-van .container {
    position: relative;
    z-index: 2;
}

.internal-hero-logo-van-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.internal-hero-logo-van-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 1.1;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
}

.internal-hero-logo-van-images {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-logo-wrapper {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 10;
    max-width: 400px;
    width: 100%;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%) translateY(30%);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(30%);
        opacity: 1;
    }
}

.hero-van-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(30%);
    z-index: 11;
    max-width: 450px;
    width: 100%;
    animation: slideInFromRight 1.2s ease-out forwards;
}

.hero-van {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Single Post Hero Styles
   ========================================================================== */

.single-post-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 80px 0;
}

.single-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 19, 49, 0.85) 0%, rgba(1, 19, 49, 0.00) 50%, rgba(1, 19, 49, 0.85) 100%);
    z-index: 1;
}

.single-post-hero .container {
    position: relative;
    z-index: 2;
}

.single-post-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.single-post-hero-title-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.single-post-hero-subtitle-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.single-post-hero-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 25px;
}

.single-post-hero-top-row > * {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-post-hero-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.single-post-category-tag {
    font-family: var(--font-button);
    font-size: 14px;
    font-weight: 900;
    color: var(--dark-blue);
    background: white;
    border: 1px solid #89C5EE;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.4s ease;
    text-transform: none;
}

.category-separator {
    display: none;
}

.single-post-hero-center-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-post-hero-center-image img {
    max-width: 100%;
    height: auto;
}

.single-post-hero-date {
    font-family: var(--font-content);
    font-size: 16px;
    color: white;
    font-weight: 400;
}

.single-post-hero-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 87px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
    max-width: 777px;
    text-align: center;
    padding-top: 7px;
    background-image: url('/wp-content/uploads/2025/11/Rectangle-3969.png');
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.single-post-hero-subtitle {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin-bottom: 15px;
    max-width: 777px;
    text-align: center;
    font-weight: 400;
}

.single-post-hero-subtitle p {
    margin-bottom: 0.5rem;
}

.single-post-hero-subtitle p:last-child {
    margin-bottom: 0;
}

.single-post-hero-cta {
    margin-top: 0;
}

.single-post-hero-van-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(30%);
    z-index: 11;
    max-width: 450px;
    width: 100%;
    animation: slideInFromRight 1.2s ease-out forwards;
}

.single-post-hero-van {
    width: 100%;
    height: auto;
    display: block;
}

.back-to-blog-section {
    background: white;
}

.single-post-back-to-blog {
    padding: 30px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.back-to-blog-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 39px;
    color: var(--dark-blue);
    font-weight: normal;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.back-to-blog-link:hover {
    opacity: 0.7;
}

.back-to-blog-link svg {
    flex-shrink: 0;
}

.post-content-section {
    padding: 20px 0 80px 0;
    background: white;
    position: relative;
    background-image: url('/wp-content/uploads/2025/12/Yellow-Hibiscus-4.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto;
}

.post-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.post-sidebar {
    flex: 0 0 25%;
    max-width: 25%;
}

.post-sidebar-inner {
    background: var(--dark-blue);
    border-radius: 4px;
    box-shadow: 0 3px 9px 0 rgba(139, 139, 139, 0.30);
    padding: 56px 20px 32px 20px;
    max-width: 288px;
    margin-bottom: 20px;
}

.post-sidebar-inner:last-child {
    margin-bottom: 0;
    position: sticky;
    top: 20px;
}

.post-sidebar-title {
    font-family: var(--font-heading);
    font-size: 68px;
    color: white;
    margin-bottom: 30px;
    line-height: 40px;
    text-transform: uppercase;
}

.post-sidebar .sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-sidebar .sidebar-menu-list li {
    margin-bottom: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid white;
}

.post-sidebar .sidebar-menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-sidebar .sidebar-menu-list li a {
    font-family: var(--font-content);
    font-size: 24px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.post-sidebar .sidebar-menu-list li a:hover {
    opacity: 0.7;
}

.post-main-content {
    flex: 0 0 75%;
    max-width: 75%;
    font-family: var(--font-content);
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-blue);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
}

.post-main-content * {
    box-sizing: border-box;
    max-width: 100%;
}

.post-main-content p {
    margin-bottom: 1.5rem;
    font-size: 15px;
}

.post-main-content a {
    color: #89C5EE;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.post-main-content a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.post-main-content ul,
.post-main-content ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.post-main-content li {
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.post-main-content ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.post-main-content ul li::before {
    content: '•';
    color: #89C5EE;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.post-main-content ol li {
    list-style: decimal;
}

.post-main-content ol li::marker {
    color: #89C5EE;
}

.post-main-content img {
    border-radius: 4px;
    box-shadow: 0 4px 9px 0 rgba(80, 80, 80, 0.25);
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    display: block;
}

.post-main-content .post-share-icon img {
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: none !important;
    height: 18px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
}

/* Post CTA Wrapper */
.post-cta-wrapper {
    border-radius: 74px;
    width: 100%;
    background: var(--dark-blue);
    box-shadow: 0 3px 9px 0 rgba(139, 139, 139, 0.30);
    padding: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.post-cta-text {
    font-family: var(--font-heading);
    font-size: 56px !important;
    text-transform: uppercase;
    color: white !important;
    margin: 0 !important;
    flex: 1;
}

.post-cta-button {
    flex-shrink: 0;
    color: var(--dark-blue) !important;
}

.post-cta-button:hover {
    color: var(--dark-blue) !important;
}

.post-main-content iframe,
.post-main-content video,
.post-main-content embed,
.post-main-content object {
    max-width: 100%;
    height: auto;
}

.post-main-content table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    overflow-wrap: break-word;
}

.post-main-content h2,
.post-main-content h3,
.post-main-content h4 {
    color: var(--dark-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-main-content h2 {
    font-family: var(--font-heading);
    font-size: 87px;
    line-height: 70px;
    text-transform: uppercase;
}

.post-main-content h3 {
    font-family: var(--font-content);
    font-size: 30px;
    font-weight: 500;
}

.post-main-content h4 {
    font-family: var(--font-heading);
    font-size: 28px;
}

.post-main-content blockquote {
    background: var(--dark-blue);
    border-radius: 4px;
    padding: 22px 35px;
    padding-top: 70px;
    box-shadow: 0 3px 9px 0 rgba(139, 139, 139, 0.30);
    margin: 1.5rem 0;
    border: none;
    position: relative;
}

.post-main-content blockquote::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 22px;
    width: 55px;
    height: 38px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='55' height='38' viewBox='0 0 55 38' fill='none'%3E%3Cpath d='M44.8617 0H55L43.341 38H23.0645L44.8617 0ZM21.7972 0H31.9355L20.2765 38H0L21.7972 0Z' fill='%23EECDAF'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.post-main-content blockquote p {
    font-family: var(--font-heading);
    font-size: 56px;
    color: white;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.post-main-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Post Social Share */
.post-social-share {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
}

.post-share-label {
    font-family: var(--font-content);
    font-size: 27px !important;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 !important;
}

.post-share-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-share-icon {
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.post-share-icon:hover {
    opacity: 0.7;
}

.post-share-icon img {
    height: 18px;
    width: auto;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: block;
}

/* ==========================================================================
   More Reading Section Styles
   ========================================================================== */

.more-reading-section {
    padding: 66px 0;
    background-image: url('/wp-content/uploads/2025/11/Rectangle-3969.png');
    background-repeat: repeat;
    background-position: center;
}

.more-reading-title {
    font-family: var(--font-heading);
    font-size: 87px;
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-bottom: 0;
}

/* ==========================================================================
   Residential Hero Styles
   ========================================================================== */

.residential-hero {
    position: relative;
    min-height: 600px;
    overflow: visible;
}

.residential-hero-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/12/Frame-1000001895-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.residential-hero-bottom-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--dark-blue);
    border-radius: 0 500px 0 0;
    z-index: 2;
}

.residential-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.residential-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.residential-hero-left {
    display: flex;
    flex-direction: column;
}

.residential-hero-text-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.residential-hero-text-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: var(--font-content);
    font-size: 16px;
}

.residential-hero-text-item svg {
    width: auto;
    height: 22px;
    flex-shrink: 0;
}

.residential-hero-text-item span {
    color: white;
}

.residential-hero-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 87px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    margin-bottom: 180px;
}

.residential-hero-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.residential-hero-content {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: white;
    font-weight: 200;
}

.residential-hero-content p {
    margin-bottom: 1rem;
}

.residential-hero-content p:last-child {
    margin-bottom: 0;
}

.residential-hero-right {
    display: flex;
    flex-direction: column;
    position: relative;
}

.residential-hero-logo-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
}

.residential-hero-logo-item img {
    max-width: 100px;
    height: auto;
}

.residential-hero-main-image {
    position: relative;
    z-index: 3;
}

.residential-hero-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 2px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.residential-hero-van-wrapper {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 30%);
    z-index: 11;
    max-width: 450px;
    width: 100%;
    animation: slideInFromBottom 1.2s ease-out forwards;
}

.residential-hero-van {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes slideInFromBottom {
    0% {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 30%);
        opacity: 1;
    }
}

/* ==========================================================================
   Promotions Section Styles
   ========================================================================== */

.promotions-section {
    padding: 80px 0;
}

.promotion-card {
    padding: 14px;
    border-radius: 4px;
    height: 100%;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.3s ease;
}

.promotion-card:hover {
    background: var(--dark-blue);
}

.promotion-card-inner {
    border: 1px dashed var(--dark-blue);
    padding: 50px 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promotion-card:hover .promotion-card-inner {
    border-color: white;
}

.promotion-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 43px;
    position: relative;
    min-height: 80px;
}

.promotion-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.promotion-logo-default {
    opacity: 1;
}

.promotion-logo-hover {
    opacity: 0;
}

.promotion-card:hover .promotion-logo-default {
    opacity: 0;
}

.promotion-card:hover .promotion-logo-hover {
    opacity: 1;
}

.promotion-offer {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 400;
    padding-top: 25px;
    text-transform: uppercase;
    color: var(--dark-blue);
    text-align: center;
    line-height: 0.8;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.promotion-card:hover .promotion-offer {
    color: white;
}

.promotion-title {
    font-family: var(--font-button);
    font-size: 29px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dark-blue);
    text-align: center;
    margin: 0 0 25px 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.promotion-card:hover .promotion-title {
    color: white;
}

.promotion-content {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    text-align: center;
    flex-grow: 1;
    font-weight: 300;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.promotion-card:hover .promotion-content {
    color: white;
}

.promotion-content p {
    margin-bottom: 0.5rem;
}

.promotion-content p:last-child {
    margin-bottom: 0;
}

.promotion-cta {
    text-align: center;
    margin-top: auto;
    margin-bottom: 25px;
}

.promotion-btn {
    padding: 12px 40px;
}

.promotion-terms {
    font-family: var(--font-content);
    font-size: 11px;
    line-height: 1.4;
    color: var(--dark-blue);
    text-align: center;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.promotion-card:hover .promotion-terms {
    color: white;
}

/* ==========================================================================
   Service Areas Section Styles
   ========================================================================== */

.service-areas-section {
    padding: 0px 0;
}

.service-areas-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.service-areas-reviews {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-area-review-logo img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

.service-areas-title {
    font-family: var(--font-heading);
    font-size: 87px;
    line-height: 70px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.service-areas-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    margin-bottom: 40px;
}

.service-area-location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-bullet {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-image: url('/wp-content/uploads/2025/12/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.location-text {
    font-family: var(--font-button);
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dark-blue);
    line-height: 1.2;
}

.service-areas-cta {
    margin-top: auto;
}

.service-areas-map {
    background-image: url('/wp-content/uploads/2025/10/Rectangle-555.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 0 84px;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 550px;
    border-radius: 0 0 0 84px;
}

/* ==========================================================================
   404 Not Found Page Styles
   ========================================================================== */

.notfound-section {
    background-image: url('/wp-content/uploads/2025/12/404.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0;
    margin-top: 20px; 
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notfound-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.notfound-title {
    font-family: var(--font-heading);
    font-size: 107px;
    line-height: 0.5;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin: 0 0 10px 0;
}

.notfound-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    font-weight: 300;
    margin: 0 0 40px 0;
}

.notfound-text p {
    margin: 0;
    font-family: var(--font-content);

}

.notfound-menu {
    width: 85%;
    display: flex;
    justify-content: center;
}

.notfound-menu .footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 15px 40px;
    text-align: left;
    width: 100%;
}

.notfound-menu .footer-menu-list li a {
    font-family: var(--font-button);
    font-size: 25px;
    color: #89C5EE;
    text-decoration: underline;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.notfound-menu .footer-menu-list li a:hover {
    color: var(--dark-blue);
}

/* ==========================================================================
   Left Image Right Content Section Styles
   ========================================================================== */

.left-image-right-content-section {
    padding: 70px 0 0 0;
    background-image: url('/wp-content/uploads/2025/11/Rectangle-3969.png');
    background-repeat: repeat;
}

.left-image-right-content-section .row {
    align-items: stretch;
}

.left-image-right-content-section .row > div:first-child {
    display: flex;
    align-items: flex-end;
}

.lirc-image-container {
    width: 100%;
    align-self: flex-end;
}

.lirc-image {
    width: 100%;
    height: auto;
    min-height: 616px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.lirc-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lirc-content .title-primary {
    max-width: 546px;
    margin-bottom: 0;
}

.lirc-text {
    font-family: var(--font-content);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    font-weight: 200;
    max-width: 512px;
}

.lirc-text p {
    margin-bottom: 1rem;
}

.lirc-text p:last-child {
    margin-bottom: 0;
}

.lirc-cta {
    margin-top: 15px;
}

/* Responsive: 1200px - 1400px */
@media only screen and (min-width: 1200px) and (max-width: 1280px) {
    .lirc-content h2 {
     font-size: 66px;
     line-height: 50px;
     max-width: 464px !important;
    }
    .lirc-text {
        font-size: 14px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1280px) {
    .lirc-content h2 {
     font-size: 66px;
     line-height: 50px;
     max-width: 464px !important;
    }
    .lirc-text {
        font-size: 14px;
        line-height: 1.3;
    }

    .lirc-cta a{
        font-size: 16px;
    }

    .lirc-image {
        min-height: 100%;
    }
}






/* Responsive: Below 992px */
@media only screen and (max-width: 992px) {
    .left-image-right-content-section .row {
        flex-direction: column-reverse;
    }
    
    .left-image-right-content-section .row > div {
        width: 100%;
    }
    
    .left-image-right-content-section .row > div:first-child {
        justify-content: center;
    }
    

    .lirc-content {
        padding-left: 0;
        padding-top: 40px;
        padding-bottom: 40px;
        align-items: center;
        text-align: center;
    }
    
    .lirc-content .title-primary,
    .lirc-text {
        max-width: 100%;
    }
    
    .lirc-cta {
        text-align: center;
    }
}



.gform_confirmation_message{
    font-family: var(--font-button) !important;
    font-size: 25px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    color: white !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin-top: 20px !important;
}


/* Custom width overrides for address fields row */
/* Street Address - 50% width */
.form-wrapper .gform_wrapper #field_1_6,
.gform-theme--foundation #field_1_6 {
    grid-column: span 6 !important;
}

/* State - 25% width */
.form-wrapper .gform_wrapper #field_1_7,
.gform-theme--foundation #field_1_7 {
    grid-column: span 3 !important;
}

/* Zip Code - 25% width */
.form-wrapper .gform_wrapper #field_1_8,
.gform-theme--foundation #field_1_8 {
    grid-column: span 3 !important;
}