:root {
    --red: #c0392b;
    --dark: #1a1a1a;
    --darker: #111111;
    --light-bg: #f8f6f3;
    --grey: #6b6b6b;
    --border: #e2ddd8;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 24px 52px rgba(26, 26, 26, 0.14);
    --transition: all 0.35s ease;
    --transition-smooth: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 220px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark) !important;
    text-decoration: none;
    line-height: 1.2;
}

.navbar-brand .site-logo {
    display: block;
    width: auto;
    height: 52px;
    max-width: 210px;
    object-fit: contain;
}

.navbar-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.navbar-brand span.sub {
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--grey);
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.4rem 0.9rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--red);
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 0.45rem;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown:hover > .dropdown-menu-services {
        display: grid;
    }

    .navbar .dropdown:hover > .dropdown-toggle {
        color: var(--red) !important;
    }
}

.dropdown-item {
    border-radius: 4px;
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    padding: 0.55rem 0.75rem;
    white-space: normal;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(192, 57, 43, 0.08);
    color: var(--red);
}

.dropdown-menu-services {
    display: none;
    left: auto;
    right: 0;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 0.1rem 0.25rem;
    width: min(560px, calc(100vw - 2rem));
    min-width: 0;
}

.btn-quote {
    background: var(--red);
    color: #fff !important;
    border-radius: 4px;
    font-size: 0.83rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem !important;
    transition: background 0.2s;
}

.btn-quote:hover {
    background: #a52d20;
     color: #fff !important;
}

/* ─── HERO ─── */
.hero {
    background: var(--darker);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.hero-left {
    padding: 80px 0 80px 0;
    z-index: 2;
    position: relative;
}

.hero-text-rotator {
    display: grid;
    align-items: start;
    max-width: 620px;
    margin-bottom: 0.4rem;
}

.hero-text-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
}

.hero-text-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #aaa;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-text-slide h1,
.hero-text-slide h2 {
    font-family: 'DM Serif Display',Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.hero p {
    color: #bbb;
    font-size: 0.97rem;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-red {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.72rem 1.6rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    margin-right: 10px;
}

.btn-red:hover {
    background: #a52d20;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.72rem 1.6rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-right {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    display: block;
}

.hero-right-col {
    padding: 0;
    overflow: hidden;
}

/* Stats bar */
.stats-bar {
    background: var(--dark);
    border-top: 1px solid #2a2a2a;
}

.stat-item {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid #2a2a2a;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--red);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ─── SECTION COMMON ─── */
section {
    padding: 90px 0;
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow h3 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    padding-top: 7px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}


.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}



.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.section-title .accent {
    color: var(--red);
}

/* ─── TOP SERVICES ─── */
.top-services-section {
    background: var(--light-bg);
    padding-top: 80px;
    padding-bottom: 80px;
}

.top-services-panel {
    height: 100%;
    background: #660415;
    color: #fff;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.top-services-panel .section-eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.top-services-panel .section-eyebrow::before {
    background: rgba(255, 255, 255, 0.7);
}

.top-services-panel > h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.top-services-section a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
    /* border-bottom: 1px solid rgba(192, 57, 43, 0.35); */
    transition: color 0.2s ease, border-color 0.2s ease;
}

.top-services-section a:hover,
.top-services-section a:focus {
    color: #a52d20;
    border-bottom-color: #a52d20;
}

.top-services-panel a {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.top-services-panel a:hover,
.top-services-panel a:focus {
    color: #ffd7d2;
    border-bottom-color: #ffd7d2;
}

.top-services-panel > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
}

.top-project-slider {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 8px;
    background: #240009;
}

.top-project-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.top-project-slide.active {
    opacity: 1;
    visibility: visible;
}

.top-project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 1.1s ease, filter 0.45s ease;
}

.home-page .top-project-slider::after,
.home-page .vision-image-wrap::after,
.home-page .about-image-card::after,
.home-page .project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 46%, transparent 62%);
    transform: translateX(-125%);
    transition: transform 0.75s ease;
}

.home-page .top-project-slider:hover::after,
.home-page .vision-image-wrap:hover::after,
.home-page .about-image-card:hover::after,
.home-page .project-card:hover::after {
    transform: translateX(125%);
}

.home-page .top-project-slider:hover .top-project-slide.active img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.top-project-slider::after,
.vision-image-wrap::after,
.about-image-card::after,
.project-card::after,
.split-image-col::after,
.image-grid-card::after,
.carousel-luxury::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 46%, transparent 62%);
    transform: translateX(-125%);
    transition: transform 0.75s ease;
    z-index: 4;
}

