/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #222; line-height: 1.6; background: #ffffff; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Colors */
:root {
    --black: #000000;
    --yellow: #FAC905;
    --white: #ffffff;
    --gray-light: #F4F5F7;
    --gray: #6d7685;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary {
    background: var(--yellow);
    color: var(--black);
    border: 2px solid var(--yellow);
}
.btn-primary:hover {
    background: #e0b504;
    border-color: #e0b504;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}
.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}
.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

/* Section Tag */
.section-tag {
    display: inline-block;
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--gray-light);
    color: var(--black);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-bar-email,
.top-bar-phone {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-email:hover,
.top-bar-phone:hover { color: var(--yellow); }
.top-bar-social {
    display: flex;
    gap: 12px;
}
.top-bar-social a {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-social a:hover { color: var(--yellow); }

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 55px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 0;
}
.nav-link {
    color: var(--black);
    padding: 24px 18px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}
.nav-link:hover,
.nav-link.active {
    background: var(--yellow);
    color: var(--black);
}

.header-cta {
    font-size: 0.8rem;
    padding: 10px 20px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
}
.hero-slide {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--white);
    padding: 60px 0;
}
.hero-logo {
    max-width: 100%;
    width: 700px;
    height: auto;
    margin-bottom: 24px;
}
.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 .highlight {
    color: var(--yellow);
    position: relative;
}
.hero-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== ABOUT ==================== */
.about {
    padding: 80px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
}
.about-img-main {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--yellow);
    color: var(--black);
    padding: 20px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(250, 201, 5, 0.4);
}
.experience-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.experience-text {
    font-size: 0.8rem;
    display: block;
    max-width: 120px;
    margin-top: 4px;
}
.about-content h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 16px;
}
.about-content p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: var(--gray-light);
    padding: 60px 0;
    text-align: center;
}
.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta-banner .section-tag {
    color: var(--yellow);
}
.cta-banner h2 {
    color: var(--black);
    font-size: 1.8rem;
    max-width: 600px;
}

/* ==================== SERVICES ==================== */
.services {
    padding: 80px 0;
    background: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2rem;
    color: var(--black);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card-body {
    padding: 14px 20px;
}
.service-card-body h4 {
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 0;
    text-align: center;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    padding: 80px 0;
    background: var(--white);
    color: var(--black);
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-choose-content h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 16px;
}
.why-choose-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}
.why-choose-features {
    display: flex;
    gap: 40px;
}
.why-choose-features ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}
.why-choose-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
}
.why-choose-image {
    position: relative;
    min-height: 300px;
    background: url('images/dalkeith 3.png') center/cover no-repeat;
    border-radius: 8px;
}
.satisfied-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--yellow);
    color: var(--black);
    padding: 20px 28px;
    border-radius: 8px;
    text-align: center;
}
.satisfied-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.satisfied-text {
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

/* ==================== BEFORE & AFTER ==================== */
.before-after {
    padding: 80px 0;
    background: var(--white);
}
.ba-slider-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
}
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    aspect-ratio: 16 / 10;
}
.ba-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-before {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 50%;
    z-index: 2;
}
.ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.ba-after {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ba-label {
    position: absolute;
    top: 16px;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none;
}
.ba-label--before {
    left: 16px;
    background: var(--black);
    color: var(--white);
}
.ba-label--after {
    right: 16px;
    background: var(--yellow);
    color: var(--black);
}
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: none;
}
.ba-handle-line {
    flex: 1;
    width: 3px;
    background: var(--white);
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.ba-handle-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--black);
    pointer-events: auto;
    cursor: ew-resize;
}

