:root {
    --color-primary: #2e8bff;
    --color-primary-hover: #357ABD;
    --color-dark: #0d1b2a;
    --color-dark-hover: #2d3d4f;
    --color-text: #4f5a66;
    --color-text-muted: #666;
    --color-text-light: #fff;
    --color-bg-light: #fff;
    --color-cream: #fff;
    --color-gray: #4f5b66;
    --color-border: #e0dfe0;
    --color-border-light: #fff;
    --font-primary: 'Open Sans', sans-serif;
    --font-title: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', 'Times New Roman', 'Georgia', serif;
    --body-font-size: 16px;
    --body-line-height: 26px;
    --font-size-subtitle: 1.6rem;
    --transition-base: all 0.3s ease;
    --z-header: 1000;
    --z-overlay: 50;
    --z-controls: 100;
    --z-scroll-top: 9999;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.text-white {
    color: #fff;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 26px;
    font-weight: 400;
}
.container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
p { margin-bottom: 1rem; }

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0px;
    background: none;
    line-height: 1.5em;
}

h2, h2.blog-intro-title {
    position: relative;
    display: inline-block;
    color: #4c4848;
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    padding: 10px 0px;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
}

h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    color: #000;
    line-height: 32px;
    font-weight: 400;
}

ul {
    padding-left: 10px;
    margin: 0 0 0 7px;
}

ul li { list-style-type: disc; }
ul li::marker { color: var(--color-primary); }

.header-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(0, 0, 0, 0.24);
}

.logo {
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.homes-text-header {
    font-family: var(--font-serif);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-align: center;
    font-weight: 400;
    margin-top: 2px;
}

.nav-toggler {
    display: flex;
    align-items: center;
}

.hidden-bar-opener {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.hidden-bar-opener .line {
    height: 2px;
    background: var(--color-text-light);
    transition: var(--transition-base);
    display: block;
}

.hidden-bar-opener .big-line { width: 35px; }
.hidden-bar-opener .small-line { width: 25px; }
.hidden-bar-opener:hover .line { background: var(--color-primary); }

.offcanvas {
    background: var(--color-dark);
    width: 350px !important;
    max-width: 100%;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.offcanvas-logo {
    display: flex;
    flex-direction: column;
    color: var(--color-text-light);
}

.offcanvas-logo .logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.offcanvas-logo .homes-text-header {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-align: left;
}

.offcanvas-body { padding: 0; }

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav > li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.mobile-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
}

.mobile-nav > li > a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
}

.mobile-nav > li > a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

.mobile-dropdown li a {
    display: block;
    padding: 12px 25px 12px 40px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.mobile-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
    padding-left: 45px;
}

.mobile-dropdown li:last-child a { border-bottom: none; }
.has-mobile-dropdown.active > a i { transform: rotate(180deg); }
.has-mobile-dropdown.active > .mobile-dropdown { display: block; }

.hero-slider {
    position: relative;
    height: 550px;
    min-height: 600px;
    overflow: hidden;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item { height: 100%; }

#heroCarousel .carousel-item {
    background-color: var(--color-dark);
    transition: transform 0.6s ease-in-out;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
    pointer-events: none;
}

.hero-content-box {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    max-width: 950px;
    z-index: var(--z-overlay);
    text-align: center;
    pointer-events: none;
}

.hero-content-inner {
    padding: 30px;
    background: rgba(0, 0, 0, 0.40);
    border: 10px solid rgba(0, 0, 0, 0.30);
    pointer-events: auto;
    width: 100%;
}

.hero-logo {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 6px;
    margin: 0;
    line-height: 1;
}

.hero-homes {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-light);
    letter-spacing: 12px;
    margin: 10px 0 20px;
    font-weight: 400;
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--color-text-light);
    margin: 0;
    font-weight: 400;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-border-light);
    background: transparent;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: var(--z-controls);
}

.hero-nav-btn:hover { background: rgba(255, 255, 255, 0.2); }
.hero-nav-prev { left: 40px; }
.hero-nav-next { right: 80px; }

.hero-indicators-vertical {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: var(--z-controls);
}

.hero-indicators-vertical button {
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-border-light);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-base);
}

.hero-indicators-vertical button.active { background: var(--color-text-light); }
.hero-indicators-vertical button:hover { background: rgba(255, 255, 255, 0.5); }

.btn-primary {
    background: var(--color-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    font-size: 1rem;
    transition: var(--transition-base);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-hover);
    box-shadow: none;
}

