/*******************************/
/********* General CSS *********/
/*******************************/
:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --champagne: #c9a96e;
    --champagne-light: #d4bc8b;
    --ivory: #f5f0eb;
    --cream: #faf8f5;
    --warm-gray: #8a8a8a;
    --light-border: rgba(201, 169, 110, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--warm-gray);
    background: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--charcoal);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
}

a {
    color: var(--charcoal);
    transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

a:hover, a:active, a:focus {
    color: var(--champagne);
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: var(--cream);
    overflow: hidden;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--charcoal);
    color: var(--champagne);
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    right: 30px;
    bottom: 30px;
    transition: all 0.4s;
    z-index: 99;
    border: 1px solid var(--champagne);
}

.back-to-top:hover {
    color: var(--charcoal);
    background: var(--champagne);
}

.back-to-top i {
    line-height: 48px;
}

.btn {
    transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
}

img {
    max-width: 100%;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: auto;
    background: var(--charcoal);
    padding: 20px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar .logo {
    padding: 0;
    text-align: left;
    overflow: hidden;
}

.top-bar .logo a {
    display: inline-block;
    text-decoration: none;
}

.top-bar .logo h1 {
    margin: 0;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.top-bar .logo h1 span {
    color: var(--champagne);
    font-weight: 400;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 50px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: var(--champagne);
    font-size: 28px;
}

.top-bar .top-bar-text {
    padding-left: 12px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 2px 0;
    color: var(--champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 300;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 22px 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar {
        padding: 15px 20px;
    }

    .top-bar .logo {
        text-align: center;
    }

    .top-bar .logo h1 {
        font-size: 22px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: var(--charcoal);
    transition: all .4s;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .15);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    background: transparent !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--champagne);
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: var(--charcoal-light);
    padding: 10px 0;
}

.nav-bar .dropdown-menu .dropdown-item {
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
}

.nav-bar .dropdown-menu .dropdown-item:hover {
    color: var(--champagne);
    background: transparent;
}

.nav-bar .btn {
    color: var(--champagne);
    border: 1px solid var(--champagne);
    border-radius: 0;
    padding: 10px 28px;
    font-size: 11px;
    letter-spacing: 2px;
}

.nav-bar .btn:hover {
    color: var(--charcoal);
    background: var(--champagne);
    border-color: var(--champagne);
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 0 60px;
    }

    .nav-bar.nav-sticky {
        padding: 0 60px;
    }

    .nav-bar .navbar {
        padding: 18px 0;
    }

    .nav-bar .navbar-brand {
        display: none;
    }

    .nav-bar a.nav-link {
        padding: 8px 16px;
        font-size: 11px;
    }
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0 20px;
    }

    .nav-bar .navbar {
        padding: 12px 0;
    }

    .nav-bar .navbar-brand {
        color: var(--champagne) !important;
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        letter-spacing: 3px;
        font-weight: 500;
    }

    .nav-bar a.nav-link {
        padding: 8px 0;
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
        background: rgba(255,255,255,0.05);
    }

    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.2) 40%,
        rgba(26, 26, 26, 0.5) 100%
    );
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    min-height: 500px;
    padding: 0 15%;
}

