/* =========================================================
   ROOT
========================================================= */

:root {
    --gold: #c9a35d;
    --gold-dark: #a98545;
    --dark: #111111;
    --dark-2: #191919;
    --dark-3: #242424;
    --light: #f6f5f2;
    --white: #ffffff;
    --text: #666666;
    --border: #e5e3df;

    --heading-font: "Montserrat", sans-serif;
    --body-font: "DM Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    border: none;
}

.section-padding {
    padding: 110px 0;
}

/* =========================================================
   PRELOADER
========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.7s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-logo {
    width: 100px;
    height: 100px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-content span {
    display: block;
    margin-top: 20px;

    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;

    color: var(--white);
}

@keyframes loaderPulse {

    0% {
        transform: scale(0.85);
        opacity: 0.6;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.85);
        opacity: 0.6;
    }

}

/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #0b0b0b;
    color: #aaa;
    font-size: 12px;
}

.top-bar-inner {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar i {
    color: var(--gold);
    margin-right: 5px;
}

.top-right a {
    color: #aaa;
    transition: 0.3s;
}

.top-right a:hover {
    color: var(--gold);
}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    background: var(--white);
    min-height: 82px;
    transition: 0.4s ease;
    z-index: 1000;
}

.main-navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.navbar-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--dark);
    white-space: nowrap;
}

.brand-name span {
    color: var(--gold);
}

@media (max-width: 575px) {

    .navbar-logo {
        width: 43px;
        height: 43px;
    }

    .brand-name {
        font-size: 15px;
        letter-spacing: 1px;
    }

}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 30px 13px !important;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 12px;
    min-width: 240px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: var(--dark);
    color: var(--white);
}

.nav-btn,
.primary-btn,
.dark-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

.nav-btn:hover,
.primary-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.nav-btn i,
.primary-btn i,
.dark-btn i {
    font-size: 16px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: calc(100vh - 122px);
    position: relative;
    display: flex;
    align-items: center;
    background:
        url("../images/about-img2.jpg")
        center/cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.66) 45%,
            rgba(0, 0, 0, 0.2) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 90px 0;
}

.hero-subtitle,
.section-tag {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-subtitle span {
    width: 45px;
    height: 1px;
    background: var(--gold);
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: clamp(50px, 7vw, 88px);
    line-height: 1.02;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content h1 strong {
    display: block;
    color: var(--gold);
}

.hero-content p {
    max-width: 580px;
    color: #d5d5d5;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 24px;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

.outline-btn:hover {
    background: var(--white);
    color: var(--dark);
}

.hero-scroll {
    position: absolute;
    right: 45px;
    bottom: 45px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(90deg);
    transform-origin: right;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: 3px;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: var(--dark);
    color: var(--white);
}

.stat-box {
    padding: 35px 25px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-box:last-child {
    border-right: 0;
}

.stat-box h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    margin-bottom: 5px;
    color: var(--gold);
}

.stat-box p {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    margin-bottom: 35px;
}

.section-heading h2 {
    font-family: var(--heading-font);
    color: var(--dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    margin-top: 15px;
    margin-bottom: 18px;
}

.section-heading h2 span {
    color: var(--gold);
    display: block;
}

.section-heading p {
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-images {
    position: relative;
    padding-right: 80px;
    padding-bottom: 80px;
}

.about-main-image {
    height: 530px;
    overflow: hidden;
}

.about-main-image img {
    height: 100%;
    object-fit: cover;
}

.about-small-image {
    position: absolute;
    width: 270px;
    height: 220px;
    right: 0;
    bottom: 0;
    border: 12px solid var(--white);
}

.about-small-image img {
    height: 100%;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    left: 0;
    bottom: 35px;
    background: var(--gold);
    color: var(--white);
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-card strong {
    font-family: var(--heading-font);
    font-size: 38px;
}

.experience-card span {
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-intro {
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.about-section p {
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features div {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.about-features i {
    color: var(--gold);
    font-size: 18px;
}

.dark-btn {
    background: var(--dark);
}

.dark-btn:hover {
    background: var(--gold);
    color: var(--white);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--light);
}

.service-card {
    background: var(--white);
    padding: 40px;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--gold);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.featured-service {
    background: var(--dark);
    color: var(--white);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: var(--heading-font);
    font-size: 45px;
    font-weight: 800;
    color: rgba(0,0,0,0.06);
}

.featured-service .service-number {
    color: rgba(255,255,255,0.08);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--heading-font);
    color: var(--dark);
    font-size: 21px;
    margin-bottom: 15px;
}

.featured-service h3 {
    color: var(--white);
}

.service-card p {
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 25px;
}

.service-card a {
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-service a {
    color: var(--gold);
}

.service-card a i {
    margin-left: 8px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    background: var(--white);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 35px;
}

.projects-header .section-heading {
    margin-bottom: 0;
}

.project-card {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.project-large {
    height: 500px;
}

.project-card img {
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 35%,
        rgba(0,0,0,0.85)
    );
}

.project-overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: var(--white);
}

.project-overlay span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-overlay h3 {
    font-family: var(--heading-font);
    font-size: 23px;
    margin: 8px 0 0;
}

.project-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.project-card:hover .project-arrow {
    background: var(--gold);
    border-color: var(--gold);
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    background: var(--light);
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.why-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    background: var(--dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.why-item h4 {
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 17px;
    margin-bottom: 7px;
}

.why-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.why-image {
    height: 570px;
    position: relative;
}

.why-image img {
    height: 100%;
    object-fit: cover;
}

.why-badge {
    position: absolute;
    left: -30px;
    bottom: 40px;
    background: var(--gold);
    color: var(--white);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-badge i {
    font-size: 28px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--white);
}

.process-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
}

.process-item {
    text-align: center;
    width: 210px;
}

.process-item > i {
    display: flex;
    width: 65px;
    height: 65px;
    margin: auto;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--gold);
    font-size: 26px;
}

.process-number {
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-item h4 {
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 16px;
    margin: 18px 0 10px;
}

.process-item p {
    font-size: 12px;
    line-height: 1.6;
}

.process-line {
    width: 70px;
    height: 1px;
    background: var(--border);
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section {
    background: var(--dark);
}

.testimonial-box {
    text-align: center;
    color: var(--white);
}

.quote-icon {
    color: var(--gold);
    font-size: 60px;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--heading-font);
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.6;
    margin: 20px auto 35px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-author {
    text-align: left;
}

.testimonial-author h5 {
    margin: 0 0 3px;
}

.testimonial-author span {
    color: #999;
    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;
    padding: 120px 0;
    background:
        url("../images/construction-team.jpg")
        center/cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.78);
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: auto;
}

.cta-content h2 {
    font-family: var(--heading-font);
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.05;
    margin: 18px 0;
}

.cta-content h2 span {
    color: var(--gold);
}

.cta-content p {
    color: #ccc;
    margin-bottom: 30px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #0b0b0b;
    color: #888;
    padding: 80px 0 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.footer-logo:hover {
    color: var(--white);
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.footer-brand-name {
    color: var(--white);
    white-space: nowrap;
}

.footer-brand-name span {
    color: var(--gold);
}

@media (max-width: 575px) {

    .footer-logo-img {
        width: 45px;
        height: 45px;
    }

    .footer-brand-name {
        font-size: 16px;
        letter-spacing: 1px;
    }

}
.footer p {
    line-height: 1.8;
    font-size: 13px;
}

.footer h5 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 15px;
    margin-bottom: 25px;
}

.footer li {
    margin-bottom: 12px;
}

.footer li a {
    color: #888;
    font-size: 13px;
    transition: 0.3s;
}

.footer li a:hover {
    color: var(--gold);
}

.footer-contact p {
    display: flex;
    gap: 12px;
}

.footer-contact i {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
    color: #aaa;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid #252525;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: #777;
    font-size: 11px;
}

.footer-bottom a:hover {
    color: var(--gold);
}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: 0.3s;
}

.call-btn {
    background: var(--dark);
}

.whatsapp-btn {
    background: #1fbd61;
}

.top-btn {
    background: var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn:hover {
    transform: translateY(-4px);
    color: var(--white);
}


/* =========================================================
   ABOUT PAGE
========================================================= */