.btn-schedule {
    background: var(--color-primary);
    border: none;
    padding: 14px 28px;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-schedule:hover { background: var(--color-primary-hover); }

.btn-oyl-consult {
    background: var(--color-primary);
    border: none;
    padding: 14px 35px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
}

.btn-oyl-consult:hover { background: var(--color-primary-hover); }

.section-title-wrapper { margin-bottom: 3rem; }

.section-title {
    font-size: 2.5rem;
    margin: 15px 0;
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.title-line {
    width: 100%;
    max-width: 600px;
    height: 2px;
    background: var(--color-dark);
}

.section-title-wrapper-left { margin-bottom: 1.5rem; }
.section-title-left { margin: 15px 0; }

.title-line-dark {
    width: 100%;
    max-width: 450px;
    height: 2px;
    background: var(--color-dark);
}

.section-title-wrapper-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-center { margin: 15px 0; }

.title-line-dark-full {
    width: 100%;
    max-width: 505px;
    height: 2px;
    background: var(--color-cream);
}

.title-line-light {
    width: 100%;
    max-width: 600px;
    height: 2px;
    background: #fff;
}

.process-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.process-content {
    position: relative;
    padding-right: 40px;
}

.process-subtitle { margin-bottom: 0; }

.price-watermark {
    font-size: 60px;
    font-weight: 700;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1em;
    pointer-events: none;
    margin-bottom: 20px;
    text-align: right;
}

.process-description {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 25px;
}

.process-image-wrapper {
    position: relative;
    padding: 20px;
    margin-top: 20px;
}

.image-frame-offset {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: var(--color-dark);
    z-index: 1;
}

.process-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
}

.craftsmanship {
    background: var(--color-bg-light);
    padding: 60px 0 80px;
}

.craftsmanship .title-line-dark { max-width: 600px; }

.gallery-item { overflow: hidden; }

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.craftsmanship-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.craftsmanship-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: var(--transition-base);
}

.craftsmanship-indicators button:hover { border-color: var(--color-primary); }

.craftsmanship-indicators button.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.frame-top-left { top: 0; left: 0; }
.frame-bottom-right { bottom: 0; right: 0; }

.benefits-section {
    background: var(--color-dark);
    color: var(--color-text-light);
    padding: 80px 0;
}

.benefits-title-wrapper { margin-bottom: 1.5rem; }