.carousel .carousel-caption .hero-subtitle {
    color: var(--champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.carousel .carousel-caption p {
    color: rgba(255,255,255,0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.carousel .carousel-caption .btn {
    padding: 16px 48px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 0;
    transition: all .4s;
}

.carousel .carousel-caption .btn:hover {
    color: var(--charcoal);
    background: var(--champagne);
    border-color: var(--champagne);
}

.carousel .carousel-indicators li {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.4);
    border: none;
    margin: 0 6px;
}

.carousel .carousel-indicators li.active {
    background: var(--champagne);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel .carousel-caption h1 {
        font-size: 48px;
    }

    .carousel .carousel-caption {
        padding: 0 10%;
    }
}

@media (max-width: 767.98px) {
    .carousel {
        height: 80vh;
    }

    .carousel .carousel-caption {
        height: 80vh;
        padding: 0 8%;
    }

    .carousel .carousel-caption h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .carousel .carousel-caption p {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .carousel .carousel-caption .btn {
        padding: 14px 36px;
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 28px;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 0;
    padding: 120px 0 80px;
    text-align: center;
    background: var(--charcoal);
}

.page-header h2 {
    position: relative;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 1px;
    left: calc(50% - 30px);
    bottom: 0;
    background: var(--champagne);
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.page-header a:hover {
    color: var(--champagne);
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: var(--champagne);
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 60px 0 45px;
    }

    .page-header h2 {
        font-size: 32px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.3;
}

.section-header.text-center h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: var(--champagne);
    margin: 20px auto 0;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 0;
    padding: 0;
}

.feature .col-md-12,
.feature .col-lg-4 {
    background: var(--charcoal);
    border-right: 1px solid rgba(255,255,255,0.06);
}

.feature .col-lg-4:last-child {
    border-right: none;
}

.feature .col-md-12:nth-child(2n) {
    color: var(--charcoal);
    background: var(--champagne);
}

.feature .feature-item {
    min-height: 200px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon {
    position: relative;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    top: -18px;
    left: -10px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 69px;
    height: 69px;
    top: -17px;
    left: -9px;
    background: var(--charcoal);
    border-radius: 50%;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: var(--champagne);
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: var(--champagne);
    font-size: 48px;
    line-height: 48px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 8px 0;
    color: var(--champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.feature .feature-text p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: var(--charcoal);
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 100px 0;
}

.about .section-header {
    margin-bottom: 25px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--warm-gray);
}

.about .about-text a.btn {
    position: relative;
    margin-top: 25px;
    padding: 16px 48px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    border-radius: 0;
    background: transparent;
    transition: all .4s;
}

.about .about-text a.btn:hover {
    color: var(--cream);
    background: var(--charcoal);
}

@media (max-width: 767.98px) {
    .about {
        padding: 60px 0;
    }

    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 48px;
    line-height: 48px;
    color: var(--champagne);
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    color: var(--charcoal);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
}

.fact .fact-text p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fact .fact-left {
    color: var(--champagne);
    background: var(--charcoal);
}

.fact .fact-right {
    color: var(--charcoal);
    background: var(--ivory);
    border-left: 1px solid var(--light-border);
}

.fact .fact-left h2 {
    color: var(--champagne);
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 100px 0 70px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service .service-item:hover .service-img img {
    transform: scale(1.08);
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    transition: all .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: var(--charcoal);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: var(--charcoal);
    background: var(--champagne);
    border-radius: 0;
    transition: all .4s;
}

.service .service-item:hover a.btn {
    color: var(--cream);
    background: var(--champagne-light);
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(26, 26, 26, .85), rgba(26, 26, 26, .85)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    cursor: pointer;
    background: transparent;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--champagne);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--champagne);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--charcoal);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 100px 0 70px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team .team-item:hover .team-img img {
    transform: scale(1.05);
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: var(--charcoal);
    transition: all .5s;
}

.team .team-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--cream);
    transition: all .5s;
}

.team .team-text p {
    margin: 0;
    color: var(--champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team .team-item:hover .team-text {
    background: var(--champagne);
}

.team .team-item:hover .team-text h2 {
    color: var(--charcoal);
}

.team .team-item:hover .team-text p {
    color: var(--charcoal);
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    background: var(--charcoal);
}

.team .team-item:hover .team-social a:first-child {
    background: var(--champagne);
    color: var(--charcoal);
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: var(--champagne);
    color: var(--charcoal);
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: var(--champagne);
    color: var(--charcoal);
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: var(--champagne);
    color: var(--charcoal);
    left: 50px;
    transition: .3s .3s;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: var(--ivory);
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: var(--light-border);
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs {
        padding: 60px 0;
    }

    .faqs .row::after {
        display: none;
    }

    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }

    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
    background: transparent;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: transparent;
}

.faqs .card-header a {
    display: block;
    padding: 14px 25px;
    width: 100%;
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
    border: 1px solid rgba(26, 26, 26, 0.1);
    transition: all .4s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: var(--charcoal);
    color: var(--champagne);
    border-color: var(--charcoal);
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: var(--champagne);
    font-size: 10px;
    font-weight: 900;
    transition: all .4s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: var(--champagne);
    font-size: 10px;
    font-weight: 900;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--warm-gray);
    background: var(--cream);
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 0;
    padding: 100px 0;
    text-align: center;
    background: var(--charcoal);
}

.testimonial .container {
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 100px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: all .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
    opacity: 0.5;
}

.testimonial .testimonial-slider h3 {
    color: var(--champagne);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
}

.testimonial .testimonial-slider h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-style: normal;
    margin-bottom: 15px;
}

.testimonial .testimonial-slider p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    margin: 0;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 100px 0 70px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.08);
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: var(--charcoal);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--champagne);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: var(--charcoal);
    background: var(--champagne);
    border-radius: 0;
    transition: all .4s;
}

