@charset "utf-8";
/* CSS Document */

/* ==========================================================
   SERVICES PAGE
   ========================================================== */
   
.service-category-heading{
    margin:8px 0 8px;
	display: flex;
	gap: 8px;
}

.service-list{
    display:grid;
    gap:12px;
}
.services-category-block {
	margin-bottom: 20px;
}
.service-card:hover{

    transform:translateY(-2px);

}

.service-title{
	gap: 8px;
	display: flex;
    font-weight:700;

}

.services-search {
    position: relative;
    margin: 12px 0 12px;
	box-sizing: border-box;
}
.service-recent-work-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-recent-work-popup {
    width: min(760px, 100%);
    max-height: calc(100vh - 20px);
    overflow: auto;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    position: relative;
}

.service-recent-work-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: none;
    font-size: 30px;
    cursor: pointer;
}

.service-recent-work-meta {
    margin: 6px 0 16px;
    color: #666;
    font-weight: 600;
}

.service-recent-work-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.service-recent-work-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
    cursor: pointer;
}

.service-recent-work-description {
    line-height: 1.6;
}

.service-recent-work-comment {
    margin: 18px 0 0;
    padding: 14px 18px;
    border-left: 4px solid var(--primary);
    background: #f5f7fb;
    border-radius: 12px;
}

.service-recent-work-nav {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-recent-work-nav button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
}
.service-review-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 18px 0;
}

.service-review-logo {
    flex: 0 0 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-review-logo img {
    width: 72px;
    height: auto;
    display: block;
}

.service-review-card {
    flex: 1;
    background: #f7f9fc;
    border: 1px solid #dbe3ec;
    border-radius: 18px;
    padding: 18px 22px;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
}
.service-review-platforms {
    margin-top: 12px;
}

.service-review-platforms-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
}

.service-review-platform-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.service-review-platform-logos img {
    object-fit: contain;
    display: block;
}

.services-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: #666;
}

.services-search-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-search input {
    width: 100%;
    padding: 12px 18px 12px 48px;

    border: 2px solid #ddd;
    border-radius: 14px;

    font: inherit;
    font-size: 17px;

    transition: .15s;
	box-sizing: border-box;
}

.services-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(75,142,219,.15);
    outline: none;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    cursor: pointer;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    line-height: 1;
	font-size:2rem;
    transform-origin: center;
    transition: transform 0.2s ease;
}

.service-card-expanded {
    display: none;
    padding: 0 20px 18px;
    border-top: 1px solid #eee;
}

.service-card.open .service-card-expanded {
    display: block;
}

.service-card.open .service-arrow {
    transform: rotate(90deg);
}

.service-card-detail {
    padding-top: 14px;
    color: #555;
}

.service-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.service-primary-btn,
.service-secondary-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
}

.service-primary-btn {
    background: var(--primary);
    color: #fff;
}

.service-secondary-btn {
    background: #f1f1f1;
    color: #222;
}
.service-question-count {
    margin-top: 8px;
    font-weight: 700;
    color: #333;
}
.service-question-preview-item {
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-question-preview-title {
    font-weight: 600;
}

.service-question-preview-answers {
    color: #666;
}
.services-price-note {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f5f7fb;
    border: 1px solid #e1e5ee;
}

.services-price-note-content p {
    margin: 12px 0;
}

.service-typical-price {
    margin-top: 8px;
}

.service-typical-price span {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

.service-typical-price strong {
    font-size: 1.05rem;
}

.service-cost-factors-title {
    margin-bottom: 6px;
    font-weight: 600;
}

.service-questions-preview {
    color: #555;
    line-height: 1.5;
}

.category-info-popup {
    position: fixed;
    z-index: 9999;
    max-width: 300px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    font-size: 0.9rem;
    line-height: 1.45;
}
.info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.info-btn-category .category-info-icon {
    width: 32px;
    height: 32px;
	fill: var(--primary);
}

.info-btn-service .category-info-icon {
    width: 26px;
    height: 26px;
	fill: var(--primary-hover);
}
.services-price-note-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    text-align: left;
}

.services-price-note-content {
    display: none;
}

.services-price-note.open .services-price-note-content {
    display: block;
}

.services-price-note-content p {
    display: block;
}

.services-price-note-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform .2s ease;
    flex-shrink: 0;
}

