@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.site-header {
    width: 100%;
}

/* Top info bar */
.top-bar {
    background-color: #02A5FE;
    color: #ffffff;
    text-align: center;
    padding: 16px 20px;
}

.top-bar p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Main header row */
.main-header {
    background-color: #FEFEFE;
    border-bottom: 2px solid #D5F6FD;
}

.header-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    min-height: 96px;
    gap: 20px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    padding-left: 223px;
    min-height: 60px;
}

.logo-img {
    position: absolute;
    left: 40px;
    top: -35px;
    height: 150px;
    width: auto;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 26px;
    color: #02A5FE;
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #4C3901;
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #02A5FE;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.main-nav a:hover {
    background-color: #D5F6FD;
}

.main-nav a.active {
    background-color: #D5F6FD;
}

/* Header buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #02A5FE;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle svg {
    width: 26px;
    height: 26px;
}

.nav-toggle .icon-close {
    display: none;
}

.nav-toggle.open .icon-menu {
    display: none;
}

.nav-toggle.open .icon-close {
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 22px;
    border-radius: 12px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.97);
}

.btn-outline {
    color: #02A5FE;
    border: 2px solid #02A5FE;
    background-color: #ffffff;
}

.btn-outline:hover {
    background-color: #D5F6FD;
}

.btn-filled {
    color: #ffffff;
    background-color: #01A4FF;
    border: 2px solid #01A4FF;
    box-shadow: 0px 2px 4px -2px #01A4FF4D, 0px 4px 6px -1px #01A4FF4D;
}

.btn-filled:hover {
    background-color: #0193e6;
    box-shadow: 0px 6px 14px -2px #01A4FF80, 0px 8px 16px -1px #01A4FF4D;
}

.phone-icon {
    flex-shrink: 0;
}

/* ===== Home Hero Banner ===== */

.hero {
    position: relative;
    background: url('../img/home-banner.jpg') center center / cover no-repeat;
    padding: 110px 40px 160px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 47, 102, 0.95) 0%, rgba(2, 47, 102, 0.75) 50%, rgba(2, 47, 102, 0.3) 100%);
    opacity: 0.4;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    max-width: 620px;
    padding-top: 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #02A5FE;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 58px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 36px;
}

.btn-hero-primary,
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 30px;
    border-radius: 12px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-hero-primary:hover,
.btn-hero-outline:hover {
    transform: translateY(-3px);
}

.btn-hero-primary:active,
.btn-hero-outline:active {
    transform: translateY(-1px) scale(0.97);
}

.btn-hero-primary {
    background-color: #02A5FE;
    color: #ffffff;
    box-shadow: 0px 10px 30px rgba(2, 165, 254, 0.55);
}

.btn-hero-primary:hover {
    background-color: #0193e6;
    box-shadow: 0px 14px 34px rgba(2, 165, 254, 0.7);
}

.btn-hero-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tags span {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
}

/* Hero form card */
.hero-form-card {
    background-color: #02A5FE;
    border-radius: 20px;
    padding: 36px;
    width: 440px;
    flex-shrink: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-form-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    margin-bottom: 26px;
}

.hero-form-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-form-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 8px;
}

.hero-form input {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #02699e;
    margin-bottom: 20px;
}

.hero-form input::placeholder {
    color: #8fd2f5;
}

.hero-form-submit {
    display: block;
    width: 100%;
    padding: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-form-submit:hover {
    background-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-form-submit:active {
    transform: translateY(0) scale(0.98);
}

.hero-form-alt {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-form-alt a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 90px;
    line-height: 0;
    z-index: 1;
}

/* ===== Locations bar ===== */

.locations-bar {
    background-color: #FEFEFE;
    padding: 30px 40px 10px;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFFFFF;
    border: 1px solid #D5F6FD;
    box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.051);
    color: #02A5FE;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 12px 22px;
    border-radius: 30px;
}

/* ===== Gallery ===== */

.gallery {
    background-color: #FEFEFE;
    padding: 30px 40px 60px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
}

.gallery-image {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 24px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FEFEFE;
    border: none;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    color: #02A5FE;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.gallery-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-arrow-left {
    left: 24px;
}

.gallery-arrow-right {
    right: 24px;
}

.gallery-caption {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #02A5FE;
    margin-top: 24px;
    margin-bottom: 14px;
}

.gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D5F6FD;
    cursor: pointer;
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.gallery-dots .dot:hover {
    background-color: #9FDDF7;
    transform: scale(1.2);
}

.gallery-dots .dot.active {
    width: 10px;
    height: 10px;
    background-color: #02A5FE;
}

/* ===== Services ===== */

.services {
    background-color: #FEFEFE;
    padding: 70px 40px 100px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #D5F6FD;
    color: #4C3901;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.services-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 42px;
    color: #02A5FE;
    margin-bottom: 16px;
}

.services-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: #02A5FEB2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: #FEFEFE;
    border: 1.5px solid #D5F6FD;
    border-radius: 20px;
    padding: 34px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #9FDDF7;
    box-shadow: 0px 12px 24px -4px rgba(2, 165, 254, 0.18), 0px 4px 8px -2px rgba(2, 165, 254, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D5F6FD;
    color: #02A5FE;
    border-radius: 16px;
    margin-bottom: 22px;
    box-shadow: 0px 2px 4px -2px #0000001A, 0px 4px 6px -1px #0000001A;
    transition: transform 0.25s ease;
}

.service-icon--solid {
    background-color: #02A5FE;
    color: #ffffff;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #02A5FE;
    margin-bottom: 12px;
}

.service-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #9FC9DE;
    margin-bottom: 22px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #02A5FE;
    transition: color 0.2s ease;
}