.breadcrumb-section {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;

    background:
        url("../images/about-img2.jpg")
        center/cover no-repeat;

    color: var(--white);
}

.breadcrumb-section-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.48)
        );
}

.breadcrumb-section-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 70px 0;
}

.breadcrumb-section-content h1 {
    font-family: var(--heading-font);
    font-size: clamp(45px, 6vw, 72px);
    line-height: 1.08;
    margin: 18px 0;
}

.breadcrumb-section-content h1 span {
    color: var(--gold);
    display: block;
}

.breadcrumb-section-content p {
    max-width: 600px;
    color: #ddd;
    line-height: 1.8;
    font-size: 16px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 12px;
}

.breadcrumb-custom a {
    color: var(--gold);
}

.breadcrumb-custom span {
    color: #aaa;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro-section {
    background: var(--white);
}

.about-intro-image {
    position: relative;
    padding-right: 55px;
    padding-bottom: 55px;
}

.about-intro-image > img {
    height: 550px;
    object-fit: cover;
}

.about-year-card {
    position: absolute;
    right: 0;
    bottom: 0;

    background: var(--gold);
    color: var(--white);

    padding: 25px 28px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.about-year-card strong {
    font-family: var(--heading-font);
    font-size: 42px;
}

.about-year-card span {
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1.5;
}

.about-content h2 {
    font-family: var(--heading-font);
    color: var(--dark);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.15;
    margin: 15px 0 22px;
}

.about-content h2 span {
    color: var(--gold);
    display: block;
}

.about-content p {
    line-height: 1.8;
}

.about-content .lead-text {
    color: var(--dark);
    font-size: 17px;
    font-weight: 500;
}

.about-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 28px;
}