.blog .blog-item:hover a.btn {
    color: var(--cream);
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: var(--ivory);
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 1px;
    left: calc(50% - 30px);
    bottom: 0;
    background: var(--champagne);
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: var(--warm-gray);
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
    color: var(--champagne);
}

.blog .blog-text {
    padding: 15px 25px 25px 25px;
    background: var(--ivory);
}

.blog .blog-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.blog .pagination .page-link {
    color: var(--charcoal);
    border-radius: 0;
    border-color: var(--light-border);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: var(--champagne);
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 80px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 400;
    color: var(--warm-gray);
    border: 1px solid rgba(26,26,26,0.1);
    letter-spacing: 1px;
}

.single .single-tags a:hover {
    color: var(--cream);
    background: var(--charcoal);
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: var(--ivory);
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 400;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 14px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    background: var(--champagne);
    font-size: 16px;
    transition: all .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: var(--cream);
    background: var(--charcoal);
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 12px;
    color: var(--charcoal);
    background: var(--ivory);
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: var(--champagne);
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: var(--ivory);
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
    border-color: rgba(26,26,26,0.1);
}

.single .comment-form .btn {
    padding: 15px 40px;
    color: var(--cream);
    background: var(--charcoal);
    border: none;
    border-radius: 0;
    letter-spacing: 2px;
}

.single .comment-form .btn:hover {
    background: var(--champagne);
    color: var(--charcoal);
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 400;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--champagne);
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid rgba(26,26,26,0.1);
    border-radius: 0;
    font-size: 13px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: var(--champagne);
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 20px;
    color: var(--champagne);
    background: none;
    border-radius: 0;
    border: none;
}

.sidebar .search-widget .btn:hover {
    color: var(--charcoal);
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: var(--champagne);
    background: var(--charcoal);
    border-radius: 0;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: var(--charcoal);
    background: var(--champagne);
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
    font-size: 13px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--champagne);
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 400;
    color: var(--warm-gray);
    border: 1px solid rgba(26,26,26,0.1);
}

.single .tag-widget a:hover {
    color: var(--cream);
    background: var(--charcoal);
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: all .5s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.05);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 100px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 40px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 10px 24px;
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(26,26,26,0.15);
    transition: all .4s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: var(--charcoal);
    color: var(--champagne);
    border-color: var(--charcoal);
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 16px 48px;
    font-size: 11px;
    letter-spacing: 3px;
}

.portfolio .load-more .btn:hover {
    color: var(--champagne);
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    transition: all .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: var(--charcoal);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne);
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: var(--charcoal);
    background: var(--champagne);
    border-radius: 0;
    transition: all .4s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: var(--cream);
    background: var(--champagne-light);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 100px 0;
}

.contact .col-md-6 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact .col-md-6:first-child {
    background: var(--charcoal);
}

.contact .col-md-6:last-child {
    background: var(--ivory);
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: var(--champagne);
    font-size: 36px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: var(--champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact .contact-text p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: var(--charcoal);
    height: 45px;
    border-radius: 0;
    border: 1px solid rgba(26,26,26,0.12);
    background: transparent;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

.contact .contact-form textarea {
    color: var(--charcoal);
    height: 185px;
    border-radius: 0;
    border: 1px solid rgba(26,26,26,0.12);
    background: transparent;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    box-shadow: none;
    border-color: var(--champagne);
}

.contact .contact-form .form-control::placeholder {
    color: var(--warm-gray);
    opacity: 1;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.contact .contact-form .form-control::-ms-input-placeholder {
    color: var(--warm-gray);
}

.contact .contact-form .btn {
    padding: 16px 48px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--cream);
    background: var(--charcoal);
    border: none;
    border-radius: 0;
    transition: all .4s;
}

.contact .contact-form .btn:hover {
    color: var(--charcoal);
    background: var(--champagne);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 0;
    padding-top: 80px;
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne);
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    left: 0;
    bottom: 0;
    background: var(--champagne);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--champagne);
}

.footer .footer-link a:hover {
    color: var(--champagne);
    padding-left: 5px;
}