.service-link svg {
    transition: transform 0.2s ease;
}

.service-link:hover {
    color: #0193e6;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===== How It Works ===== */

.how-it-works {
    background-color: #02A5FE;
    padding: 90px 40px 100px;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-header h2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 14px;
}

.how-it-works-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.18);
}

.step-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1CACFA;
    color: #ffffff;
    border-radius: 14px;
    box-shadow: 0px 2px 4px -2px #0000001A, 0px 4px 6px -1px #0000001A;
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.35);
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.how-it-works-cta {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    background-color: #ffffff;
    color: #02A5FE;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 20px 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 10px -6px #022F6666, 0px 20px 25px -5px #022F6666;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-it-works-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.how-it-works-cta:active {
    transform: translateY(-1px) scale(0.98);
}

/* ===== What We Carry ===== */

.what-we-carry {
    background-color: #FEFEFE;
    padding: 90px 40px 100px;
}

.wwc-container {
    max-width: 1400px;
    margin: 0 auto;
}

.wwc-header {
    text-align: center;
    margin-bottom: 36px;
}

.wwc-badge {
    background-color: #FBF2CF;
}

.wwc-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 42px;
    color: #02A5FE;
}

.wwc-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.wwc-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #D5F6FD;
    color: #02A5FE;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 26px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wwc-tab:hover:not(.active) {
    background-color: #bdeefb;
}

.wwc-tab.active {
    background-color: #02A5FE;
    color: #ffffff;
    box-shadow: 0px 8px 16px -4px rgba(2, 165, 254, 0.5);
}

.wwc-tab:active {
    transform: scale(0.97);
}

.wwc-card {
    display: flex;
    border: 1.5px solid #D5F6FD;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.wwc-image-wrap {
    flex: 0 0 46%;
}

.wwc-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.wwc-content {
    flex: 1;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wwc-content-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.wwc-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D5F6FD;
    color: #02A5FE;
    border-radius: 14px;
}

.wwc-content-header h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 30px;
    color: #02A5FE;
}

.wwc-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #02A5FEB2;
    margin-bottom: 26px;
}

.wwc-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.wwc-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1C8FDB;
}

.check-dot {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #02A5FE;
    color: #ffffff;
    border-radius: 50%;
}

.wwc-cta {
    display: block;
    text-align: center;
    background-color: #02A5FE;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0px 8px 10px -6px #022F6666, 0px 20px 25px -5px #022F6666;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wwc-cta:hover {
    transform: translateY(-3px);
}

.wwc-cta:active {
    transform: translateY(-1px) scale(0.98);
}

/* ===== Why Yoder Cabins ===== */

.why-yoder {
    background-color: #D5F6FD;
    padding: 90px 40px;
}

.why-yoder-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.why-yoder-left {
    flex: 1;
    min-width: 0;
}

.why-yoder-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #02A5FE;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.why-yoder-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    color: #02A5FE;
    margin-bottom: 20px;
}

.why-yoder-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #02A5FEB2;
    margin-bottom: 36px;
}

.why-yoder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-yoder-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: #FEFEFE;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(2, 79, 138, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-yoder-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(2, 79, 138, 0.12);
}

.why-yoder-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D5F6FD;
    color: #02A5FE;
    border-radius: 12px;
}