.about-check-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.about-check-list i {
    color: var(--gold);
}


/* =========================================================
   VISION & MISSION
========================================================= */

.vision-section {
    background: var(--light);
}

.vision-card {
    height: 100%;
    padding: 40px;
    background: var(--white);
    display: flex;
    gap: 25px;
    border-bottom: 3px solid var(--gold);
}

.vision-card.dark-card {
    background: var(--dark);
    color: var(--white);
}

.vision-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;

    background: var(--gold);
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
}

.vision-card > div:last-child > span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
}

.vision-card h3 {
    font-family: var(--heading-font);
    color: var(--dark);
    margin: 8px 0 12px;
}

.dark-card h3 {
    color: var(--white);
}

.vision-card p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   ABOUT WHY
========================================================= */

.about-why-section {
    background: var(--white);
}

.about-side-heading {
    font-family: var(--heading-font);
    color: var(--dark);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.15;
    margin: 15px 0 20px;
}

.about-side-heading span {
    color: var(--gold);
    display: block;
}

.about-why-section > .container > .row > .col-lg-5 > p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-box {
    padding: 30px;
    background: var(--light);
    border-bottom: 2px solid transparent;
    transition: .3s ease;
}

.why-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,.07);
}

.why-box-icon {
    width: 52px;
    height: 52px;
    background: var(--dark);
    color: var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    margin-bottom: 20px;
}

.why-box h4 {
    font-family: var(--heading-font);
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   CORE VALUES
========================================================= */

.values-section {
    background: var(--light);
}

.value-card {
    background: var(--white);
    padding: 35px 28px;
    min-height: 290px;
    position: relative;
    overflow: hidden;
    transition: .35s ease;
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;

    color: #e9e6e0;

    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 800;
}

.value-card > i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dark);
    color: var(--gold);

    font-size: 23px;
    margin-bottom: 25px;
}

.value-card h4 {
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 13px;
    line-height: 1.7;
}





/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    background: var(--white);
}

.about-cta-box {
    background: var(--dark);
    padding: 65px 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.about-cta-box h2 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 48px);
    margin: 15px 0;
}

.about-cta-box h2 span {
    color: var(--gold);
}

.about-cta-box p {
    color: #aaa;
    margin: 0;
}


/* =========================================================
   PROJECT PAGE 
========================================================= */


.project-intro-section {
    background: var(--white);
}

.project-intro-title {
    font-family: var(--heading-font);
    color: var(--dark);
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.12;
    margin-top: 15px;
}

.project-intro-title span {
    display: block;
    color: var(--gold);
}

.project-intro-text {
    line-height: 1.9;
    margin: 0;
}


/* =========================================================
   PROJECT FILTER
========================================================= */

.project-filter-section {
    background: var(--white);
}

.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    padding: 20px 0;
}

.project-filter {
    background: transparent;
    color: var(--dark);

    padding: 11px 22px;

    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    cursor: pointer;
    transition: .3s ease;
}

.project-filter:hover,
.project-filter.active {
    background: var(--dark);
    color: var(--white);
}


/* =========================================================
   PROJECT PORTFOLIO
========================================================= */

.project-portfolio-section {
    background: var(--white);
}

.portfolio-card {
    height: 420px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.portfolio-large {
    height: 530px;
}

.portfolio-medium {
    height: 450px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .7s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.9),
            rgba(0,0,0,.05) 65%
        );
}

.portfolio-overlay {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    color: var(--white);
}

.portfolio-info span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.portfolio-info h3 {
    font-family: var(--heading-font);
    font-size: 23px;
    margin: 8px 0 5px;
}

.portfolio-info p {
    margin: 0;
    color: #bbb;
    font-size: 12px;
}

.portfolio-arrow {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.5);

    color: var(--white);

    transition: .3s ease;
}

.portfolio-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.project-item {
    transition:
        opacity .4s ease,
        transform .4s ease;
}

.project-item.hide-project {
    opacity: 0;
    transform: scale(.95);
    pointer-events: none;
    display: none;
}


