/* ── Reset & base ───────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --clr-bg:        #111111;
    --clr-bg-hover:  #1e1e1e;
    --clr-red:       #e63030;
    --clr-red-dark:  #b81f1f;
    --clr-white:     #ffffff;
    --clr-muted:     #cccccc;
    --nav-height:    88px;
    --transition:    0.25s ease;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 45%, #151515 100%);
    color: #f2f2f2;
    line-height: 1.5;
    padding-top: var(--nav-height);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #000;
    color: #fff;
    padding: 0.65rem 0.9rem;
    border-radius: 0 0 6px 0;
    text-decoration: none;
    z-index: 3000;
}

.skip-link:focus,
.skip-link:focus-visible {
    left: 0;
    outline: 3px solid #ffb1b1;
}

main:focus {
    outline: none;
}

/* ── Navbar wrapper ──────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--clr-bg);
    height: var(--nav-height);
    padding: 0 3.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    border-bottom: 3px solid var(--clr-red);
}

/* ── Logo ────────────────────────────────────────────────── */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 19, 19, 0.5);
}

.nav-brand img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ── Desktop link list ───────────────────────────────────── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    position: relative;
    display: block;
    padding: 0.7rem 1.3rem;
    color: var(--clr-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--clr-red);
    border-radius: 2px;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--clr-white);
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    box-shadow: 0 6px 16px rgba(230, 48, 48, 0.2);
    outline: none;
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--clr-white);
}

/* ── Hamburger button ────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
    background: var(--clr-bg-hover);
}

.bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
    transform-origin: center;
}

/* Animate bars into an × when open */
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── header ───────────────────────────────────────── */
.header {
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.02em;
    min-height: clamp(320px, 50vh, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(140, 22, 22, 0.55) 100%);
    padding: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 6vw, 4rem);
    color: var(--clr-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    border-bottom: 4px solid rgba(230, 48, 48, 0.85);
    border-radius: 8px;
    margin: 0 1rem;
    max-width: 900px;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    line-height: 1.15;
    color: var(--clr-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
}

.header p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.5rem;
    color: #e8e8e8;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.header-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: var(--clr-red);
    font-weight: 600;
    margin: 0.5rem 0 1.75rem;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

/*areas served*/
.areas-served {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2.5rem 1.5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.areas-served::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.4), transparent);
}

.areas-served h2 {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.area-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    margin: 0;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, #1f1f1f 0%, #252525 100%);
    border-radius: 999px;
    border: 2px solid #333333;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    font-weight: 600;
    transition: all var(--transition);
}

.area-item:hover {
    border-color: var(--clr-red);
    color: var(--clr-white);
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    box-shadow: 0 8px 20px rgba(230, 48, 48, 0.3);
    transform: translateY(-2px);
}

.local-seo {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2.5rem 1.5rem 3rem;
    background: linear-gradient(135deg, #111111 0%, #171717 50%, #0f0f0f 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.local-seo h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.local-seo > p {
    max-width: 900px;
    margin: 0 auto 1.75rem;
    text-align: center;
    color: #cfcfcf;
    line-height: 1.7;
}

.local-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.local-seo-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    border: 1px solid #2d2d2d;
    border-top: 3px solid var(--clr-red);
    border-radius: 12px;
    padding: 1.2rem;
}

.local-seo-card h3 {
    color: #fff;
    font-size: 1.06rem;
    margin-bottom: 0.55rem;
}

.local-seo-card p {
    color: #c3c3c3;
    line-height: 1.65;
    font-size: 0.96rem;
}

.cta {
    display: inline-block;
    padding: 1rem 1.8rem;
    margin: 1.5rem auto 0;
    background: linear-gradient(135deg, #ff4646 0%, #e63030 50%, #cc2727 100%);
    color: var(--clr-white);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid rgba(184, 31, 31, 0.5);
    box-shadow: 0 12px 24px rgba(230, 48, 48, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
    cursor: pointer;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.cta:hover,
.cta:focus-visible {
    background: linear-gradient(135deg, #ff5959 0%, #ef3a3a 50%, #d62f2f 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(230, 48, 48, 0.45), 0 8px 16px rgba(0, 0, 0, 0.4);
    outline: none;
    border-color: rgba(230, 48, 48, 0.7);
}


/*overview card section*/
.overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #141414 0%, #0f0f0f 50%, #0a0a0a 100%);
    border-radius: 16px;
    border: 2px solid #2a2a2a;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    margin-bottom: 2rem;
}

.overview-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px 8px 0 0;
}

.card {
    width: 280px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    border: 2px solid #2c2c2c;
    border-top: 4px solid var(--clr-red);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.3), transparent);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(230, 48, 48, 0.25), 0 12px 20px rgba(0, 0, 0, 0.5);
    border-color: #7b1b1b;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(230, 48, 48, 0.25), 0 12px 20px rgba(0, 0, 0, 0.5);
    border-color: #7b1b1b;
}

