/* Reset & Base Styles */
:root {
    --primary-color: #2C3E50; /* Dark slate - matches logo */
    --logo-blue: #2C3E50; /* Logo & header/footer background */
    --accent-color: #d4af37; /* Gold */
    --text-color: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #c5a059;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    white-space: nowrap;
}

.btn-call:hover {
    background-color: #c5a059;
    color: var(--primary-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.text-white {
    color: var(--text-light);
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Header */
.header {
    background-color: #2C3E50;
    color: var(--text-light);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
}

.footer-logo img {
    height: 100px;
}

/* Only the first-level nav is horizontal; dropdown menus stay vertical */
.nav > ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.nav a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav a:hover, .nav a.active {
    opacity: 1;
    color: var(--accent-color);
}

/* Nav dropdowns (old-site logic: Services + Galleries) */
.nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav > ul > li {
    position: relative;
}
.nav-dropdown-trigger {
    color: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}
.nav-dropdown-trigger:hover { opacity: 1; color: var(--accent-color); }
.nav-dropdown-trigger i { font-size: 0.65rem; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-trigger i { transform: rotate(180deg); }
/* Second-level dropdown: vertical list only (one on top of the other) */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    margin-top: 0.25rem;
    padding: 0.5rem 0;
    width: 220px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    background: #1a252f;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.nav-dropdown-menu li {
    margin: 0;
    display: block;
    flex-shrink: 0;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: var(--accent-color); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .nav-dropdown-menu {
        left: 0;
        transform: none;
        max-height: 50vh;
    }
    .nav-dropdown:hover .nav-dropdown-menu { opacity: 0; visibility: hidden; }
    .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-image: url('assets/2bf66025-f3d3-403a-a860-4af616cc2a2c.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding-top: 0;
    padding-bottom: 5rem;
    background-color: transparent;
    margin-top: -100px; /* Overlap */
    position: relative;
    z-index: 2;
}

.services .container {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.service-card {
    padding: 2rem;
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color); /* Or accent color depending on preference, image shows dark outlines */
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

/* Process Section */
.process {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-color); /* Gold icons */
    margin-bottom: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    opacity: 0.8;
}


/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background-color: #fff;
}

.portfolio-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 160px);
    gap: 12px;
    grid-template-areas:
        "large large tall  small1"
        "large large tall  tallR"
        "wide  wide  small2 tallR";
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collage-item:hover img {
    transform: scale(1.06);
}

.portfolio-collage .collage-item:nth-child(1) { grid-area: large; }
.portfolio-collage .collage-item:nth-child(2) { grid-area: tall; }
.portfolio-collage .collage-item:nth-child(3) { grid-area: small1; }
.portfolio-collage .collage-item:nth-child(4) { grid-area: tallR; }
.portfolio-collage .collage-item:nth-child(5) { grid-area: wide; }
.portfolio-collage .collage-item:nth-child(6) { grid-area: small2; }

/* Map section & Service areas (after Our Best Work) - screen wide */
.map-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}
.map-section-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    align-items: stretch;
    min-height: 450px;
}
@media (max-width: 900px) {
    .map-section-layout {
        grid-template-columns: 1fr;
    }
}
.map-embed-wrap {
    position: relative;
    width: 100%;
    min-height: 450px;
    overflow: hidden;
}
.map-embed-wrap iframe {
    display: block;
    min-height: 450px;
    width: 100%;
}
.service-areas-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    max-height: 450px;
    display: flex;
    flex-direction: column;
}
.service-areas-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 0.75rem 1rem;
    margin: 0;
    background: #1a252f;
    color: var(--text-light);
}
.service-areas-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin: 0.5rem 0.75rem;
    background: #f3f4f6;
    border-radius: 9999px;
}
.service-areas-search i {
    color: #6b7280;
    font-size: 0.9rem;
}
.service-areas-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
}
.service-areas-search input::placeholder {
    color: #6b7280;
}
.service-areas-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    overflow-y: auto;
    flex: 1;
}
.service-areas-list li {
    padding: 0.4rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: default;
    border-radius: 4px;
}
.service-areas-list li:hover {
    background: rgba(0,0,0,0.05);
}
.service-areas-list li.hidden {
    display: none;
}
.service-area-zip {
    color: #6b7280;
    font-weight: 400;
    margin-left: 0.25rem;
}
.map-cta a { margin-top: 0.5rem; }

/* Service page photo gallery (variable number of images) */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.service-gallery .collage-item {
    aspect-ratio: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #2C3E50;
    color: var(--text-light);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.footer-card {
    background: transparent;
    color: var(--text-light);
    padding: 0;
    border-radius: 0;
}
.footer-card-top {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.footer-card-logo img {
    max-width: 100px;
    display: block;
}
.footer-card-info {
    font-size: 0.8rem;
    line-height: 1.4;
}
.footer-card-info strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}
.footer-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer-card-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 2px;
    font-weight: 700;
}
.btn-mustard {
    background-color: #C09B66;
    color: white;
}
.btn-outline-dark {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}
.footer-card .social-icons {
    text-align: left;
}
.footer-card .social-icons a {
    margin-left: 0;
    margin-right: 12px;
    color: #1877F2; /* FB blue */
    opacity: 1;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 32px;
    height: 32px;
}
.footer-card .social-icons a:first-child {
    color: #DB4437; /* Google red approx */
}
.footer-card .social-icons a i {
    font-size: 1.1rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    opacity: 0.7;
}