/* =========================================================
   PROJECT STATS
========================================================= */

.project-stats-section {
    position: relative;

    padding: 80px 0;

    background:
        url("../images/projects/project-stats.jpg")
        center/cover no-repeat;

    color: var(--white);
}

.project-stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.8);
}

.project-stat {
    position: relative;
    z-index: 2;

    text-align: center;

    padding: 20px;

    border-right: 1px solid rgba(255,255,255,.15);
}

.project-stat:last-child {
    border-right: 0;
}

.project-stat h3 {
    font-family: var(--heading-font);
    font-size: 45px;
    color: var(--white);
    margin-bottom: 8px;
}

.project-stat h3 span {
    color: var(--gold);
}

.project-stat p {
    margin: 0;

    color: #aaa;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* =========================================================
   PROJECT CTA
========================================================= */

.project-cta-section {
    background: var(--light);
}

.project-cta-box {
    background: var(--dark);

    padding: 65px 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}

.project-cta-box h2 {
    font-family: var(--heading-font);
    color: var(--white);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin: 15px 0;
}

.project-cta-box h2 span {
    color: var(--gold);
}

.project-cta-box p {
    color: #aaa;
    margin: 0;
}


/* =========================================================
   PROCESS INTRO
========================================================= */

.process-intro-section {
    background: var(--white);
}

.process-intro-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.12;

    margin-top: 15px;
}

.process-intro-title span {
    display: block;
    color: var(--gold);
}

.process-intro-text {
    line-height: 1.85;
    margin-bottom: 15px;
}


/* =========================================================
   PROCESS STEPS
========================================================= */

.process-steps-section {
    background: var(--light);
}

.process-timeline {
    position: relative;

    max-width: 1050px;

    margin: 70px auto 0;
}

.process-timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    background: #d8d3cb;

    transform: translateX(-50%);
}

.process-step {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 80px 1fr;

    align-items: center;

    min-height: 300px;
}

.process-step-number {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: var(--dark);
    color: var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 3;

    font-family: var(--heading-font);

    font-size: 15px;

    border: 5px solid var(--light);
}

.process-step-icon {
    grid-column: 2;

    width: 70px;
    height: 70px;

    margin: auto;

    background: var(--gold);
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;

    z-index: 2;
}

.process-step-content {
    background: var(--white);

    padding: 35px;

    box-shadow: 0 12px 35px rgba(0,0,0,.05);

    border-bottom: 2px solid var(--gold);
}

.process-step:not(.reverse-step) .process-step-content {
    grid-column: 3;
}

.process-step.reverse-step .process-step-content {
    grid-column: 1;
    grid-row: 1;
}

.process-step-content > span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.process-step-content h3 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 25px;

    margin: 10px 0;
}

.process-step-content p {
    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.process-step-content ul {
    list-style: none;

    padding: 0;
    margin: 0;

    display: flex;
    flex-wrap: wrap;

    gap: 12px 20px;
}

.process-step-content li {
    font-size: 11px;

    font-weight: 600;

    color: var(--dark);
}

.process-step-content li i {
    color: var(--gold);

    margin-right: 5px;
}


/* =========================================================
   WHAT YOU CAN EXPECT
========================================================= */

.process-expect-section {
    background: var(--white);
}

.process-expect-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.12;

    margin: 15px 0 20px;
}

.process-expect-title span {
    display: block;
    color: var(--gold);
}

.process-expect-section .col-lg-5 > p {
    line-height: 1.8;

    margin-bottom: 30px;
}

.expect-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.expect-card {
    padding: 30px;

    background: var(--light);

    border-bottom: 2px solid transparent;

    transition: .3s ease;
}

.expect-card:hover {
    transform: translateY(-5px);

    border-color: var(--gold);

    background: var(--white);

    box-shadow:
        0 15px 35px rgba(0,0,0,.07);
}

.expect-icon {
    width: 52px;
    height: 52px;

    background: var(--dark);

    color: var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;

    margin-bottom: 20px;
}

.expect-card h4 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 17px;

    margin-bottom: 10px;
}

.expect-card p {
    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   PROCESS BENEFITS
========================================================= */

.process-benefits-section {
    background: var(--light);
}

.benefit-card {
    position: relative;

    min-height: 290px;

    padding: 35px;

    background: var(--white);

    overflow: hidden;

    transition: .35s ease;
}

.benefit-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

.benefit-card > span {
    position: absolute;

    right: 20px;
    top: 15px;

    font-family: var(--heading-font);

    font-size: 55px;

    color: #ece8e1;
}

.benefit-card > i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dark);

    color: var(--gold);

    font-size: 23px;

    margin-bottom: 25px;
}