/* ==================== GALLERY ==================== */
.gallery {
    padding: 80px 0;
    background: var(--gray-light);
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.gallery-filter {
    padding: 10px 24px;
    border: 2px solid #ddd;
    background: var(--white);
    color: var(--black);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}
.gallery-filter:hover {
    border-color: var(--yellow);
    color: var(--black);
}
.gallery-filter.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-caption {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}
.gallery-item.hidden {
    display: none;
}
.gallery-grid--preview {
    grid-template-columns: repeat(3, 1fr);
}
/* Recent Projects: always show suburb label (no hover on touch) */
.gallery-grid--preview .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 60%);
    padding: 14px 16px;
}
.gallery-grid--preview .gallery-caption {
    font-size: 1.1rem;
    font-weight: 700;
}
.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}
.lightbox-close:hover {
    color: var(--yellow);
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--yellow);
    color: var(--black);
}
.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* ==================== PAGE HERO BANNER ==================== */
.page-hero {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.page-hero .breadcrumb {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a {
    color: var(--yellow);
    transition: color 0.3s;
}
.page-hero .breadcrumb a:hover {
    color: var(--white);
}

/* Gallery Page */
.gallery-page {
    padding: 60px 0 80px;
    background: var(--white);
}
.gallery-page .gallery-filters {
    margin-bottom: 40px;
}
.gallery-page .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-page .gallery-item {
    aspect-ratio: 4 / 3;
}

/* ==================== PROJECTS PAGE ==================== */
.projects-page {
    padding: 60px 0 80px;
    background: var(--white);
}
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.project-tab {
    padding: 10px 28px;
    border: 2px solid #ddd;
    background: var(--white);
    color: var(--black);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}
.project-tab:hover {
    border-color: var(--yellow);
}
.project-tab.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}
.project-panel {
    display: none;
}
.project-panel.active {
    display: block;
}
.project-info {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}
.project-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.project-location {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.project-description {
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.project-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #444;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.project-meta li strong {
    color: var(--black);
    margin-right: 6px;
}
.project-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}
.project-review {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--gray-light);
    border-left: 4px solid var(--yellow);
    border-radius: 6px;
    padding: 28px 32px;
    text-align: center;
}
.project-review .section-tag {
    margin-bottom: 14px;
}
.project-review blockquote {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}
.project-review blockquote p {
    margin-bottom: 14px;
}
.project-review blockquote p:last-of-type {
    margin-bottom: 0;
}
.project-review-footer {
    margin-top: 18px;
    font-style: normal;
    font-weight: 600;
    color: var(--black);
    font-size: 0.9rem;
    text-align: right;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 80px 0;
    background: var(--gray-light);
    color: var(--black);
    text-align: center;
}
.testimonials .section-tag {
    color: var(--yellow);
}
.wom-link {
    display: inline-block;
    margin: 16px 0 30px;
}
.wom-logo {
    height: 40px;
    display: inline-block;
}
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.carousel-track-container {
    border-radius: 8px;
    flex: 1;
    min-width: 0;
}
.carousel-track {
    position: relative;
}
.carousel-slide {
    display: none;
}
.carousel-slide.active {
    display: block;
}
.carousel-slide img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Review Card (Word of Mouth style) */
.review-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 32px;
    text-align: left;
    color: #333;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-light);
    color: #555;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}
.review-meta {
    display: flex;
    flex-direction: column;
}
.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #222;
}
.review-date {
    font-size: 0.78rem;
    color: #1a8a7d;
}
.review-stars {
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}
.review-star {
    color: #FAC905;
    font-size: 1.1rem;
    line-height: 1;
}
.review-star.empty {
    color: #ddd;
}
.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.review-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}
.review-toggle {
    background: none;
    border: none;
    color: #222;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    display: none;
}
.review-toggle.visible {
    display: inline-block;
}
.review-ratings {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.review-rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.review-rating-label {
    font-size: 0.78rem;
    color: #888;
}
.review-dots {
    display: flex;
    gap: 3px;
}
.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2d3a3a;
}
.review-dot.empty {
    background: #ddd;
}
.review-rating-score {
    font-size: 0.78rem;
    color: #888;
}
.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1a8a7d;
    font-size: 0.82rem;
    font-weight: 500;
}
.carousel-btn {
    background: rgba(0,0,0,0.08);
    border: 2px solid rgba(0,0,0,0.15);
    color: var(--black);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}
.carousel-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.25);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
}

/* ==================== MEET THE OWNER ==================== */
.meet-owner {
    padding: 80px 0;
    background: var(--gray-light);
}
.meet-owner .about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.owner-photo {
    border-radius: 8px;
    width: 70%;
    object-fit: cover;
}

/* ==================== CONTACT FORM ==================== */
.contact-form-section {
    padding: 80px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 12px;
}
.contact-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.contact-details svg {
    color: var(--yellow);
    flex-shrink: 0;
}
.contact-details a {
    color: var(--black);
    transition: color 0.3s;
}
.contact-details a:hover { color: var(--yellow); }
.contact-form {
    background: var(--gray-light);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #dbdbdb;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}
.form-group textarea {
    resize: vertical;
}

/* Required-field asterisk */
.required-mark {
    color: #d93025;
}

/* Honeypot anti-spam field — kept out of view and assistive tech */
.honeypot-field {
    display: none !important;
}

/* Inline validation error message */
.form-error {
    display: none;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d93025;
}
.form-group.has-error .form-error {
    display: block;
}
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #d93025;
    background: #fdf3f2;
}
.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
    border-color: #d93025;
}

/* Form submission status banner */
.form-status {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}
.form-status.is-success {
    display: block;
    background: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #b7dfc1;
}
.form-status.is-error {
    display: block;
    background: #fdf3f2;
    color: #d93025;
    border: 1px solid #f1c4c0;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gray-light);
    color: var(--black);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 12px;
}
.footer-divider {
    width: 60px;
    height: 2px;
    background: var(--black);
    margin-bottom: 16px;
}
.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.footer-social a {
    color: var(--black);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}