.top-project-slider:hover::after,
.vision-image-wrap:hover::after,
.about-image-card:hover::after,
.project-card:hover::after,
.split-image-col:hover::after,
.image-grid-card:hover::after,
.gallery-card:hover .carousel-luxury::before {
    transform: translateX(125%);
}

.top-project-slider:hover .top-project-slide.active img,
.vision-image-wrap:hover img,
.about-image-card:hover img,
.project-card:hover img,
.split-image-col:hover img,
.image-grid-card:hover img,
.gallery-card:hover .slide-img.active {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.top-service-card::before,
.service-card::before,
.contact-card::before,
.testimonial-card-modern::before,
.testimonial-statement-block::before,
.insight-card::before,
.quote-card::before,
.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(135deg, rgba(192, 57, 43, 0.1), transparent 36%),
        linear-gradient(315deg, rgba(26, 26, 26, 0.07), transparent 42%);
    transition: opacity 0.35s ease;
}

.top-service-card:hover,
.service-card:hover,
.contact-card:hover,
.testimonial-card-modern:hover,
.testimonial-statement-block:hover,
.insight-card:hover,
.quote-card:hover,
.gallery-card:hover,
.client-card:hover,
.stat-card:hover,
.widget-nav-menu:hover,
.widget-banner:hover {
    transform: translateY(-7px);
    border-color: rgba(192, 57, 43, 0.34);
    box-shadow: var(--shadow-card-hover);
}

.top-service-card:hover::before,
.service-card:hover::before,
.contact-card:hover::before,
.testimonial-card-modern:hover::before,
.testimonial-statement-block:hover::before,
.insight-card:hover::before,
.quote-card:hover::before,
.gallery-card:hover::before {
    opacity: 1;
}

.about-image-wrapper img,
.service-hero-img,
.content-tab img {
    transition: transform 0.75s ease, filter 0.45s ease, box-shadow 0.35s ease;
}

.about-image-wrapper:hover img,
.service-hero-img:hover,
.content-tab img:hover {
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.04);
    box-shadow: var(--shadow-card-hover);
}

.top-project-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 70px 22px 22px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.84));
}

.top-project-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.top-project-caption p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 0;
}

.top-service-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-page .top-service-card::before,
.home-page .service-card::before,
.home-page .contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(135deg, rgba(192, 57, 43, 0.1), transparent 36%),
        linear-gradient(315deg, rgba(26, 26, 26, 0.07), transparent 42%);
    transition: opacity 0.35s ease;
}

.home-page .top-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(192, 57, 43, 0.34);
    box-shadow: 0 24px 52px rgba(26, 26, 26, 0.14);
}

.home-page .top-service-card:hover::before,
.home-page .service-card:hover::before,
.home-page .contact-card:hover::before {
    opacity: 1;
}

.top-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: rgba(192, 57, 43, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.home-page .top-service-card:hover .top-service-icon {
    transform: translateY(-2px) scale(1.08);
    background: var(--red);
    color: #fff;
}

.top-service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.top-service-card p {
    color: var(--grey);
    font-size: 0.86rem;
    line-height: 1.75;
    margin: 0;
}

/* ─── ABOUT ─── */
/* VISION */
.vision-section {
    background: #fff;
    padding-top: 86px;
    padding-bottom: 10px;
}

.vision-content {
    max-width: 620px;
}

.vision-content p {
    color: var(--grey);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.vision-content strong {
    color: var(--dark);
    font-weight: 800;
}

.vision-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.vision-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.75s ease, filter 0.45s ease;
}

.home-page .vision-image-wrap {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-page .vision-image-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(26, 26, 26, 0.18);
}

.home-page .vision-image-wrap:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.vision-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: 190px;
    background: var(--red);
    color: #fff;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.vision-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1;
}

.about-section {
    background: #fff;
}

.about-content p {
    color: var(--grey);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 0;
}

.about-feature-list {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--grey);
    font-size: 0.84rem;
    line-height: 1.65;
}

.about-feature-list i {
    color: var(--red);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 0 0 auto;
}

.about-feature-list strong {
    color: var(--dark);
    font-weight: 800;
}

.about-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 412px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    min-height: 412px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.75s ease, filter 0.45s ease;
}

.home-page .about-image-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-page .about-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(26, 26, 26, 0.18);
}

.home-page .about-image-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.about-image-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(17, 17, 17, 0.86);
    border-left: 4px solid var(--red);
    border-radius: 6px;
    padding: 14px 16px;
}

.about-image-caption p {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 420px;
    position: relative;
}

.about-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-img-grid .years-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--red);
    color: #fff;
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.about-img-grid .years-badge strong {
    font-size: 1.4rem;
    display: block;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.feature-item h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--grey);
    margin: 0;
}

/* ─── SERVICES ─── */
.services-section {
    background: var(--light-bg);
    color: var(--dark);
    position: relative;
}