.footer .footer-contact p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer .footer-contact p i {
    width: 25px;
    color: var(--champagne);
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    padding: 0;
    text-align: center;
    line-height: 36px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0;
    transition: all .3s;
    margin-right: 5px;
}

.footer .footer-social a i {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer .footer-social a:hover {
    background: var(--champagne);
    border-color: var(--champagne);
}

.footer .footer-social a:hover i {
    color: var(--charcoal);
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0;
}

.footer .newsletter p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 15px;
}

.footer .newsletter input {
    height: 48px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 38px;
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--charcoal);
    background: var(--champagne);
    border-radius: 0;
    border: none;
    transition: all .3s;
}

.footer .newsletter .btn:hover {
    color: var(--charcoal);
    background: var(--champagne-light);
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer .footer-menu .f-menu a {
    color: rgba(255,255,255,0.4);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-menu .f-menu a:hover {
    color: var(--champagne);
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright {
    padding: 25px 15px;
}

.footer .copyright p {
    margin: 0;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: var(--champagne);
    font-weight: 400;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


/*******************************/
/****** Empire D Customs *******/
/*******************************/

.empire-divider {
    width: 60px;
    height: 1px;
    background: var(--champagne);
    margin: 30px auto;
}

.empire-section {
    padding: 100px 0;
}

.empire-section-dark {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
}

.empire-section-dark h2,
.empire-section-dark h3 {
    color: var(--cream);
}

.empire-section-ivory {
    background: var(--ivory);
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.studio-grid-item {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.studio-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.studio-grid-item:hover img {
    transform: scale(1.05);
}

.studio-grid-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.studio-grid-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.studio-grid-content p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--warm-gray);
    margin-bottom: 25px;
}

.studio-grid-content .studio-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal);
    border-bottom: 1px solid var(--champagne);
    padding-bottom: 3px;
    display: inline-block;
    width: fit-content;
}

.studio-grid-content .studio-link:hover {
    color: var(--champagne);
}

@media (max-width: 991.98px) {
    .studio-grid {
        grid-template-columns: 1fr;
    }

    .studio-grid-item {
        min-height: 300px;
    }

    .studio-grid-content {
        padding: 40px 20px;
    }

    .studio-grid-content h3 {
        font-size: 26px;
    }
}

.process-step {
    text-align: center;
    padding: 40px 30px;
}

.process-step .step-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--champagne);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.6;
}

.process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin: 0;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--charcoal);
    position: relative;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.cta-section .btn {
    padding: 16px 48px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne);
    background: transparent;
    border: 1px solid var(--champagne);
    border-radius: 0;
}

.cta-section .btn:hover {
    color: var(--charcoal);
    background: var(--champagne);
}


/*******************************/
/** Projects Page (KW-Style) ***/
/*******************************/

.projects-hero {
    background: var(--charcoal);
    padding: 120px 0 80px;
    text-align: center;
}

.projects-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.projects-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .projects-hero {
        padding: 80px 20px 50px;
    }
    .projects-hero h1 {
        font-size: 42px;
    }
}

/* Category Navigation - KW Style */
.kw-category-nav {
    background: var(--cream);
    border-bottom: 1px solid rgba(26,26,26,0.08);
    position: sticky;
    top: 0;
    z-index: 998;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.kw-category-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    min-width: max-content;
}

.kw-cat-link {
    display: inline-block;
    padding: 22px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--warm-gray);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.kw-cat-link:hover,
.kw-cat-link.active {
    color: var(--charcoal);
    border-bottom-color: var(--champagne);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .kw-category-nav-inner {
        justify-content: flex-start;
        padding: 0 15px;
    }
    .kw-cat-link {
        padding: 18px 18px;
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* Projects Grid */
.kw-projects-grid {
    padding: 0;
}

.kw-projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.kw-project-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.kw-project-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.kw-project-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.kw-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s;
}

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

.kw-project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(26,26,26,0.85));
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kw-project-item:hover .kw-project-info {
    transform: translateY(0);
    opacity: 1;
}

.kw-project-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 8px;
}

.kw-project-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 4px;
}

.kw-project-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .kw-projects-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .kw-projects-container {
        grid-template-columns: 1fr;
    }
    .kw-project-item {
        aspect-ratio: 3/4;
    }
}

/* Isotope hidden items */
.kw-project-item.kw-hidden {
    display: none;
}


/*******************************/
/** Single Project (KW-Style) **/
/*******************************/