.benefits-title {
    color: var(--color-cream);
    margin: 20px 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

.benefits-subtitle {
    color: var(--color-cream);
    margin-bottom: 0;
}

.benefits-paragraph { color: var(--color-cream); }
.benefits-checklist li { color: var(--color-cream); }

.benefits-image-wrapper {
    position: relative;
    padding: 25px;
}

.benefits-image-left { padding-right: 40px; }
.benefits-image-right { padding-left: 40px; }

.benefits-image {
    
    position: relative;
    z-index: 2;
}

.benefits-image-frame {
    position: absolute;
    width: 87%;
    height: 85%;
    background: var(--color-cream);
    z-index: 1;
}

.benefits-cta {
    margin-bottom: 0;
    color: var(--color-cream);
}

.kitchens-section {
    background: var(--color-gray);
    color: var(--color-text-light);
    padding: 80px 0;
}

.kitchens-title-wrapper { margin-bottom: 1.5rem; }

.kitchens-title {
    color: var(--color-cream);
    margin: 20px 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

.kitchens-subtitle {
    color: var(--color-cream);
    margin: 0 auto;
    max-width: 750px;
}

.kitchens-paragraph { color: var(--color-cream); }
.benefits-section {
    padding-inline-start: 0;
    margin: 0;
}
.benefits-section li {
    list-style: none;
}
.benefits-section li span {
    color: #2E8BFF;
    margin-right: 15px;
}

.kitchens-image-wrapper {
    position: relative;
    padding: 25px;
}

.kitchens-image-left { padding-right: 40px; }
.kitchens-image-right { padding-left: 40px; }

.kitchens-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.kitchens-image-frame {
    position: absolute;
    width: 87%;
    height: 85%;
    background: var(--color-cream);
    z-index: 1;
}

.kitchens-section .title-line-dark-full { max-width: 590px; }

.suites-section {
    background: #f5f5dc;
    color: #000;
}

.suites-title-wrapper { margin-bottom: 1.5rem; }
.suites-title { margin: 20px 0; }

.suites-subtitle {
    margin: 0 auto;
    max-width: 750px;
}

.suites-paragraph { color: #000; }
.suites-checklist li { color: #000; }

.suites-image-wrapper {
    position: relative;
}

.suites-image {
    width: 100%;
    position: relative;
    z-index: 2;
}

.suites-image-frame {
    position: absolute;
    width: 87%;
    height: 85%;
    background: var(--color-cream);
    z-index: 1;
}

.suites-section .title-line-dark { max-width: 530px; }

.features-section {
    background: var(--color-dark);
    color: var(--color-text-light);
    padding: 80px 0;
}

.features-title-wrapper { margin-bottom: 1.5rem; }

.features-title {
    color: var(--color-cream);
    margin: 20px 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

.features-subtitle {
    color: var(--color-cream);
    margin-bottom: 0;
}

.features-paragraph { color: var(--color-cream); }
.features-checklist {padding-inline-start: 0;}
.features-checklist li { 
    color: var(--color-cream); 
    list-style: none;
}
.features-checklist li span {
    color: #2E8BFF;
    margin-right: 15px;
}
.features-image-wrapper {
    position: relative;
    padding: 25px;
}

.features-image-left { padding-right: 40px; }
.features-image-right { padding-left: 40px; }

.features-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.features-image-frame {
    position: absolute;
    width: 87%;
    height: 85%;
    background: var(--color-cream);
    z-index: 1;
}

.personalize-section {
    background: var(--color-bg-light);
    padding: 80px 0;
}

.personalize-content { padding-right: 40px; }
.personalize-description { margin-bottom: 15px; }

.personalize-highlight {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #000;
    margin-bottom: 25px;
}

.personalize-image-wrapper {
    position: relative;
    padding: 20px;
}

.personalize-image-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: var(--color-dark);
    z-index: 1;
}

.personalize-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
}

.why-choose-section { background: #f5f5dc; }
.why-choose-subtitle { margin-bottom: 20px; }

.why-choose-description {
    max-width: 900px;
    margin: 0 auto 30px;
}

.why-choose-section .title-line-dark { max-width: 800px; }

.mill-branch-section {
    background: var(--color-gray);
    padding: 80px 0;
}

.mill-branch-subtitle {
    margin-bottom: 20px;
    color: var(--color-cream);
}

.mill-branch-pointer { color: var(--color-cream); }

.mill-branch-description {
    margin: 0 auto 15px;
    color: var(--color-cream);
}

.mill-branch-image-wrapper {
    position: relative;
    padding: 25px;
}

.mill-branch-image-left .mill-branch-image-frame {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: var(--color-cream);
    z-index: 1;
}

.mill-branch-image-right .mill-branch-image-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: var(--color-cream);
    z-index: 1;
}

.mill-branch-image {
    position: relative;
    z-index: 2;
    width: 100%;
}

.mill-branch-cta {
    margin-bottom: 0;
    color: var(--color-cream);
}

.mill-branch-section .section-title-center {
    color: var(--color-cream); 
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

.team-section {
    background: var(--color-dark);
    color: var(--color-text-light);
    padding: 80px 0;
}

.team-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 15px 0;
    text-align: center;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

.team-subtitle {
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 0;
}

.team-member-card {
    background: var(--color-bg-light);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member-card:hover { transform: translateY(-5px); }

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

.team-member-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
}

.team-member-info {
    padding: 25px 20px 30px;
    text-align: center;
}

.team-member-name {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0px;
    background: none;
    line-height: 1.5em;
    font-size: 28px;
}

.team-member-role {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #000;
}

.team-member-bio {
    font-size: 16px;
    color: #000;
    line-height: 26px;
    margin: 0;
    min-height: 146px;
}

.blog-section {
    background: var(--color-bg-light);
    padding: 60px 0;
    overflow-x: hidden;
}

.blog-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.blog-card-content {
    background: var(--color-bg-light);
    padding: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    position: relative;
    line-height: 1.6em;
    padding-bottom: 10px;
    font-size: 14px;
    color: #4c4848;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.blog-card-date strong { font-weight: 700; }

.blog-card-title {
    position: relative;
    line-height: 1.8em;
    font-size: 15px;
    color: #0D1B2A;
}

.blog-card-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
}

.blog-card-link:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

.blog-intro-section {
    padding: 20px 30px 30px;
    height: 100%;
    /*display: flex;*/
    flex-direction: column;
    justify-content: flex-start;
}

.blog-intro-line {
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    margin-bottom: 15px;
}

.blog-intro-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    color: #000;
    line-height: 32px;
}

.blog-intro-description {
    font-size: 15px;
    color: #000;
    line-height: 25px;
}

.btn-blog-all {
    background: var(--color-dark);
    border: none;
    color: var(--color-text-light);
    padding: 14px 30px;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.btn-blog-all:hover {
    background: var(--color-dark-hover);
    color: var(--color-text-light);
}

.top-bar-cta {
    background: var(--color-dark);
    padding: 25px 0;
}

.top-bar-cta h3 {
    font-size: 1.4rem;
    font-weight: normal;
    margin: 0;
}

.btn-contact {
    background: var(--color-primary);
    border: none;
    padding: 12px 35px 12px 20px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    border-radius: 0;
}

.btn-contact i {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-contact:hover { background: var(--color-primary-hover); }
#contact h3 {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #4c4848;
    line-height: 1.2em;
    margin-bottom: 20px;
}
#contact .text-center {
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}
#contact .text-center p {
    position: relative;
    font-size: 15px;
    line-height: 1.8em;
}
#contact .bottom {
    text-align: right;
}
#contact h2.contact-us-title {
    position: relative;
    font-size: 40px;
    color: #e0e0e0;
    line-height: 1em;
    font-weight: 700;
    border: none;
}
.contact-footer { background: var(--color-bg-light); }
.contact-footer ul li { list-style: none; }

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--color-dark);
    line-height: 1;
}