.services-header {
    max-width: 680px;
    margin-bottom: 2rem;
}

.services-section .section-title {
    color: var(--dark);
}

.services-section .section-eyebrow {
    color: var(--red);
}

.services-section .section-eyebrow::before {
    background: var(--red);
}

.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--grey);
    padding: 0.62rem 1rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    margin: 0;
}

.tab-btn.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.service-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--border);
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.home-page .service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 52px rgba(26, 26, 26, 0.14);
    border-color: rgba(192, 57, 43, 0.38);
}

.service-card .icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 0.8rem;
    transition: transform 0.35s ease, color 0.35s ease;
}

.home-page .service-card:hover .icon {
    transform: translateY(-2px) scale(1.08);
    color: #a52d20;
}

.service-card h3 {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.55rem;
}

.service-card p {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

.service-card a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

.service-card a:hover,
.service-card a:focus {
    color: #a52d20;
    border-bottom-color: #a52d20;
}

/* ─── PROJECTS ─── */
.projects-section {
    background: #fff;
}

.projects-header {
    max-width: 620px;
    margin-bottom: 2rem;
}

.project-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--dark);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.75s ease, filter 0.45s ease;
}

.home-page .project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 58px rgba(26, 26, 26, 0.2);
}

.home-page .project-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.05);
}

.project-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.42) 42%, transparent 78%);
    transition: background 0.35s ease;
}

.home-page .project-card:hover .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(192, 57, 43, 0.28) 46%, transparent 82%);
}

.project-card .label {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.45;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.home-page .project-card:hover .label {
    transform: translateY(-4px);
}

.project-card.tall {
    aspect-ratio: 4/3;
}

/* ─── CONTACT ─── */
.contact-section {
    background: var(--light-bg);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.6rem;
}

.contact-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-page .contact-card:hover {
    transform: translateY(-7px);
    border-color: rgba(192, 57, 43, 0.34);
    box-shadow: 0 24px 52px rgba(26, 26, 26, 0.14);
}

.contact-card .icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--red);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.home-page .contact-card:hover .icon-wrap {
    transform: translateY(-2px) scale(1.08);
    background: var(--red);
    color: #fff;
}

.contact-card h6 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-card p {
    font-size: 0.82rem;
    color: var(--grey);
    margin: 0;
}

/* ─── CTA SECTION ─── */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
    padding: 90px 0;
    position: relative;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
}

.cta-section p {
    color: #ccc;
    font-size: 0.9rem;
    max-width: 400px;
}

/* Quote Form */
.quote-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-page .quote-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(135deg, rgba(192, 57, 43, 0.1), transparent 36%),
        linear-gradient(315deg, rgba(26, 26, 26, 0.07), transparent 42%);
    transition: opacity 0.35s ease;
}

.home-page .quote-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.home-page .quote-card:hover::before {
    opacity: 1;
}