/* Breadcrumb */
.proj-breadcrumb {
    padding: 20px 60px;
    background: var(--cream);
    border-bottom: 1px solid rgba(26,26,26,0.06);
}

.proj-breadcrumb a,
.proj-breadcrumb span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.proj-breadcrumb a:hover {
    color: var(--charcoal);
}

.proj-breadcrumb span {
    margin: 0 8px;
}

.proj-breadcrumb .proj-breadcrumb-current {
    color: var(--charcoal);
}

@media (max-width: 767.98px) {
    .proj-breadcrumb {
        padding: 15px 20px;
        font-size: 10px;
    }
}

/* Hero Image */
.proj-single-hero {
    width: 100%;
    overflow: hidden;
}

.proj-single-hero-img {
    width: 100%;
    max-height: 75vh;
    overflow: hidden;
}

.proj-single-hero-img img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

/* Tabs Bar */
.proj-tabs-bar {
    background: var(--charcoal);
    padding: 0;
}

.proj-tabs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.proj-tab-group {
    padding: 25px 40px;
    text-align: center;
}

.proj-tab-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 6px;
}

.proj-tab-value {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--cream);
}

.proj-tab-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 575.98px) {
    .proj-tab-group {
        padding: 18px 20px;
    }
    .proj-tab-divider {
        display: none;
    }
    .proj-tabs-inner {
        justify-content: space-around;
    }
}

/* Project Description */
.proj-description {
    padding: 100px 0 80px;
    background: var(--cream);
}

.proj-desc-header {
    padding-right: 40px;
}

.proj-desc-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 15px;
}

.proj-desc-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.proj-desc-divider {
    width: 60px;
    height: 1px;
    background: var(--champagne);
}

.proj-desc-text {
    padding-top: 10px;
}

.proj-desc-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.proj-desc-text p:first-child {
    font-size: 17px;
    color: var(--charcoal);
    font-weight: 300;
}

@media (max-width: 991.98px) {
    .proj-description {
        padding: 60px 0;
    }
    .proj-desc-header {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .proj-desc-header h1 {
        font-size: 36px;
    }
}

/* Project Gallery */
.proj-gallery {
    padding: 0;
    background: var(--ivory);
}

.proj-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.proj-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
}

.proj-gallery-wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.proj-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proj-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .proj-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proj-gallery-wide {
        grid-column: span 2;
    }
}

/* Project Details */
.proj-details-section {
    padding: 80px 0;
    background: var(--cream);
}

.proj-detail-block {
    padding: 30px 0;
}

.proj-detail-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--light-border);
}

.proj-detail-block p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--warm-gray);
}

.proj-stat {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(26,26,26,0.06);
}

.proj-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--champagne);
    line-height: 1;
    margin-bottom: 10px;
}

.proj-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gray);
}


/*******************************/
/*** Shop The Look Section *****/
/*******************************/

.proj-shop-section {
    padding: 100px 0;
    background: var(--ivory);
}

.proj-shop-header {
    text-align: center;
    margin-bottom: 60px;
}

.proj-shop-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 12px;
}

.proj-shop-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.proj-shop-header p {
    font-size: 14px;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto;
}

.proj-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.proj-shop-item {
    background: var(--cream);
}

.proj-shop-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.proj-shop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proj-shop-item:hover .proj-shop-img img {
    transform: scale(1.05);
}

.proj-shop-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(26,26,26,0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.proj-shop-item:hover .proj-shop-overlay {
    opacity: 1;
}

.proj-shop-btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    transition: all 0.3s;
}

.proj-shop-btn:hover {
    color: var(--charcoal);
    background: var(--champagne);
    border-color: var(--champagne);
    text-decoration: none;
}

.proj-shop-text {
    padding: 20px;
}

.proj-shop-text h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.proj-shop-material {
    display: block;
    font-size: 12px;
    color: var(--warm-gray);
    margin-bottom: 8px;
}

.proj-shop-price {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--champagne);
    letter-spacing: 0.5px;
}

.proj-shop-cta {
    text-align: center;
    padding-top: 20px;
}

.proj-shop-cta p {
    font-size: 14px;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.proj-shop-cta .btn {
    padding: 16px 48px;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    border-radius: 0;
    background: transparent;
}

.proj-shop-cta .btn:hover {
    color: var(--cream);
    background: var(--charcoal);
}

@media (max-width: 991.98px) {
    .proj-shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .proj-shop-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }
    .proj-shop-section {
        padding: 60px 0;
    }
}