.services-price-note-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-price-note.open .services-price-note-arrow {
    transform: rotate(90deg);
}

.info-btn:hover .category-info-icon {
    fill: var(--primary);
}
.estimate-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.estimate-popup {
    width: min(460px, calc(100vw - 32px));
    background: #fff;
    border-radius: 18px;
    padding: 24px;
	margin-top: 100px;
	position: relative;
    overflow: visible;
}

.estimate-popup ul {
    margin: 18px 0;
    padding-left: 22px;
}

.estimate-popup-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.estimate-popup-buttons button {
    flex: 1;
}
.estimate-register-btn {
	border-radius: 8px;
	padding: 8px 8px;
	background-color: var(--primary);
	color: #ffffff;
}
.estimate-login-btn {
	border-radius: 8px;
	background-color: var(--primary-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ==========================================================
   ABOUT PAGE
   ========================================================== */
   
.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 20px;
}

.about-hero {
    background: #fff;
    border-radius: 18px;
    padding: 22px 22px 0px 22px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.about-content h1 {
    margin: 0 0 20px;
}

.about-content p {
    margin: 0 0 16px;
    line-height: 1.65;
}

.why-choose {
    margin-top: 40px;
}

.about-areas {
    margin-top: 20px;
}

.why-choose h2 {
    margin: 0 0 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}

.why-card h3 {
    margin: 0 0 10px;
}

.why-card p {
    margin: 0;
    line-height: 1.5;
}

.about-cta {
    margin-top: 40px;
    padding: 28px;
    border-radius: 18px;
    background: #f5f7fb;
    text-align: center;
}

.about-cta h2 {
    margin: 0 0 10px;
}

.about-cta p {
    margin: 0 auto 20px;
    max-width: 600px;
    line-height: 1.5;
}

.about-cta-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    background: #111;
    color: #fff;
}

/* ==========================================================
   REVIEWS PAGE
   ========================================================== */
   
.reviews-page-grid .review-text {
    display: block;
    overflow: visible;
    min-height: 0;
}
.reviews-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.review-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
	border: 1px solid #eee;
    border-radius: var(--radius-card);
    background-color: #fff;
    padding: 8px;
}

.review-filter {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer;
}

.review-filter.active {
    border-color: var(--primary);
    color: var(--primary);
}

.reviews-page-grid .review-card {
    cursor: default;
}

.reviews-summary-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0 6px;
}

.reviews-summary-stars {
    color: #f5a623;
    font-size: 24px;
    letter-spacing: 1px;
	position: relative;
	top: -2px;
}

.reviews-summary-average {
    font-size: 18px;
    font-weight: 800;
}

.reviews-summary-text {
    color: #555;
    margin-bottom: 12px;
}

.reviews-summary-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.reviews-summary-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
}

.reviews-summary-platform img {
    height: 20px;
    width: auto;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.reviews-desktop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ==========================================================
   GALLERY
   ========================================================== */

.review-placeholder,
.gallery-placeholder{

    background:var(--surface);

    border:2px dashed var(--border);

    border-radius:var(--radius-panel);

    padding:60px;

    text-align:center;

    color:var(--text-muted);

}
/* ==========================================================
   RECENT WORK CARDS
   ========================================================== */

.recent-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.recent-work-card {
    border-radius: 14px;
    overflow: hidden;
}

.recent-work-clickable {
    cursor: pointer;
}
.recent-work-clickable:hover .before-after-wrap {
    opacity: 0.7;
}
.before-after-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
    overflow: hidden;
	gap: 4px;
}