.why-yoder-icon--solid {
    background-color: #02A5FE;
    color: #ffffff;
}

.why-yoder-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #02A5FE;
    margin-bottom: 4px;
}

.why-yoder-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #02A5FEB2;
}

.why-yoder-right {
    position: relative;
    flex: 1;
    min-width: 0;
}

.why-yoder-image {
    display: block;
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 24px;
}

.why-yoder-float-badge {
    position: absolute;
    left: 30px;
    bottom: -30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: #02A5FE;
    color: #ffffff;
    padding: 18px 26px;
    border-radius: 16px;
    box-shadow: 0px 8px 10px -6px #022F6666, 0px 20px 25px -5px #022F6666;
}

.why-yoder-float-badge strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.why-yoder-float-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Our Work ===== */

.our-work {
    background-color: #02A5FE;
    padding: 90px 40px 100px;
}

.our-work-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.our-work-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.our-work-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 28px;
}

.our-work-notice {
    display: inline-block;
    background-color: #FBF2CF;
    color: #4C3901;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.our-work-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.work-filter-all {
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 10px;
    cursor: pointer;
    text-underline-offset: 4px;
}

.work-filter-all.active {
    text-decoration: underline;
}

.work-filter {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.work-filter:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.work-filter.active {
    background-color: rgba(255, 255, 255, 0.32);
}

.work-filter:active,
.work-filter-all:active {
    transform: scale(0.96);
}

.our-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.work-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.work-item img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.work-item.hidden {
    display: none;
}

/* ===== Locations ===== */

.locations {
    background-color: #FEFEFE;
    padding: 90px 40px 100px;
}

.locations-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.locations-header {
    text-align: center;
    margin-bottom: 50px;
}

.locations-badge {
    display: inline-block;
    background-color: #02A5FE;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.locations-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 42px;
    color: #02A5FE;
    margin-bottom: 16px;
}

.locations-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #02A5FEB2;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.location-card {
    background-color: #02A5FE;
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(2, 165, 254, 0.3);
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.location-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 14px;
}

.location-card-header h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 26px;
    color: #ffffff;
}

.location-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.location-btn-outline {
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
}

.location-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.location-btn-filled {
    color: #ffffff;
    background-color: #0576B8;
}

.location-btn-filled:hover {
    background-color: #04618f;
    transform: translateY(-2px);
}

.location-btn:active {
    transform: translateY(0) scale(0.97);
}

/* ===== FAQ ===== */

.faq {
    background-color: #D5F6FD;
    padding: 90px 40px 100px;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 44px;
}

.faq-badge {
    display: inline-block;
    background-color: #02A5FE;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.faq-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 42px;
    color: #02A5FE;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
}

.faq-item {
    background-color: #FEFEFE;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(2, 79, 138, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    padding: 24px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #02A5FE;
    text-align: left;
    cursor: pointer;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #02A5FE;
    color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #02A5FEB2;
}

.faq-footer {
    text-align: center;
}

.faq-footer p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #02A5FE;
    margin-bottom: 20px;
}

.faq-footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-cta-call,
.faq-cta-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 34px;
    border-radius: 16px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-cta-call {
    background-color: #02A5FE;
    color: #ffffff;
    box-shadow: 0px 8px 10px -6px #022F6666, 0px 20px 25px -5px #022F6666;
}

.faq-cta-call:hover {
    background-color: #0193e6;
    transform: translateY(-2px);
}

.faq-cta-text {
    background-color: transparent;
    color: #02A5FE;
    border: 1.5px solid #02A5FE;
}

.faq-cta-text:hover {
    background-color: #FEFEFE;
    transform: translateY(-2px);
}

.faq-cta-call:active,
.faq-cta-text:active {
    transform: translateY(0) scale(0.97);
}

/* ===== Project Form ===== */

.project-form {
    background-color: #FEFEFE;
    padding: 90px 40px 100px;
}

.project-form-container {
    max-width: 1100px;
    margin: 0 auto;
}

.project-form-header {
    text-align: center;
    margin-bottom: 44px;
}

.project-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #02A5FE;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.project-form-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 42px;
    color: #02A5FE;
    margin-bottom: 16px;
}

.project-form-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4A6B85;
}

.project-form-subtitle a {
    color: #02A5FE;
    font-weight: 700;
}

.project-form-card {
    background-color: #FEFEFE;
    border: 1.5px solid #D5F6FD;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(2, 79, 138, 0.08);
}

.project-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #02A5FE;
    margin-bottom: 10px;
}

.form-field label .required {
    color: #02A5FE;
}