/* Related Projects */
.proj-related {
    padding: 100px 0;
    background: var(--cream);
}

.proj-related-header {
    text-align: center;
    margin-bottom: 50px;
}

.proj-related-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 12px;
}

.proj-related-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--charcoal);
}

.proj-related-item {
    display: block;
    margin-bottom: 30px;
    text-decoration: none;
}

.proj-related-img {
    overflow: hidden;
    aspect-ratio: 4/5;
}

.proj-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proj-related-item:hover .proj-related-img img {
    transform: scale(1.05);
}

.proj-related-info {
    padding: 20px 0;
}

.proj-related-info span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne);
}

.proj-related-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-top: 6px;
}

.proj-related-item:hover .proj-related-info h4 {
    color: var(--champagne);
}


/*******************************/
/*** Services Page (New) *******/
/*******************************/

.svc-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(26,26,26,0.7), rgba(26,26,26,0.85)), url(../img/carousel-2.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.svc-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.svc-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 20px;
}

.svc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 15px;
}

.svc-hero p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    max-width: 550px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .svc-hero {
        height: 50vh;
        background-attachment: scroll;
    }
    .svc-hero h1 {
        font-size: 38px;
    }
}

/* Service Showcase Blocks */
.svc-showcase {
    width: 100%;
}

.svc-block {
    width: 100%;
    overflow: hidden;
}

.svc-block-light {
    background: var(--cream);
}

.svc-block-dark {
    background: var(--charcoal);
}

.svc-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.svc-block-reverse {
    direction: rtl;
}

.svc-block-reverse > * {
    direction: ltr;
}

.svc-block-img {
    overflow: hidden;
    position: relative;
}

.svc-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-block:hover .svc-block-img img {
    transform: scale(1.04);
}

.svc-block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px;
}

.svc-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.svc-block-light .svc-number {
    color: var(--charcoal);
}

.svc-block-dark .svc-number {
    color: var(--champagne);
}

.svc-block-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.svc-block-light .svc-block-content h2 {
    color: var(--charcoal);
}

.svc-block-dark .svc-block-content h2 {
    color: var(--cream);
}

.svc-divider {
    width: 50px;
    height: 1px;
    background: var(--champagne);
    margin-bottom: 25px;
}

.svc-block-content p {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.svc-block-light .svc-block-content p {
    color: var(--warm-gray);
}

.svc-block-dark .svc-block-content p {
    color: rgba(255,255,255,0.6);
}

.svc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.svc-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.svc-block-light .svc-features li {
    color: var(--charcoal);
}

.svc-block-dark .svc-features li {
    color: rgba(255,255,255,0.7);
}

.svc-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 1px;
    background: var(--champagne);
}

.svc-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.svc-block-light .svc-link {
    color: var(--charcoal);
}

.svc-block-dark .svc-link {
    color: var(--champagne);
}

.svc-link:hover {
    color: var(--champagne);
    text-decoration: none;
}

.svc-link i {
    font-size: 10px;
    transition: transform 0.3s;
}

.svc-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .svc-block-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .svc-block-reverse {
        direction: ltr;
    }
    .svc-block-img {
        min-height: 350px;
    }
    .svc-block-content {
        padding: 50px 30px;
    }
}

/* Approach Section */
.svc-approach {
    padding: 100px 0;
    background: var(--ivory);
}

.svc-approach-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 15px;
}

.svc-approach h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.2;
}

.svc-approach p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--warm-gray);
    margin-bottom: 15px;
}

.svc-approach-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(26,26,26,0.08);
}

.svc-approach-stat {
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(26,26,26,0.08);
}

.svc-approach-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--champagne);
    line-height: 1;
    margin-bottom: 8px;
}

.svc-approach-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--warm-gray);
}

@media (max-width: 991.98px) {
    .svc-approach {
        padding: 60px 0;
    }
    .svc-approach h2 {
        font-size: 32px;
    }
    .svc-approach-stats {
        margin-top: 40px;
    }
    .svc-approach-stat {
        padding: 25px;
    }
    .svc-approach-num {
        font-size: 32px;
    }
}


/*******************************/
/** Two Pillars (Homepage) *****/
/*******************************/

.pillars-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.pillar-block {
    position: relative;
    overflow: hidden;
}