.benefit-card h3 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 21px;

    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 13px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   PROCESS CTA
========================================================= */

.process-cta-section {
    background: var(--white);
}

.process-cta-box {
    background: var(--dark);

    padding: 65px 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.process-cta-box h2 {
    font-family: var(--heading-font);

    color: var(--white);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin: 15px 0;
}

.process-cta-box h2 span {
    color: var(--gold);
}

.process-cta-box p {
    color: #aaa;

    margin: 0;
}

/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-intro-section {
    background: var(--white);
}

.contact-intro-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.12;

    margin-top: 15px;
}

.contact-intro-title span {
    display: block;
    color: var(--gold);
}

.contact-intro-text {
    line-height: 1.85;
    margin: 0;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info-section {
    background: var(--white);

    padding-bottom: 80px;
}

.contact-info-card {
    height: 100%;

    padding: 35px;

    display: flex;

    gap: 20px;

    background: var(--light);

    border-bottom: 2px solid transparent;

    transition: .3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);

    background: var(--white);

    border-color: var(--gold);

    box-shadow:
        0 15px 35px rgba(0,0,0,.07);
}

.contact-info-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dark);

    color: var(--gold);

    font-size: 22px;
}

.contact-info-card > div:last-child > span {
    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-info-card h4 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 20px;

    margin: 7px 0 12px;
}

.contact-info-card p {
    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 15px;
}

.contact-info-card a {
    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-info-card a i {
    color: var(--gold);

    margin-left: 5px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-section {
    background: var(--light);
}

.contact-form-image {
    height: 100%;

    min-height: 700px;

    position: relative;

    overflow: hidden;
}

.contact-form-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.contact-form-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.9),
            rgba(0,0,0,.1) 70%
        );
}

.contact-image-content {
    position: absolute;

    left: 40px;
    right: 40px;
    bottom: 40px;

    z-index: 2;

    color: var(--white);
}

.contact-image-content span {
    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-image-content h3 {
    font-family: var(--heading-font);

    font-size: 35px;

    line-height: 1.2;

    margin-top: 12px;
}

.contact-image-content strong {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--white);

    height: 100%;

    padding: 55px;
}

.contact-form-wrapper > h2 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

    margin: 15px 0 10px;
}

.contact-form-wrapper > h2 span {
    display: block;
    color: var(--gold);
}

.contact-form-wrapper > p {
    font-size: 13px;

    color: var(--muted);

    margin-bottom: 30px;
}

.form-group label {
    display: block;

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    background: var(--light);

    color: var(--dark);

    padding: 14px 16px;

    outline: none;

    font-family: var(--body-font);

    font-size: 13px;

    transition: .3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: var(--white);

    box-shadow: none;
}

.contact-submit {
    border: 0;

    margin-top: 8px;
}


/* =========================================================
   MAP
========================================================= */

.contact-map-section {
    width: 100%;

    height: 450px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;

    border: 0;

    display: block;

    filter: grayscale(100%);
}


/* =========================================================
   FAQ
========================================================= */

.contact-faq-section {
    background: var(--white);
}

.contact-faq-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.12;

    margin: 15px 0 20px;
}

.contact-faq-title span {
    display: block;
    color: var(--gold);
}

.contact-faq-section .col-lg-5 > p {
    line-height: 1.8;

    max-width: 430px;
}

.contact-accordion {
    border-top: 1px solid var(--border);
}

.contact-accordion .accordion-item {
    border: 0;

    border-bottom: 1px solid var(--border);
}

.contact-accordion .accordion-button {
    padding: 22px 5px;

    background: transparent;

    box-shadow: none;

    color: var(--dark);

    font-family: var(--heading-font);

    font-size: 16px;

    font-weight: 600;
}

.contact-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);

    background: transparent;

    box-shadow: none;
}

.contact-accordion .accordion-button::after {
    background-size: 13px;
}

.contact-accordion .accordion-body {
    padding: 0 5px 22px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta-section {
    background: var(--light);
}

.contact-cta-box {
    background: var(--dark);

    padding: 60px 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.contact-cta-box h2 {
    font-family: var(--heading-font);

    color: var(--white);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin: 15px 0 0;
}

.contact-cta-box h2 span {
    display: block;
    color: var(--gold);
}


/* =========================================================
   ARCHITECTURE & DESIGN PAGE
========================================================= */

.ad-intro-section {
    background: var(--white);
}

.ad-intro-image {
    position: relative;

    height: 600px;

    overflow: hidden;
}

.ad-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ad-image-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    background: var(--dark);

    color: var(--white);

    padding: 20px 25px;

    display: flex;

    align-items: center;

    gap: 15px;
}

.ad-image-badge strong {
    font-family: var(--heading-font);

    font-size: 42px;

    color: var(--gold);
}

.ad-image-badge span {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    line-height: 1.5;
}

.ad-intro-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.1;

    margin: 15px 0 25px;
}