.before-after-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dashboard/homepage borders */
.before-image {
    border: 3px solid #777;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
}

.after-image {
    border: 3px solid #777;
    border-radius: 0 14px 14px 0;
    overflow: hidden;
}
.before-after-image.before-image {
    border: 3px solid #777;
}

.before-after-image.after-image {
    border: 3px solid #777;
}

.before-after-icon {
    background: #fff;
    border: 2px solid #777;
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #2b2b2b;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.before-after-wrap > .before-after-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

/* ==========================================================
   RECENT WORK POPUP
   ========================================================== */

.recent-work-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
}

.recent-work-popup.open {
    display: flex;
}

.recent-work-popup-card {
    position: relative;
    width: min(900px, 94vw);
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.recent-work-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.recent-work-popup-title {
    margin: 0 40px 8px 0;
}

.recent-work-popup-date {
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.recent-work-popup-images {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.recent-work-popup-pair {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    row-gap: 0;
    margin-bottom: 8px;
}

.recent-work-popup-pair:last-child {
    margin-bottom: 0;
}

.recent-work-popup-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 3px solid #777;
    box-sizing: border-box;
}

.recent-work-popup-image.before-image {
    border-radius: 14px 0 0 14px;
}

.recent-work-popup-image.after-image {
    border-radius: 0 14px 14px 0;
}

.recent-work-popup-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.popup-before-after-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.recent-work-popup-description {
    margin-bottom: 16px;
}

.recent-work-popup-comment {
    padding: 14px 18px;
    background: #fff3d8;
    border-left: 4px solid #4b8edb;
    font-weight: 600;
}

.recent-work-popup-reviews {
    margin-top: 20px;
}

.recent-work-review-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.recent-work-review-row img {
    height: 24px;
    width: auto;
    display: block;
}

/* ==========================================================
   IMAGE VIEWER
   ========================================================== */
   
.image-viewer {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.88);
    z-index: 10000;
    padding: 20px;
}

.image-viewer.open {
    display: flex;
}

.image-viewer-stage {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
    text-align: center;
}

.image-viewer-stage img {
    max-width: 100%;
    max-height: 82vh;
    display: block;
    object-fit: contain;
}

.image-viewer-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 38px;
    cursor: pointer;
    z-index: 2;
}

.image-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-54%);

    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #000;
    border-radius: 50%;
    box-sizing: border-box;

    background: rgba(255,255,255,.95);
    color: #222;

    font-size: 34px;
    font-weight: 700;
    line-height: 1;

    box-shadow: 0 4px 12px rgba(0,0,0,.35);

    cursor: pointer;
    z-index: 10001;
    padding-bottom: 6px;
}

.image-viewer-nav:hover {
    background: #fff;
    transform: translateY(-54%) scale(1.05);
}

.image-viewer-prev {
    left: 20px;
}

.image-viewer-next {
    right: 20px;
}

.image-viewer-caption,
.image-viewer-counter {
    color: #fff;
    margin-top: 10px;
    font-size: 14px;
}

.image-viewer-counter {
    opacity: 0.75;
}
.image-viewer-nav,
.image-viewer-close {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.image-viewer-nav:focus,
.image-viewer-close:focus {
    outline: none;
}

.image-viewer-nav:focus-visible,
.image-viewer-close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* ==========================================================
   GALLERY
   ========================================================== */
   
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 28px;
}

.gallery-filter {
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 700;
    cursor: pointer;
}

.gallery-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gallery-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    cursor: pointer;
}

.gallery-card-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 16 / 10;
    background: #eef1f5;
}

.gallery-card-image {
    min-width: 0;
    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card-before img {
    border-top-left-radius: 18px;
}

.gallery-card-after img {
    border-top-right-radius: 18px;
}

.gallery-card-body {
    padding: 14px 16px 16px;
}

.gallery-card-body h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.gallery-card-body p {
    margin: 0;
    color: #666;
    font-size: .9rem;
}

.gallery-card .before-after-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
   
.contact-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 20px;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 36px;
    align-items: center;
    margin-bottom: 36px;
}