.footer a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.social-icons a {
    margin-left: 15px;
    font-size: 1.2rem;
    opacity: 0.7;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* ========== Content page (e.g. About) ========== */
.content-page .hero {
    display: none;
}

.content-hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.content-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
}

.content-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23d4af37' fill-opacity='0.06'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.content-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.content-hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.content-hero-sub {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content-intro {
    padding: 4rem 0;
    background: #fff;
}

.content-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-intro-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.content-intro-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.content-intro-text h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-intro-text .lead {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.25rem;
}

.content-intro-text p {
    color: #555;
    margin-bottom: 1rem;
}

.content-quote {
    padding: 3rem 0;
    background: var(--bg-light);
}

.content-blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.content-blockquote-mark {
    display: block;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-color);
    margin-bottom: -1rem;
}

.content-body {
    padding: 4rem 0;
    background: #fff;
}

.content-body-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.content-prose {
    max-width: 65ch;
}

.content-prose h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-prose h2:first-child {
    margin-top: 0;
}

.content-prose h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-prose p {
    color: #555;
    margin-bottom: 1rem;
}

.content-list {
    margin: 1rem 0;
    padding-left: 1.25rem;
}

.content-list li {
    margin-bottom: 0.75rem;
    color: #555;
}

.content-cta-wrap {
    margin-top: 2rem;
}

/* Spacing between paragraphs in content (service pages, blog, etc.) */
.page-content p {
    margin-bottom: 0;
}
.page-content p + p {
    margin-top: 1.25rem;
}

.content-sidebar {
    position: sticky;
    top: 2rem;
}

.content-sidebar-card {
    background: linear-gradient(145deg, var(--primary-color) 0%, #1a252f 100%);
    color: var(--text-light);
    padding: 1.75rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.2);
}

.content-sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-sidebar-card h4 i {
    color: var(--accent-color);
}

.content-sidebar-card .content-stat {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0.25rem 0 0.5rem;
}

.content-sidebar-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Services page grid */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-page-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.service-page-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-page-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.service-page-card p {
    color: #555;
    margin: 0;
}

/* Process page (content page) */
.process-page-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-cta {
    margin-top: 2rem;
}

.content-page .process {
    padding: 4rem 0;
}

/* Contact page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrap h2,
.contact-details h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.contact-form-message {
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.contact-form-message i.fa-solid {
    margin-right: 0.5rem;
    vertical-align: middle;
}

.contact-form-message p {
    margin: 0;
    display: inline;
}

.contact-form-message--success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.contact-form-message--success i {
    color: #059669;
}

.contact-form-message--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.contact-form-message--error i {
    color: #dc2626;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
}

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

.contact-form fieldset {
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fafafa;
}

.contact-form-legend {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
}

.contact-form-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem 1rem;
}

.contact-form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 0;
}

.contact-form-check input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    margin: 0;
    accent-color: var(--primary-color);
}

.contact-form-other-wrap {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.contact-form-other-wrap[hidden] {
    display: none;
}

.contact-form-consent {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.contact-form-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.btn-reset {
    background: #e5e7eb;
    color: #374151;
}

.btn-reset:hover {
    background: #d1d5db;
}

.contact-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info-page {
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-page a {
    color: var(--primary-color);
}

.contact-info-page a:hover {
    color: var(--accent-color);
}

.contact-pay {
    margin-top: 1.5rem;
}

@media (max-width: 968px) {
    .content-intro-grid {
        grid-template-columns: 1fr;
    }

    .content-intro-media {
        order: -1;
    }

    .content-intro-media img {
        height: 280px;
    }

    .content-body-inner {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .content-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav > ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .portfolio-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 140px);
        grid-template-areas:
            "large large"
            "tall  small1"
            "tallR wide"
            "tallR small2";
    }

    .portfolio-collage .collage-item:nth-child(1) { grid-area: large; }
    .portfolio-collage .collage-item:nth-child(2) { grid-area: tall; }
    .portfolio-collage .collage-item:nth-child(3) { grid-area: small1; }
    .portfolio-collage .collage-item:nth-child(4) { grid-area: tallR; }
    .portfolio-collage .collage-item:nth-child(5) { grid-area: wide; }
    .portfolio-collage .collage-item:nth-child(6) { grid-area: small2; }

    .logo, .client-info, .contact-info li {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
    z-index: 1000;
}

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

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.back-to-top i {
    font-size: 1.25rem;
}

/* Lightbox: click image to view larger */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.lightbox-overlay .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.lightbox-overlay .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.lightbox-overlay .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
/* Make gallery images look clickable */
.service-gallery .collage-item,
.portfolio-collage .collage-item {
    cursor: pointer;
}
.service-gallery .collage-item img,
.portfolio-collage .collage-item img {
    pointer-events: auto;
}