.ad-intro-title span {
    display: block;
    color: var(--gold);
}

.ad-intro-section p {
    font-size: 14px;

    line-height: 1.9;
}

.ad-intro-points {
    margin-top: 28px;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.ad-intro-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 600;
}

.ad-intro-points i {
    color: var(--gold);

    font-size: 18px;
}


/* =========================================================
   SERVICES
========================================================= */

.ad-services-section {
    background: var(--light);
}

.ad-services-section .section-heading {
    max-width: 750px;
}

.ad-services-section .section-heading h2,
.ad-detail-section h2 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.12;

    margin: 15px 0;
}

.ad-services-section h2 span,
.ad-detail-section h2 span {
    color: var(--gold);
}

.ad-services-section .section-heading p {
    line-height: 1.8;
}

.ad-service-card {
    position: relative;

    min-height: 350px;

    padding: 35px;

    background: var(--white);

    overflow: hidden;

    border-bottom: 2px solid transparent;

    transition: .35s ease;
}

.ad-service-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

.ad-service-number {
    position: absolute;

    right: 20px;
    top: 10px;

    font-family: var(--heading-font);

    font-size: 65px;

    color: #eee9e1;
}

.ad-service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dark);

    color: var(--gold);

    font-size: 23px;

    margin-bottom: 25px;
}

.ad-service-card h3 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 23px;

    margin-bottom: 14px;
}

.ad-service-card p {
    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.ad-service-card a {
    color: var(--dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.ad-service-card a i {
    color: var(--gold);

    margin-left: 5px;
}

/* =========================================================
   CTA
========================================================= */

.ad-cta-section {
    background: var(--white);
}

.ad-cta-box {
    padding: 65px 70px;

    background: var(--dark);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.ad-cta-box h2 {
    font-family: var(--heading-font);

    color: var(--white);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    margin: 15px 0;
}

.ad-cta-box h2 span {
    display: block;
    color: var(--gold);
}

.ad-cta-box p {
    color: #aaa;

    margin: 0;
}


/* =========================================================
   SERVICE INTRODUCTION
========================================================= */

.rr-intro-section {
    background: var(--white);
}

.rr-intro-image {
    height: 600px;

    position: relative;

    overflow: hidden;
}

.rr-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s ease;
}

.rr-intro-image:hover img {
    transform: scale(1.04);
}

.rr-image-label {
    position: absolute;

    right: 25px;
    bottom: 25px;

    padding: 18px 25px;

    background: var(--dark);

    color: var(--white);

    display: flex;

    align-items: center;

    gap: 15px;
}

.rr-image-label span {
    font-size: 9px;

    letter-spacing: 2px;

    color: #aaa;
}

.rr-image-label strong {
    font-family: var(--heading-font);

    font-size: 25px;

    color: var(--gold);
}

.rr-intro-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.1;

    margin: 15px 0 25px;
}

.rr-intro-title span {
    display: block;

    color: var(--gold);
}

.rr-intro-section p {
    font-size: 14px;

    line-height: 1.9;
}

.rr-intro-points {
    margin-top: 28px;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.rr-intro-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 600;
}

.rr-intro-points i {
    color: var(--gold);

    font-size: 18px;
}


/* =========================================================
   RENOVATION SERVICES
========================================================= */

.rr-services-section {
    background: var(--light);
}

.rr-services-section .section-heading {
    max-width: 760px;
}

.rr-services-section .section-heading h2 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.12;

    margin: 15px 0;
}

.rr-services-section .section-heading h2 span {
    color: var(--gold);
}

.rr-services-section .section-heading p {
    line-height: 1.8;
}

.rr-service-card {
    height: 100%;

    min-height: 340px;

    padding: 35px;

    background: var(--white);

    border-bottom: 2px solid transparent;

    transition: .35s ease;
}

.rr-service-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

.rr-service-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 25px;
}

.rr-service-top > span {
    font-family: var(--heading-font);

    color: #ddd;

    font-size: 42px;

    line-height: 1;
}

.rr-service-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--dark);

    color: var(--gold);

    font-size: 21px;
}

.rr-service-card h3 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 22px;

    margin-bottom: 14px;
}