.pillar-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    min-height: 500px;
}

.pillar-link:hover {
    text-decoration: none;
}

.pillar-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pillar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillar-block:hover .pillar-bg img {
    transform: scale(1.06);
}

.pillar-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.75) 100%
    );
    transition: background 0.5s;
}

.pillar-block:hover .pillar-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.75) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.65) 100%
    );
}

.pillar-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 80px 60px;
}

.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--champagne);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.pillar-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pillar-divider {
    width: 50px;
    height: 1px;
    background: var(--champagne);
    margin-bottom: 20px;
}

.pillar-content p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    max-width: 400px;
}

.pillar-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.pillar-block:hover .pillar-cta {
    color: #ffffff;
}

.pillar-cta i {
    font-size: 10px;
    transition: transform 0.3s;
}

.pillar-block:hover .pillar-cta i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .pillars-section {
        grid-template-columns: 1fr;
    }
    .pillar-link {
        min-height: 400px;
    }
    .pillar-content {
        padding: 50px 30px;
    }
    .pillar-content h2 {
        font-size: 32px;
    }
    .pillar-number {
        font-size: 48px;
    }
}


/*******************************/
/** Division Showcase (Home) ***/
/*******************************/

.division-showcase {
    padding: 100px 0 0;
    background: var(--cream);
}

.division-showcase-alt {
    background: var(--ivory);
}

.division-intro {
    max-width: 700px;
    margin: -30px auto 50px;
}

.division-intro p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--warm-gray);
}

.subservice-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.subservice-half {
    padding: 60px 40px;
}

.subservice-half-dark {
    background: var(--charcoal);
}

.subservice-half-light {
    background: var(--ivory);
}

.division-showcase-alt .subservice-half-light {
    background: var(--cream);
}

.subservice-half-header {
    text-align: center;
    margin-bottom: 40px;
}

.subservice-half-dark .subservice-half-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--cream);
    margin-bottom: 8px;
}

.subservice-half-light .subservice-half-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.subservice-half-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne);
}

.subservice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.subservice-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
    padding: 20px;
    transition: transform 0.3s;
}

.subservice-card:hover {
    transform: translateX(5px);
}

.subservice-card-img {
    width: 120px;
    height: 90px;
    overflow: hidden;
    flex-shrink: 0;
}

.subservice-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.subservice-card:hover .subservice-card-img img {
    transform: scale(1.08);
}

.subservice-half-dark .subservice-card-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 6px;
}

.subservice-half-light .subservice-card-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.subservice-half-dark .subservice-card-text p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.subservice-half-light .subservice-card-text p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--warm-gray);
    margin: 0;
}

.btn-empire {
    display: inline-block;
    padding: 16px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal);
    background: transparent;
    border: 1px solid var(--charcoal);
    transition: all 0.4s;
}

.btn-empire:hover {
    color: var(--cream);
    background: var(--charcoal);
    text-decoration: none;
}

.division-showcase-alt .btn-empire {
    color: var(--charcoal);
    border-color: var(--charcoal);
}

@media (max-width: 991.98px) {
    .subservice-split {
        grid-template-columns: 1fr;
    }
    .subservice-half {
        padding: 40px 20px;
    }
    .division-showcase {
        padding: 60px 0 0;
    }
}

@media (max-width: 575.98px) {
    .subservice-card {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 15px 10px;
    }
    .subservice-card-img {
        width: 80px;
        height: 60px;
    }
}


/*******************************/
/** Division Nav (Services) ****/
/*******************************/

.division-nav {
    background: var(--charcoal);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 998;
}

.division-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.division-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.division-nav-link:hover,
.division-nav-link.active {
    color: var(--champagne);
    border-bottom-color: var(--champagne);
    text-decoration: none;
}

.division-nav-num {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    opacity: 0.4;
}

@media (max-width: 767.98px) {
    .division-nav-link {
        padding: 16px 20px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}


/*******************************/
/** Service Category Headers ***/
/*******************************/

.svc-category-header {
    padding: 100px 0;
}

.svc-category-header-dark {
    background: var(--charcoal);
}

.svc-category-header-light {
    background: var(--ivory);
}

.svc-cat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 15px;
}

.svc-category-header-dark h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 15px;
}

.svc-category-header-light h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.svc-category-header-dark p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
}

.svc-category-header-light p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--warm-gray);
}