.quote-card h5 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.quote-card .form-control,
.quote-card .form-select {
    border-radius: 4px;
    font-size: 0.83rem;
    border-color: var(--border);
    padding: 0.6rem 0.9rem;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.btn-submit {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.72rem 1.4rem;
    width: 100%;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #a52d20;
}

/* ─── FOOTER ─── */
footer {
    background: #111;
    color: #aaa;
    padding: 60px 0 24px;
}

footer .footer-brand {
    max-width: 620px;
    margin-bottom: 34px;
}

footer .footer-brand img {
    display: block;
    width: auto;
    height: 54px;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: 1rem;
}

footer .brand-col .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

footer .brand-col .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

footer .brand-col .logo-name {
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.2;
}

footer .brand-col .logo-name span {
    display: block;
    font-weight: 400;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p.desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #888;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #222;
    border-radius: 4px;
    color: #aaa;
    margin-right: 6px;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

footer .social-icons a:hover {
    background: var(--red);
    color: #fff;
}

footer h6.footer-heading {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

footer ul li a:hover {
    color: var(--red);
}

footer .footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.78rem;
    color: #555;
    text-align: center;
}

footer .footer-services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
}

/* ─── UTILS ─── */
.tab-content-pane {
    display: none;
}

.tab-content-pane.active {
    display: block;
}

/* ─── MOBILE ─── */
@media (max-width: 991px) {
    .navbar-nav {
        align-items: stretch !important;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0 0 0.35rem 0.75rem;
    }

    .dropdown-menu-services {
        display: none;
        left: 0;
        right: auto;
        width: 100%;
        min-width: 100%;
    }

    .dropdown-item {
        padding: 0.45rem 0.7rem;
    }

    .navbar-brand .site-logo {
        height: 44px;
        max-width: 180px;
    }

    footer .footer-services-list {
        grid-template-columns: 1fr;
    }

    .top-services-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .top-services-panel {
        padding: 22px;
    }

    .top-project-slider {
        min-height: 320px;
    }

    .service-tabs {
        justify-content: center;
        overflow-x: auto;
        /* flex-wrap: nowrap; */
        padding-bottom: 0.25rem;
    }

    .tab-btn {
        flex: 0 0 auto;
    }

    .vision-section {
        padding-top: 58px;
        padding-bottom: 10px;
    }

    .vision-content {
        max-width: none;
    }

    .vision-image-wrap,
    .vision-image-wrap img {
        min-height: 320px;
    }

    .about-image-card,
    .about-image-card img {
        min-height: 320px;
    }

    .project-card {
        aspect-ratio: 1 / 0.78;
    }

    .project-card .label {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .hero {
        min-height: auto;
    }

    .hero-left {
        padding: 50px 0 30px;
    }

    .hero-right-col {
        display: none;
    }

    .stats-bar .stat-item {
        border-right: none;
        border-bottom: 1px solid #2a2a2a;
    }

    .about-img-grid {
        height: 280px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-text-slide h1,
    .hero-text-slide h2 {
        font-size: 2rem;
    }

    .about-img-grid {
        height: 220px;
    }

    .project-card.tall {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-service-card,
    .service-card,
    .project-card,
    .contact-card,
    .quote-card,
    .vision-image-wrap,
    .about-image-card,
    .split-image-col,
    .image-grid-card,
    .testimonial-card-modern,
    .testimonial-statement-block,
    .insight-card,
    .gallery-card,
    .client-card,
    .stat-card,
    .widget-nav-menu,
    .widget-banner,
    .top-project-slide img,
    .vision-image-wrap img,
    .about-image-card img,
    .project-card img,
    .split-image-col img,
    .image-grid-card img,
    .slide-img,
    .about-image-wrapper img,
    .service-hero-img,
    .content-tab img,
    .top-service-icon,
    .service-card .icon,
    .contact-card .icon-wrap,
    .project-card .label {
        transition: none;
    }

    .top-project-slider::after,
    .vision-image-wrap::after,
    .about-image-card::after,
    .project-card::after,
    .split-image-col::after,
    .image-grid-card::after,
    .carousel-luxury::before,
    .top-service-card::before,
    .service-card::before,
    .contact-card::before,
    .testimonial-card-modern::before,
    .testimonial-statement-block::before,
    .insight-card::before,
    .quote-card::before,
    .gallery-card::before {
        display: none;
    }

    .top-service-card:hover,
    .service-card:hover,
    .project-card:hover,
    .contact-card:hover,
    .quote-card:hover,
    .vision-image-wrap:hover,
    .about-image-card:hover,
    .split-image-col:hover,
    .image-grid-card:hover,
    .testimonial-card-modern:hover,
    .testimonial-statement-block:hover,
    .insight-card:hover,
    .gallery-card:hover,
    .client-card:hover,
    .stat-card:hover,
    .widget-nav-menu:hover,
    .widget-banner:hover,
    .project-card:hover .label,
    .top-service-card:hover .top-service-icon,
    .service-card:hover .icon,
    .contact-card:hover .icon-wrap,
    .about-image-wrapper:hover img,
    .service-hero-img:hover,
    .content-tab img:hover {
        transform: none;
    }

    .home-page .top-service-card,
    .home-page .service-card,
    .home-page .project-card,
    .home-page .contact-card,
    .home-page .quote-card,
    .home-page .vision-image-wrap,
    .home-page .about-image-card,
    .home-page .top-project-slide img,
    .home-page .vision-image-wrap img,
    .home-page .about-image-card img,
    .home-page .project-card img,
    .home-page .top-service-icon,
    .home-page .service-card .icon,
    .home-page .contact-card .icon-wrap,
    .home-page .project-card .label {
        transition: none;
    }

    .home-page .top-project-slider::after,
    .home-page .vision-image-wrap::after,
    .home-page .about-image-card::after,
    .home-page .project-card::after,
    .home-page .quote-card::before {
        display: none;
    }

    .home-page .top-service-card:hover,
    .home-page .service-card:hover,
    .home-page .project-card:hover,
    .home-page .contact-card:hover,
    .home-page .quote-card:hover,
    .home-page .vision-image-wrap:hover,
    .home-page .about-image-card:hover,
    .home-page .project-card:hover .label,
    .home-page .top-service-card:hover .top-service-icon,
    .home-page .service-card:hover .icon,
    .home-page .contact-card:hover .icon-wrap {
        transform: none;
    }
}


/* ===============================================
GoTop BUtton
------------------------*/