.rr-service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.rr-service-card a {
    color: var(--dark);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.rr-service-card a i {
    color: var(--gold);

    margin-left: 5px;
}


/* =========================================================
   CTA
========================================================= */

.rr-cta-section {
    background: var(--white);
}

.rr-cta-box {
    min-height: 300px;

    padding: 60px 70px;

    background:
        linear-gradient(
            110deg,
            rgba(0, 0, 0, .98),
            rgba(25, 25, 25, .94)
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}

.rr-cta-content {
    max-width: 700px;
}

.rr-cta-content h2 {
    font-family: var(--heading-font);

    color: var(--white);

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.12;

    margin: 15px 0;
}

.rr-cta-content h2 span {
    display: block;

    color: var(--gold);
}

.rr-cta-content p {
    color: #aaa;

    line-height: 1.8;

    margin: 0;
}



/* =========================================================
   INDUSTRIAL PAGE 
========================================================= */


.ic-intro-section {
    background: var(--white);
}

.ic-intro-image {
    height: 600px;

    position: relative;

    overflow: hidden;
}

.ic-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s ease;
}

.ic-intro-image:hover img {
    transform: scale(1.04);
}

.ic-image-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    background: var(--dark);

    color: var(--white);

    padding: 18px 24px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.ic-image-badge strong {
    font-family: var(--heading-font);

    color: var(--gold);

    font-size: 38px;
}

.ic-image-badge span {
    font-size: 9px;

    line-height: 1.5;

    letter-spacing: 1.5px;
}

.ic-intro-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.1;

    margin: 15px 0 25px;
}

.ic-intro-title span {
    display: block;

    color: var(--gold);
}

.ic-intro-section p {
    font-size: 14px;

    line-height: 1.9;
}

.ic-intro-points {
    margin-top: 28px;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.ic-intro-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 600;
}

.ic-intro-points i {
    color: var(--gold);

    font-size: 18px;
}


/* =========================================================
   ARCHITECTURE / INDUSTRIAL SERVICES
========================================================= */

.ic-services-section {
    background: var(--light);
}

.ic-services-section .section-heading {
    max-width: 760px;
}

.ic-services-section .section-heading h2 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.12;

    margin: 15px 0;
}

.ic-services-section .section-heading h2 span {
    color: var(--gold);
}

.ic-services-section .section-heading p {
    line-height: 1.8;
}

.ic-service-card {
    height: 100%;

    min-height: 350px;

    padding: 35px;

    background: var(--white);

    border-bottom: 2px solid transparent;

    transition: .35s ease;
}

.ic-service-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

.ic-service-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 25px;
}

.ic-service-top > span {
    font-family: var(--heading-font);

    color: #dedbd5;

    font-size: 42px;

    line-height: 1;
}

.ic-service-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--dark);

    color: var(--gold);

    font-size: 21px;
}

.ic-service-card h3 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 22px;

    margin-bottom: 14px;
}

.ic-service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.ic-service-card a {
    color: var(--dark);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.ic-service-card a i {
    color: var(--gold);

    margin-left: 5px;
}


/* =========================================================
   CTA
========================================================= */

.ic-cta-section {
    background: var(--white);
}

.ic-cta-box {
    min-height: 300px;

    padding: 60px 70px;

    background:
        linear-gradient(
            110deg,
            rgba(0, 0, 0, .98),
            rgba(25, 25, 25, .94)
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}

.ic-cta-content {
    max-width: 700px;
}

.ic-cta-content h2 {
    font-family: var(--heading-font);

    color: var(--white);

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.12;

    margin: 15px 0;
}

.ic-cta-content h2 span {
    display: block;

    color: var(--gold);
}

.ic-cta-content p {
    color: #aaa;

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   SERVICE INTRODUCTION
========================================================= */

.cc-intro-section {
    background: var(--white);
}

.cc-intro-image {
    height: 600px;

    position: relative;

    overflow: hidden;
}

.cc-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s ease;
}

.cc-intro-image:hover img {
    transform: scale(1.04);
}

.cc-image-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    padding: 18px 24px;

    background: var(--dark);

    color: var(--white);

    display: flex;

    align-items: center;

    gap: 15px;
}

.cc-image-badge strong {
    font-family: var(--heading-font);

    color: var(--gold);

    font-size: 38px;
}

.cc-image-badge span {
    font-size: 9px;

    line-height: 1.5;

    letter-spacing: 1.5px;
}

.cc-intro-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.1;

    margin: 15px 0 25px;
}

.cc-intro-title span {
    display: block;

    color: var(--gold);
}

.cc-intro-section p {
    font-size: 14px;

    line-height: 1.9;
}

.cc-intro-points {
    margin-top: 28px;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.cc-intro-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 600;
}

.cc-intro-points i {
    color: var(--gold);

    font-size: 18px;
}


/* =========================================================
   COMMERCIAL SERVICES
========================================================= */

.cc-services-section {
    background: var(--light);
}