.form-field label .optional {
    font-weight: 500;
    text-transform: none;
    color: #8FA8BC;
    font-size: 13px;
    letter-spacing: 0;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
    display: block;
    width: 100%;
    background-color: #EAF7FC;
    border: 1.5px solid #D5F6FD;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #0A4A6E;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8FC3DE;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #02A5FE;
    background-color: #FEFEFE;
}

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

.form-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #8FA8BC;
    margin-bottom: 14px;
}

.form-field input[type="file"] {
    display: block;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #4A6B85;
}

.form-consent {
    background-color: #D5F6FD;
    border-radius: 14px;
    padding: 20px 24px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    text-transform: none;
    color: #04628F;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #02A5FE;
    cursor: pointer;
}

.project-form-submit {
    display: block;
    width: 100%;
    background-color: #4FB6F5;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 20px;
    border: none;
    border-radius: 16px;
    box-shadow: 0px 8px 10px -6px #022F6666, 0px 20px 25px -5px #022F6666;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.project-form-submit:hover {
    background-color: #02A5FE;
    transform: translateY(-2px);
}

.project-form-submit:active {
    transform: translateY(0) scale(0.98);
}

/* ===== Final CTA ===== */

.final-cta {
    background-color: #02A5FE;
    padding: 90px 40px;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
}

.final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.final-cta-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #ffffff;
    padding: 18px 4px;
    transition: opacity 0.2s ease;
}

.final-cta-link:hover {
    opacity: 0.8;
}