.container {
    padding: 1.2rem 1.25rem 1.4rem;
    text-align: left;
}

.container h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.container p {
    color: #d4d4d4;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Add rounded corners to the top left and the top right corner of the image */
.card img {
  border-radius: 8px 8px 0 0;
}


/*footer*/

footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    color: var(--clr-muted);
    padding: 0;
    margin-top: 3rem;
    border-top: 3px solid var(--clr-red);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2.5rem 1.5rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    font-size: 1.15rem;
    color: var(--clr-white);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.footer-section p {
    line-height: 1.6;
    color: #b8b8b8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--clr-red);
}

.footer-cta {
    display: inline-block;
    background: var(--clr-red);
    color: var(--clr-white);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

.footer-cta:hover {
    background: var(--clr-red-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    color: #888;
    font-size: 0.9rem;
}



/*about section*/

.about-hero {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #f2f2f2;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.4), transparent);
}

.about-img {
    height: 320px;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center 30%;
    margin-bottom: 2rem;
    padding: 0.5rem;
    box-shadow: 0 12px 28px rgba(230, 48, 48, 0.2), 0 8px 16px rgba(0, 0, 0, 0.4);
    border: 2px solid #2a2a2a;
    
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--clr-white);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.about-intro {
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 2.5rem;
    color: #d4d4d4;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
}

.value-item {
    padding: 1.75rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    border: 2px solid #2c2c2c;
    border-top: 3px solid var(--clr-red);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
    position: relative;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.2), transparent);
}

.value-item:hover {
    transform: translateY(-4px);
    border-color: #7b1b1b;
    box-shadow: 0 12px 28px rgba(230, 48, 48, 0.2), 0 8px 16px rgba(0, 0, 0, 0.4);
}

.value-item h3 {
    color: var(--clr-white);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-item p {
    color: #b8b8b8;
    font-size: 0.98rem;
    line-height: 1.6;
}

/*services section*/

.services-main {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem 3rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.4), transparent);
}

.services-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 0.75rem;
    color: var(--clr-white);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.services-header p {
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-cta {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    text-decoration: none;
    background: linear-gradient(135deg, #ff4646 0%, #e63030 50%, #cc2727 100%);
    color: var(--clr-white);
    font-weight: 700;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    border: 2px solid rgba(184, 31, 31, 0.5);
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: all var(--transition);
    box-shadow: 0 12px 24px rgba(230, 48, 48, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.services-cta:hover,
.services-cta:focus-visible {
    background: linear-gradient(135deg, #ff5959 0%, #ef3a3a 50%, #d62f2f 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(230, 48, 48, 0.45), 0 8px 16px rgba(0, 0, 0, 0.4);
    outline: none;
    border-color: rgba(230, 48, 48, 0.7);
}

.services-list {
    background: linear-gradient(135deg, #141414 0%, #0f0f0f 100%);
    border: 2px solid #2a2a2a;
    border-top: 3px solid var(--clr-red);
    border-radius: 16px;
    padding: 2.5rem;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.3), transparent);
}

.services-list li {
    position: relative;
    padding: 1.25rem 1rem 1.25rem 3.2rem;
    color: #d4d4d4;
    line-height: 1.7;
    font-size: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    border: 1px solid #2c2c2c;
    border-radius: 10px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-list li:hover {
    transform: translateY(-2px);
    border-color: #7b1b1b;
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    box-shadow: 0 8px 16px rgba(230, 48, 48, 0.2), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    min-width: 2.2rem;
}

.service-areas-copy {
    margin-top: 2rem;
    background: linear-gradient(135deg, #141414 0%, #101010 100%);
    border: 2px solid #2a2a2a;
    border-radius: 14px;
    padding: 2rem 1.5rem;
}

.service-areas-copy h2 {
    color: var(--clr-white);
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
}

.service-areas-copy > p {
    color: #cfcfcf;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.service-areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.service-areas-list div {
    background: #181818;
    border: 1px solid #2d2d2d;
    border-left: 3px solid var(--clr-red);
    border-radius: 10px;
    padding: 1rem;
}

.service-areas-list h3 {
    color: #fff;
    margin-bottom: 0.45rem;
    font-size: 1.02rem;
}

.service-areas-list p {
    color: #c8c8c8;
    font-size: 0.95rem;
    line-height: 1.6;
}


/*gallery section*/

.gallery-main {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1.5rem 3rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.gallery-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.4), transparent);
}

.gallery-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--clr-white);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gallery-header p {
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-card {
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    border: 2px solid #2c2c2c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
    position: relative;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.3), transparent);
    z-index: 1;
}

.gallery-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230, 48, 48, 0.25), 0 12px 20px rgba(0, 0, 0, 0.5);
    border-color: #7b1b1b;
}