.homes-text {
    font-size: 1rem;
    letter-spacing: 8px;
    font-weight: normal;
    margin-top: 5px;
}

.contact-us-title {
    font-size: 3rem;
    color: var(--color-border);
    font-weight: bold;
    letter-spacing: 2px;
    text-align: right;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.4em;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #000;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--color-primary); }
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 0;
}
.contact-info li {
    margin-bottom: 12px;
    color: #000;
    font-size: 15px;
}

.default-form.contact-form .col-md-6 {
    display: inline-block;
    float: left;
}
.mc-field-group {
    padding: 0 0px 10px 0;
}
.default-form input[type="text"], .default-form input[type="email"], .default-form input[type="password"], .default-form input[type="tel"], .default-form input[type="url"], .default-form select, .default-form textarea {
    display: block;
    width: 100%;
    line-height: 24px;
    height: 46px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    color: #222222;
    background: none;
    border-radius: 2px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.mc-field-group.input-group ul {
    display: flex;
    flex-direction: row;
}
.mc-field-group.input-group ul li {
    display: inline-flex;
    align-items: baseline;
    font-size: 12px;
    font-style: italic;
}
.mc-field-group.input-group ul li input {
    margin-right: 15px;
    width: auto;
}
.optionalParent {
    border: none;
    font-size: 1rem;
    align-items: center;
    border-radius: 0;
    text-align: center;
}
.clear.foot .btn-contact {
    padding: 10px 25px;
}
.footer-bottom {
    background: var(--color-dark);
    color: var(--color-text-light);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 8px 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--color-text-light);
    text-decoration: none;
}
.small {
    font-size: 12px;
}
.footer-bottom a:hover { color: var(--color-primary); }

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 50%;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: var(--z-scroll-top);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
}

.carousel-indicators {
    bottom: 30px;
    display: flex !important;
    justify-content: center !important;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: 1px solid var(--color-border);
    background: transparent;
    opacity: 1 !important;
    margin: 0 4px !important;
    padding: 0 !important;
    transform: none !important;
}

.carousel-indicators [data-bs-target] { box-sizing: revert !important; }
.carousel-indicators button.active { transform: none !important; }