.final-cta-call,
.final-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 18px 34px;
    border-radius: 30px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-call {
    background-color: #ffffff;
    color: #02A5FE;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.final-cta-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.final-cta-text {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.final-cta-text:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.final-cta-call:active,
.final-cta-text:active {
    transform: translateY(-1px) scale(0.97);
}

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

.site-footer {
    width: 100%;
}

.footer-cta-bar {
    background-color: #4FB6F5;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-cta-bar p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-cta-call,
.footer-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 30px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-cta-call {
    background-color: #ffffff;
    color: #02A5FE;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.footer-cta-call:hover {
    transform: translateY(-2px);
}

.footer-cta-text {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.footer-cta-text:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.footer-main {
    background-color: #0576B8;
    padding: 60px 40px 50px;
}

.footer-main-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo-badge {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 6px;
}

.footer-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-name {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
}

.footer-brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-tags span {
    background-color: #1C8FDB;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 30px;
}

.footer-serving {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 340px;
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.footer-location-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 16px;
}

.footer-location-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-location-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    margin-top: 8px;
    margin-bottom: 8px;
}

.footer-phone-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-phone-links a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    list-style: disc;
    padding-left: 20px;
}

.footer-links li {
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: opacity 0.2s ease;
}

.footer-legal-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    background-color: #0576B8;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 24px 40px;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   Responsive
   ===================================================== */

/* ---------- Large desktop refinement ---------- */
@media (min-width: 1600px) {
    .hero-title {
        font-size: 64px;
    }

    .services-title,
    .how-it-works-header h2,
    .wwc-title,
    .why-yoder-title,
    .our-work-title,
    .locations-title,
    .faq-title,
    .project-form-title,
    .final-cta-title {
        font-size: 46px;
    }
}

/* ---------- Tablet (<=1100px): tighten grids ---------- */
@media (max-width: 1100px) {
    .header-container,
    .hero-container,
    .locations-container,
    .gallery-container,
    .services-container,
    .how-it-works-container,
    .wwc-container,
    .why-yoder-container,
    .our-work-container,
    .locations-section-container,
    .faq-container,
    .project-form-container,
    .final-cta-container,
    .footer-main-container,
    .footer-cta-bar,
    .footer-bottom-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .header-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-work-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main-container {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-form-card {
        width: 400px;
    }
}

/* ---------- Nav collapses to hamburger (<=960px) ---------- */
/* ---------- Header nav collapses to hamburger (<=1280px) ---------- */
/* Needs a higher breakpoint than the rest of the page: the desktop
   logo + nav links + both header buttons don't fit together below ~1280px,
   well above where other sections still have room to stay in row layout. */
@media (max-width: 1280px) {
    .top-bar p {
        font-size: 12px;
        padding: 0 10px;
    }

    .header-container {
        min-height: 76px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .logo-link {
        padding-left: 160px;
        min-height: 44px;
    }

    .logo-img {
        height: 108px;
        top: -24px;
        left: 20px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-tagline {
        font-size: 11px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FEFEFE;
        border-bottom: 2px solid #D5F6FD;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 20;
    }

    .main-nav.open {
        max-height: 400px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px 20px 24px;
    }

    .main-nav a {
        display: block;
        padding: 14px 16px;
    }

    .header-buttons .btn-outline {
        display: none;
    }
}

@media (max-width: 960px) {
    /* Hero */
    .hero {
        padding: 60px 24px 120px;
    }

    .hero-container {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-left {
        max-width: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-form-card {
        width: 100%;
    }

    /* What We Carry */
    .wwc-card {
        flex-direction: column;
    }

    .wwc-image-wrap {
        flex: none;
        width: 100%;
    }

    .wwc-image {
        min-height: 320px;
    }

    .wwc-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .wwc-tab {
        flex-shrink: 0;
    }

    /* Why Yoder Cabins */
    .why-yoder-container {
        flex-direction: column;
    }

    .why-yoder-right {
        width: 100%;
    }

    .why-yoder-image {
        height: 420px;
    }

    /* Project form */
    .project-form-grid {
        grid-template-columns: 1fr;
    }

    .project-form-card {
        padding: 32px 24px;
    }
}

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {
    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-bar,
    .locations-bar,
    .gallery,
    .services,
    .how-it-works,
    .what-we-carry,
    .why-yoder,
    .our-work,
    .locations,
    .faq,
    .project-form,
    .final-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .locations-container,
    .gallery-container,
    .services-container,
    .how-it-works-container,
    .wwc-container,
    .why-yoder-container,
    .our-work-container,
    .locations-section-container,
    .faq-container,
    .project-form-container,
    .final-cta-container {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-main-container,
    .footer-cta-bar,
    .footer-bottom-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hero */
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        justify-content: center;
    }

    /* Gallery */
    .gallery-image {
        height: 320px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow-left {
        left: 12px;
    }

    .gallery-arrow-right {
        right: 12px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title,
    .how-it-works-header h2,
    .wwc-title,
    .why-yoder-title,
    .our-work-title,
    .locations-title,
    .faq-title,
    .project-form-title,
    .final-cta-title {
        font-size: 32px;
    }

    /* How It Works */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-cta {
        width: 100%;
        text-align: center;
    }

    /* Why Yoder Cabins */
    .why-yoder-grid {
        grid-template-columns: 1fr;
    }

    .why-yoder-image {
        height: 320px;
    }

    .why-yoder-float-badge {
        left: 16px;
        bottom: -20px;
        padding: 14px 20px;
    }

    /* Our Work */
    .our-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-work-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .work-filter,
    .work-filter-all {
        flex-shrink: 0;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-actions {
        flex-direction: column;
    }

    /* FAQ */
    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* Final CTA */
    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-call,
    .final-cta-text,
    .final-cta-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Footer */
    .footer-cta-bar {
        flex-direction: column;
        text-align: center;
    }

    .footer-main-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ---------- Small mobile (<=480px) ---------- */
@media (max-width: 480px) {
    .header-container {
        min-height: 68px;
    }

    .logo-link {
        padding-left: 130px;
    }

    .logo-img {
        height: 90px;
        top: -18px;
        left: 16px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-tagline {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .header-buttons .btn-filled .btn-label {
        display: none;
    }

    .header-buttons .btn-filled {
        padding: 12px;
    }

    .hero {
        padding: 48px 18px 100px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-tags span {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-form-card {
        padding: 24px 20px;
    }

    .services-title,
    .how-it-works-header h2,
    .wwc-title,
    .why-yoder-title,
    .our-work-title,
    .locations-title,
    .faq-title,
    .project-form-title,
    .final-cta-title {
        font-size: 26px;
    }

    .our-work-grid {
        grid-template-columns: 1fr;
    }

    .wwc-tab {
        font-size: 14px;
        padding: 12px 18px;
    }

    .steps-grid,
    .services-grid,
    .why-yoder-grid {
        gap: 14px;
    }

    .location-card,
    .service-card,
    .step-card,
    .why-yoder-item {
        padding: 22px;
    }
}

/* ---------- Extra-small mobile (<=340px, e.g. iPhone SE) ---------- */
@media (max-width: 340px) {
    .header-container {
        gap: 8px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo-link {
        padding-left: 100px;
    }

    .logo-img {
        height: 68px;
        top: -14px;
        left: 12px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-tagline {
        font-size: 9px;
        letter-spacing: 0.6px;
    }

    .header-actions {
        gap: 8px;
    }
}