.cc-services-section .section-heading {
    max-width: 760px;
}

.cc-services-section .section-heading h2 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.12;

    margin: 15px 0;
}

.cc-services-section .section-heading h2 span {
    color: var(--gold);
}

.cc-services-section .section-heading p {
    line-height: 1.8;
}

.cc-service-card {
    height: 100%;

    min-height: 350px;

    padding: 35px;

    background: var(--white);

    border-bottom: 2px solid transparent;

    transition: .35s ease;
}

.cc-service-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

.cc-service-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 25px;
}

.cc-service-top > span {
    font-family: var(--heading-font);

    color: #dedbd5;

    font-size: 42px;

    line-height: 1;
}

.cc-service-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--dark);

    color: var(--gold);

    font-size: 21px;
}

.cc-service-card h3 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 22px;

    margin-bottom: 14px;
}

.cc-service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.cc-service-card a {
    color: var(--dark);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.cc-service-card a i {
    color: var(--gold);

    margin-left: 5px;
}


/* =========================================================
   CTA
========================================================= */

.cc-cta-section {
    background: var(--white);
}

.cc-cta-box {
    min-height: 300px;

    padding: 60px 70px;

    background:
        linear-gradient(
            110deg,
            rgba(0, 0, 0, .98),
            rgba(25, 25, 25, .94)
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}

.cc-cta-content {
    max-width: 700px;
}

.cc-cta-content h2 {
    font-family: var(--heading-font);

    color: var(--white);

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.12;

    margin: 15px 0;
}

.cc-cta-content h2 span {
    display: block;

    color: var(--gold);
}

.cc-cta-content p {
    color: #aaa;

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   RESIDENTIAL CONSTRUCTION PAGE
========================================================= */

.rc-intro-section {
    background: var(--white);
}

.rc-intro-image {
    height: 600px;

    position: relative;

    overflow: hidden;
}

.rc-intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s ease;
}

.rc-intro-image:hover img {
    transform: scale(1.04);
}

.rc-image-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    padding: 18px 24px;

    background: var(--dark);

    color: var(--white);

    display: flex;

    align-items: center;

    gap: 15px;
}

.rc-image-badge strong {
    font-family: var(--heading-font);

    color: var(--gold);

    font-size: 38px;
}

.rc-image-badge span {
    font-size: 9px;

    line-height: 1.5;

    letter-spacing: 1.5px;
}

.rc-intro-title {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.1;

    margin: 15px 0 25px;
}

.rc-intro-title span {
    display: block;

    color: var(--gold);
}

.rc-intro-section p {
    font-size: 14px;

    line-height: 1.9;
}

.rc-intro-points {
    margin-top: 28px;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.rc-intro-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 600;
}

.rc-intro-points i {
    color: var(--gold);

    font-size: 18px;
}


/* =========================================================
   ARCHITECTURE SERVICES
========================================================= */

.rc-services-section {
    background: var(--light);
}

.rc-services-section .section-heading {
    max-width: 760px;
}

.rc-services-section .section-heading h2 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.12;

    margin: 15px 0;
}

.rc-services-section .section-heading h2 span {
    color: var(--gold);
}

.rc-services-section .section-heading p {
    line-height: 1.8;
}

.rc-service-card {
    height: 100%;

    min-height: 350px;

    padding: 35px;

    background: var(--white);

    border-bottom: 2px solid transparent;

    transition: .35s ease;
}

.rc-service-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

.rc-service-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 25px;
}

.rc-service-top > span {
    font-family: var(--heading-font);

    color: #dedbd5;

    font-size: 42px;

    line-height: 1;
}

.rc-service-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--dark);

    color: var(--gold);

    font-size: 21px;
}

.rc-service-card h3 {
    font-family: var(--heading-font);

    color: var(--dark);

    font-size: 22px;

    margin-bottom: 14px;
}

.rc-service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.rc-service-card a {
    color: var(--dark);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.rc-service-card a i {
    color: var(--gold);

    margin-left: 5px;
}


/* =========================================================
   CTA
========================================================= */

.rc-cta-section {
    background: var(--white);
}

.rc-cta-box {
    min-height: 300px;

    padding: 60px 70px;

    background:
        linear-gradient(
            110deg,
            rgba(0, 0, 0, .98),
            rgba(25, 25, 25, .94)
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}

.rc-cta-content {
    max-width: 700px;
}

.rc-cta-content h2 {
    font-family: var(--heading-font);

    color: var(--white);

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.12;

    margin: 15px 0;
}

.rc-cta-content h2 span {
    display: block;

    color: var(--gold);
}

.rc-cta-content p {
    color: #aaa;

    line-height: 1.8;

    margin: 0;
}