.contact-hero-text h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.05;
}

.contact-hero-text h1::after {
    content: "";
    display: block;
    width: 150px;
    height: 7px;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--accent, #f5c400);
}

.contact-hero-text p {
    max-width: 470px;
    font-size: clamp(1.15rem, 2.25vw, 1.55rem);
    line-height: 1.7;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    min-height: 430px;
    padding: 30px 28px;

    background: #fff;
    border: 1px solid rgba(18, 32, 42, 0.08);

    border-radius: 28px;

    box-shadow: 0 18px 22px rgba(0,0,0,.075);

    transition:
        transform .18s ease,
        box-shadow .18s ease;

}

.contact-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 11px 22px rgba(0,0,0,.40);

}

.contact-card-image {
    width: 180px;
    height: 135px;
    object-fit: contain;
    margin-bottom: 18px;
}

.contact-card h2,
.contact-hours-card h2 {
    color: var(--text);
}
.contact-card h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: var(--accent);
}
.contact-card p {
    margin: 0 0 24px;
    line-height: 1.65;
}

.contact-card .btn,
.contact-phone-link {
    min-height: 48px;
    border-radius: 14px;
}

.contact-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    font-weight: 700;
}

.contact-phone-link {

    display: inline-block;

    margin-top: auto;
    padding-top: 18px;

    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;

    color: var(--text);

    text-decoration: none;

    border-top: 1px solid rgba(0,0,0,.12);

}

.contact-small-note {
    margin-top: 10px;
    color: var(--primary, #435f12);
    font-size: 0.95rem;
}

.contact-hours-card {

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;

    margin-top: 34px;
    padding: 30px 36px;

    background: #fffdf7;

    border: 1px solid rgba(0,0,0,.06);
    border-radius: 24px;

    box-shadow: 0 10px 28px rgba(0,0,0,.06);

}

.contact-hours-item {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 10px 28px;

    text-align: center;

}

.contact-hours-item + .contact-hours-item {

    border-left: 1px solid rgba(0,0,0,.08);

}

.contact-hours-image {

    width: 64px;
    height: auto;

    margin-bottom: 12px;

}

.contact-hours-item strong {

    display: block;

    margin-bottom: 8px;

    font-size: 1.15rem;
    font-weight: 700;

}

.contact-hours-item span {

    display: block;

    line-height: 1.7;

    opacity: .75;

}

.contact-hours-item h2 {
    margin: 0;
    color: var(--primary, #435f12);
}

.contact-hours-item strong,
.contact-hours-item span {
    display: block;
}

.contact-hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-paint-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.contact-paint-splash {
    position: absolute;
    left: 50%;
    bottom: -50px;      /* Move it down */
    transform: translateX(-50%);
    width: 105%;
    max-width: 620px;
}

.contact-hero-image {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    display: block;
}

/* ==========================================================
   FAQS PAGE
   ========================================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-list details {
    background: #fff;
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}
.faq-section + .faq-section {
    margin-top: 28px;
}
.faq-list p {
    margin: 16px 0 0;
    line-height: 1.7;
}

.cta-card {
    margin-top: 30px;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.opening-hours-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    text-align: center;
	margin-top: 40px;
}

.opening-hours-card p {
    margin: 8px 0;
}

.muted {
    opacity: .7;
}

.estimate-popup-hero {
    position: absolute;
    top: -156px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: auto;
    z-index: 2;
    pointer-events: none;
	opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
}

.estimate-popup-content {
    position: relative;
    z-index: 1;
}

body.estimate-popup-open .hero-right {
    opacity: 0;
    pointer-events: none;
}

.estimate-popup-overlay .estimate-popup-hero {
    opacity: 1;
}