.svc-cat-img {
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.svc-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .svc-category-header {
        padding: 60px 0;
    }
    .svc-category-header-dark h2,
    .svc-category-header-light h2 {
        font-size: 36px;
    }
    .svc-cat-img {
        margin-top: 30px;
        min-height: 250px;
    }
}


/*******************************/
/** Sub-services Grid **********/
/*******************************/

.svc-subservices {
    padding: 0;
    background: var(--cream);
}

.svc-subservices-alt {
    background: var(--ivory);
}

.svc-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.svc-sub-item {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid rgba(26,26,26,0.06);
    transition: box-shadow 0.4s;
}

.svc-subservices-alt .svc-sub-item {
    background: var(--ivory);
}

.svc-sub-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    z-index: 2;
}

.svc-sub-item-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.svc-sub-img {
    overflow: hidden;
    height: 220px;
}

.svc-sub-item-wide .svc-sub-img {
    height: 100%;
    min-height: 200px;
}

.svc-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.svc-sub-content {
    padding: 30px;
}

.svc-sub-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    color: var(--champagne);
    font-size: 16px;
    margin-bottom: 15px;
}

.svc-sub-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.svc-sub-content p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 15px;
}

.svc-sub-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.svc-sub-link:hover {
    color: var(--charcoal);
    text-decoration: none;
}

.svc-sub-link i {
    font-size: 9px;
    transition: transform 0.3s;
}

.svc-sub-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .svc-sub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-sub-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .svc-sub-grid {
        grid-template-columns: 1fr;
    }
    .svc-sub-item-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .svc-sub-img {
        height: 180px;
    }
}


/*******************************/
/** About Page Styles **********/
/*******************************/

.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(26,26,26,0.6), rgba(26,26,26,0.85)), url(../img/carousel-1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.about-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 15px;
    line-height: 1.1;
}

.about-hero p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    max-width: 550px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .about-hero {
        height: 50vh;
        background-attachment: scroll;
    }
    .about-hero h1 {
        font-size: 36px;
    }
}

/* About Story */
.about-story {
    padding: 100px 0;
    background: var(--cream);
}

.about-story-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--charcoal);
    padding: 25px 30px;
    text-align: center;
}

.about-story-badge .badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--champagne);
    line-height: 1;
    margin-bottom: 5px;
}

.about-story-badge .badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.about-story-text {
    padding-left: 40px;
}

.about-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 15px;
}

.about-story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-story-text p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--warm-gray);
    margin-bottom: 15px;
}

@media (max-width: 991.98px) {
    .about-story {
        padding: 60px 0;
    }
    .about-story-img {
        margin-bottom: 40px;
        min-height: 300px;
    }
    .about-story-text {
        padding-left: 0;
    }
    .about-story-badge {
        right: 20px;
    }
}

/* Construction Focus */
.about-construction {
    background: var(--charcoal);
}

.about-const-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-const-img {
    overflow: hidden;
    min-height: 500px;
}

.about-const-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-const-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-const-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 15px;
}

.about-const-content p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
}

.about-const-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.const-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.const-highlight:hover {
    border-color: var(--champagne);
}

.const-highlight i {
    color: var(--champagne);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.const-highlight span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 991.98px) {
    .about-const-grid {
        grid-template-columns: 1fr;
    }
    .about-const-img {
        min-height: 300px;
    }
    .about-const-content {
        padding: 50px 30px;
    }
}

@media (max-width: 575.98px) {
    .about-const-highlights {
        grid-template-columns: 1fr;
    }
}

/* Versatility Section */
.about-versatility {
    padding: 100px 0;
    background: var(--cream);
}

.versatility-card {
    text-align: center;
    padding: 40px 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(26,26,26,0.06);
    transition: all 0.4s;
    background: var(--cream);
}

.versatility-card:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.versatility-icon {
    margin-bottom: 20px;
}

.versatility-icon [class^="flaticon-"]::before {
    font-size: 48px;
    color: var(--champagne);
    margin: 0;
}

.versatility-icon .fas {
    font-size: 36px;
    color: var(--champagne);
}

.versatility-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 12px;
    transition: color 0.4s;
}

.versatility-card:hover h4 {
    color: var(--champagne);
}

.versatility-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin: 0;
    transition: color 0.4s;
}

.versatility-card:hover p {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 767.98px) {
    .about-versatility {
        padding: 60px 0;
    }
}