@media (max-width: 991px) {
    .hero-content-inner { padding: 40px 60px; }
    .hero-logo { font-size: 2.5rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-nav-prev { left: 20px; }
    .hero-nav-next { right: 60px; }
    .hero-indicators-vertical { right: 20px; }
    .process-content { padding-right: 0; }
    .process-image-wrapper { margin-top: 40px; }
    .section-title-left { font-size: 2rem; }
    .price-watermark { font-size: 4rem; }
    .gallery-item img { height: 250px; }
    .benefits-section { padding: 60px 0; }
    .benefits-title { font-size: 2.2rem; }
    .benefits-subtitle { font-size: 1.2rem; }
    .benefits-image { height: 300px; }
    .benefits-image-left,
    .benefits-image-right { padding: 20px; }
    .team-section-title { font-size: 2rem; }
    .team-member-image img { height: 280px; }
    .blog-intro-section { padding: 20px; }
    .blog-intro-title { font-size: 1.8rem; }
    .blog-card { min-height: 380px; }
    .personalize-content { padding-right: 0; }
    .personalize-image-wrapper { margin-top: 40px; }
}

@media (max-width: 768px) {
    .hero-slider { height: 60vh; min-height: 400px; }
    .hero-content-inner { padding: 30px 40px; }
    .hero-logo { font-size: 2rem; }
    .hero-homes { font-size: 0.8rem; letter-spacing: 5px; }
    .hero-tagline { font-size: 0.9rem; }
    .hero-nav-btn { width: 40px; height: 40px; }
    .hero-nav-prev { left: 15px; }
    .hero-nav-next { right: 50px; }
    .hero-indicators-vertical { right: 15px; }
    .hero-indicators-vertical button { width: 12px; height: 12px; }
    .section-title { font-size: 1.8rem; }
    .section-title-left,
    .section-title-center { font-size: 1.8rem; }
    .process-section { padding: 50px 0; }
    .price-watermark { font-size: 3rem; }
    .process-image-wrapper { padding: 15px; }
    .image-frame-offset { width: calc(100% - 30px); height: calc(100% - 30px); }
    .gallery-item img { height: 220px; }
    .benefits-section { padding: 50px 0; }
    .benefits-title { font-size: 1.8rem; }
    .benefits-title br { display: none; }
    .benefits-subtitle { font-size: 1.1rem; }
    .benefits-paragraph { font-size: 0.9rem; }
    .benefits-image { height: 250px; }
    .benefits-image-left,
    .benefits-image-right { padding: 15px; }
    .team-section { padding: 50px 0; }
    .team-section-title { font-size: 1.6rem; }
    .team-subtitle { font-size: 1rem; }
    .team-member-image img { height: 260px; }
    .team-member-name { font-size: 1.4rem; }
    .team-member-card { width: 50%; margin: 0 auto; }
    .blog-section { padding: 40px 0; }
    .blog-intro-title { font-size: 1.6rem; }
    .blog-intro-subtitle { font-size: 1rem; }
    .blog-card { min-height: 350px; }
    .blog-card-title { font-size: 0.9rem; }
    .personalize-section { padding: 50px 0; }
    .personalize-image-wrapper { padding: 15px; }
    .personalize-image-frame { width: calc(100% - 30px); height: calc(100% - 30px); }
    .why-choose-image { height: 250px; }
    .mill-branch-section { padding: 50px 0; }
    .mill-branch-image { height: 250px; }
    .mill-branch-image-wrapper { padding: 15px; }
}

@media (max-width: 576px) {
    .logo-main { font-size: 1.4rem; }
    .homes-text-header { font-size: 0.5rem; letter-spacing: 3px; }
    .hidden-bar-opener .big-line { width: 30px; }
    .hidden-bar-opener .small-line { width: 20px; }
    .offcanvas { width: 300px !important; }
    .mobile-nav > li > a { padding: 14px 20px; font-size: 0.9rem; }
    .mobile-dropdown li a { padding: 12px 20px 12px 35px; }
    .hero-content-box { width: 90%; }
    .hero-content-inner { padding: 25px 20px; }
    .hero-logo { font-size: 1.6rem; letter-spacing: 2px; }
    .hero-homes { font-size: 0.7rem; letter-spacing: 3px; }
    .hero-tagline { font-size: 0.85rem; }
    .section-title-left,
    .section-title-center { font-size: 1.5rem; }
    .title-line-dark { max-width: 100%; }
    .process-section { text-align: center; }
    .process-section .section-title-wrapper-left { text-align: center; }
    .process-section .title-line-dark { margin: 0 auto; }
    .process-section .btn { display: inline-block; }
    .price-watermark { font-size: 2.5rem; padding: 20px 0; }
    .gallery-item img { height: 200px; }
    .personalize-section { text-align: center; }
    .personalize-section .section-title-wrapper-left { text-align: center; }
    .personalize-section .title-line-dark { margin: 0 auto; }
    .personalize-section .btn { display: inline-block; }
    .mill-branch-pointer { margin-bottom: 10px; }
}

@media (max-width: 575px) {
    .suites-content {
        padding: 12px;
    }
        .team-member-card {
        width: 100%;
        margin: 0 auto;
    }
    .top-bar-cta h3 {
        width: 40%;
        justify-content: center
    }
    .top-bar-cta .btn-contact {
        width: 60%;
        justify-content: center
    }
}