.footer-social a:hover { color: var(--yellow); }
.footer-wom {
    height: 30px;
    margin-top: 10px;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: rgba(0,0,0,0.7);
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.footer-contact a {
    color: rgba(0,0,0,0.7);
    transition: color 0.3s;
}
.footer-contact a:hover { color: var(--yellow); }
.footer-contact svg { flex-shrink: 0; color: var(--black); }
.footer-contact span { color: rgba(0,0,0,0.7); }
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.15);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.5);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered card entrance */
.service-card.animate-on-scroll,
.gallery-item.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.service-card.animate-on-scroll.visible,
.gallery-item.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in from left */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in */
.animate-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.animate-fade.visible {
    opacity: 1;
}

/* Scale up */
.animate-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ==================== SITE NOTICE POPUP ==================== */
.site-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.site-notice-overlay.hidden {
    display: none;
}
.site-notice {
    background: var(--white);
    border-radius: 8px;
    padding: 36px 24px;
    max-width: 480px;
    width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    margin: 0 auto;
}
.site-notice h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 12px;
}
.site-notice p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}
.site-notice p a {
    color: var(--yellow);
    font-weight: 600;
}
.site-notice-close {
    min-width: 140px;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #e0b504;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid, .gallery-grid--preview, .gallery-page .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .nav.open { display: block; }
    .nav-list {
        flex-direction: column;
    }
    .nav-link {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    /* Smaller text across the board on mobile */
    body { font-size: 0.9rem; }
    h2 { font-size: 1.4rem; }
    .section-tag { font-size: 0.8rem; }
    .btn { font-size: 0.8rem; padding: 10px 22px; }

    /* Hero - more padding */
    .hero-content { padding: 40px 10px; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.85rem; }
    .hero-logo { margin-bottom: 16px; }

    /* About */
    .about { padding: 50px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-content h2 { font-size: 1.3rem; }
    .about-content p { font-size: 0.85rem; }

    /* Services - smaller images */
    .services { padding: 50px 0; }
    .service-card img { height: 150px; }
    .service-card-body h4 { font-size: 0.9rem; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Why Choose Us */
    .why-choose { padding: 50px 0; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .why-choose-image { min-height: 200px; }
    .why-choose-features { font-size: 0.85rem; }

    /* Before & After */
    .before-after { padding: 50px 0; }

    /* Gallery */
    .gallery { padding: 50px 0; }
    .gallery-grid, .gallery-grid--preview, .gallery-page .gallery-grid { grid-template-columns: 1fr; }
    .gallery-filter { padding: 8px 16px; font-size: 0.75rem; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: 0.85rem; }

    /* Projects page */
    .projects-page { padding: 40px 0 60px; }
    .project-tab { padding: 8px 18px; font-size: 0.8rem; }
    .project-info h2 { font-size: 1.4rem; }
    .project-description { font-size: 0.9rem; }
    .project-meta { gap: 14px; font-size: 0.8rem; }
    .project-gallery { grid-template-columns: 1fr; }
    .project-review { padding: 22px 20px; margin-top: 36px; }
    .project-review blockquote { font-size: 0.9rem; }

    /* Testimonials */
    .testimonials { padding: 50px 0; }
    .carousel-btn { width: 36px; height: 36px; }
    .review-card { padding: 20px 18px; }
    .review-ratings { gap: 14px; }
    .review-text { font-size: 0.8rem; }

    /* Hero - center buttons and logo */
    .hero-content { text-align: center; padding-left: 20px; padding-right: 20px; }
    .hero-buttons { justify-content: center; }

    /* Meet the Owner - smaller on mobile, align left */
    .meet-owner { padding: 50px 0; }
    .meet-owner .about-image-wrapper { justify-content: flex-start; }
    .owner-photo { width: 60%; }
    .meet-owner .about-content h2 { font-size: 1.3rem; }
    .meet-owner .about-content p { font-size: 0.85rem; }

    /* Contact */
    .contact-form-section { padding: 50px 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info h3 { font-size: 1.2rem; }
    .contact-info p { font-size: 0.85rem; }
    .form-row { grid-template-columns: 1fr; }

    /* CTA */
    .cta-banner { padding: 40px 0; }
    .cta-banner h2 { font-size: 1.2rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .experience-badge { right: 10px; bottom: -10px; }
    .top-bar-phone { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.3rem; }
    .hero-content p { font-size: 0.8rem; }
    .why-choose-features { flex-direction: column; gap: 10px; }
    .service-card img { height: 130px; }
    .owner-photo { width: 50%; }
}