.gallery-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform var(--transition);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-card figcaption {
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f1f1;
    border-top: 1px solid #333333;
    background: linear-gradient(135deg, #121212 0%, #0a0a0a 100%);
}

.gallery-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    background: linear-gradient(135deg, #ff4646 0%, #e63030 50%, #cc2727 100%);
    color: var(--clr-white);
    font-weight: 700;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    border: 2px solid rgba(184, 31, 31, 0.5);
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: all var(--transition);
    box-shadow: 0 12px 24px rgba(230, 48, 48, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-cta:hover,
.gallery-cta:focus-visible {
    background: linear-gradient(135deg, #ff5959 0%, #ef3a3a 50%, #d62f2f 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(230, 48, 48, 0.45), 0 8px 16px rgba(0, 0, 0, 0.4);
    outline: none;
    border-color: rgba(230, 48, 48, 0.7);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    width: min(92vw, 980px);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid #2d2d2d;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
}

.lightbox p {
    color: #f3f3f3;
    margin-top: 0.7rem;
    text-align: center;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #3f3f3f;
    background: #161616;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
    background: #232323;
    outline: none;
}

body.no-scroll {
    overflow: hidden;
}

/*quote section*/

.quote-main {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem 3rem;
}

.quote-main,
.quote-main p,
.quote-main label,
.quote-main input,
.quote-main textarea,
.quote-main option,
.quote-main select {
    user-select: text;
}

.quote-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.quote-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.4), transparent);
}

.quote-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--clr-white);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.quote-header p {
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.quote-form {
    background: linear-gradient(135deg, #141414 0%, #0f0f0f 100%);
    border: 2px solid #2a2a2a;
    border-top: 3px solid var(--clr-red);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    position: relative;
}

.quote-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 48, 48, 0.3), transparent);
}

.quote-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.field-group {
    margin-bottom: 0;
}

.field-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--clr-white);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font: inherit;
    color: #f2f2f2;
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    font-size: 1rem;
    transition: all var(--transition);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #666666;
}

.field-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    outline: none;
    border-color: var(--clr-red);
    background: linear-gradient(135deg, #1f1f1f 0%, #1a1a1a 100%);
    box-shadow: 0 0 0 3px rgba(230, 48, 48, 0.2);
}

.quote-submit {
    display: block;
    width: fit-content;
    margin: 1.5rem auto 0;
    background: linear-gradient(135deg, #ff4646 0%, #e63030 50%, #cc2727 100%);
    color: var(--clr-white);
    border: 2px solid rgba(184, 31, 31, 0.5);
    border-radius: 999px;
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: all var(--transition);
    box-shadow: 0 12px 24px rgba(230, 48, 48, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quote-submit:hover,
.quote-submit:focus-visible {
    background: linear-gradient(135deg, #ff5959 0%, #ef3a3a 50%, #d62f2f 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(230, 48, 48, 0.45), 0 8px 16px rgba(0, 0, 0, 0.4);
    outline: none;
    border-color: rgba(230, 48, 48, 0.7);
}

/* ── Mobile styles ───────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--clr-bg);
        border-top: 2px solid var(--clr-red);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0 1rem;
    }

    .nav-menu.is-open {
        max-height: 400px;
        padding: 0.5rem 1rem 1rem;
    }

    .nav-link {
        padding: 0.75rem 0.5rem;
        font-size: 1rem;
        border-bottom: 1px solid #2a2a2a;
        border-radius: 0;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--clr-red);
        background: transparent;
    }

    .areas-served {
        margin-top: 1.75rem;
    }

    .overview {
        padding: 1.2rem 0.8rem 1.6rem;
        gap: 1rem;
    }

    .card {
        width: min(100%, 340px);
    }

    .services-main {
        padding-top: 1.3rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        padding-top: 1.35rem;
    }

    .gallery-header {
        margin-bottom: 1rem;
    }

    .lightbox p {
        font-size: 0.92rem;
    }

    .quote-main {
        padding-top: 1.35rem;
    }

    .quote-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    
}

@media (max-width: 900px) {
    .header {
        padding: 3rem 1rem;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1rem;
    }
}

@media (min-width: 1000px) {
    .header {
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.02em;
}
}