@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Inspaire - Architecture and Interior Design HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Why Choose Us css
07. Our Services css
08. Intro Video css
09. Latest Project css
10. How We Work css
11. Our Skills css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Image Gallery css
23. FAQs Page css
24. Contact Us Page css
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz@0,9..40;1,9..40&display=swap'); */






:root {
    --primary-color: #C89545;
    --secondery-color: #F7F1E7;
    --text-color: #242424;
    --accent-color: #A77A3B;
    --white-color: #FFFFFF;
    --divider-color: #EAF0EC;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    /* --default-font			: "DM Sans", sans-serif; font-optical-sizing: auto; */

}

/************************************/
/*** 	   02. General css		  ***/
/************************************/
@font-face {
    font-family: 'Felidae';

    font-weight: 400;
    src: local('Felidae Regular'),
        url('../fonts/Felidae.woff') format('woff');
}

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.07rem;
    background-color: var(--white-color);
    color: var(--text-color);
    font-family: 'Felidae', sans-serif;


}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}


.navbar-nav .nav-link.active {
    color: bisque !important;
    /* Your desired active color */
    font-weight: bold;

}





.my-float {
    margin-top: 16px;
}

p {
    line-height: 1.7em;
    margin-bottom: 1.6em;
    font-family: sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.07em;
    color: #C89545;
    letter-spacing: 0.07em;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;

}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

/* .image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: #C89545;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
} */

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover {
    background: transparent;
    color: var(--white-color);
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translate(-18px, -50%);
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted {
    background-color: var(--white-color);
    color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
    color: var(--white-color);
}

.btn-default.btn-highlighted::before {
    background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
    filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
    background-color: var(--accent-color);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #3F3428 !important;
    background: #3F3428 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
    margin-right: 30px;
}

.section-btn {
    text-align: end;
}

.section-title-content {
    margin-left: 120px;
}

.section-title-content p {
    margin: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.07em;
    text-transform: capitalize;
    color: #C89545;
    padding-left: 35px;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 5px;
}

.section-title h1 {
    font-size: 80px;
    font-weight: 400;

    cursor: none;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h1 span,
.section-title h2 span {
    color: #C89545;
}

.section-title p {
    margin-top: 30px;
    margin-bottom: 0;
}













.section-title1dark-section p {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: relative;
    z-index: 100;
    margin-top: -19px;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
    padding: 18px 0;
    align-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .navbar {
    border-bottom: none;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 6px;
    position: relative;
}

.main-menu ul li a {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: bold;
    padding: 15px 14px !important;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 6px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: bisque;
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-180deg);
    color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background: url('../images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 280px 0 250px;
    min-height: 100vh;
    margin-top: -200px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}



.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 230px 0 230px;
    min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}




.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
    color: var(--white-color);
}

.hero-content .section-title p {
    font-size: 22px;
    font-weight: 400;
    color: var(--white-color);
    width: 100%;
    max-width: 600px;
}

.hero-content .section-title h3::before {
    filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted {
    margin-left: 30px;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us {
    background-image: url('../images/section-bg-shape-1.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 100px 0;
}

.about-us-images {
    position: relative;
    background-image: url(../images/about-us-bg-shape.svg);
    background-repeat: no-repeat;
    background-position: left 60px bottom 40px;
    background-size: auto;
    padding-right: 100px;
    padding-bottom: 180px;
    margin-right: 30px;
}












.about-us-content-body {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.about-us-content-body::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    border: 1px solid var(--divider-color);
    width: 1px;
    height: 100%;
}

.about-us-content-info {
    width: calc(50% - 40px);
}

.about-us-content-list {
    margin-bottom: 40px;
}

.about-us-content-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-us-content-list ul li {
    position: relative;
    font-weight: bold;
    color: var(--primary-color);
    padding-left: 30px;
    margin-bottom: 15px;
}

.about-us-content-list ul li:last-child {
    margin-bottom: 0;
}

.about-us-content-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.about-us-contact-list {
    width: calc(50% - 40px);
}

.about-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.about-contact-item:last-child {
    margin-bottom: 0;
}

.about-contact-item .icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
    background-color: var(--primary-color);
}

.about-contact-item .icon-box figure {
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.about-contact-item .icon-box img {
    max-width: 40px;
    border-radius: 50%;
}

.about-contact-item .icon-box i {
    font-size: 18px;
    color: var(--white-color);
}

.about-contact-content {
    width: calc(100% - 55px);
}

.about-contact-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.about-contact-content p {
    font-weight: 500;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/





/* Brown color for inactive bullets */
.swiper-pagination-bullet {
    background-color: #D6B06A !important;
    opacity: 1;
    /* Optional: make bullets fully opaque */
}

/* Optional: darker shade for active bullet */
.swiper-pagination-bullet-active {
    background-color: #8A5A20 !important;
    /* Dark brown */
}













.why-choose-img-box-1 {
    display: flex;
    gap: 20px;
    width: 100%;
}










/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
    padding: 100px 0;
}

.service-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}





.service-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
}

.service-btn a {
    background-color: var(--accent-color);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.service-btn a:hover {
    background-color: var(--primary-color);
}

.service-btn a img {
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.service-btn a:hover img {
    transform: rotate(0)
}






/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid {
    padding: 0;
}

.intro-video-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.intro-video-image a {
    display: block;
    cursor: none;
}

.intro-video-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.intro-video-image img {
    width: 100%;
    aspect-ratio: 1 / 0.41;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-play-button a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.video-play-button a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/


.our-Project-nav {
    text-align: center;
    margin-bottom: 60px;
}

.our-Project-nav ul {
    list-style: none;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    padding: 0;
    margin: 0;
}

.our-Project-nav ul li a {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.2em;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
}

.our-Project-nav ul li a:after {
    top: -8px;
    bottom: auto;
    left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.project-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}


.project-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(20px);
    border-radius: 50%;
    transform: translate(-50%, -30%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.project-btn a {
    width: 100px;
    height: 100px;
    background: var(--dark-divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.project-btn img {
    max-width: 24px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
    background: var(--primary-color);
}

.project-btn a:hover img {
    transform: rotate(0deg);
}







/************************************/
/***      10. How We Work css     ***/
/************************************/








.how-work-company-slider {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding-top: 60px;
}

.how-work-company-slider .company-logo {
    text-align: center;
}

.how-work-company-slider .company-logo img {
    width: 100%;
    max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill {
    padding: 20px 0;
    background: url('../images/section-bg-shape-2.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.skills-progress-bar {
    margin-bottom: 40px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-data .skill-title {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary-color);
}

.skill-data .skill-no {
    font-size: 16px;
    color: var(--primary-color);
    margin-left: 20px;
}

.skill-progress {
    width: 100%;
    height: 12px;
    background: var(--divider-color);
    border-radius: 99px;
    position: relative;
}

.skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 99px;
}

.our-skill-image {
    position: relative;
    padding-bottom: 155px;
    margin-left: 65px;
}

.our-skill-img-1 {
    width: 333px;
    position: relative;
    background: url('../images/our-skill-img-bg-dot.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 84px auto;
    padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure {
    display: block;
}

.our-skill-img-1 img {
    width: 100%;
    aspect-ratio: 1/1.37;
    object-fit: cover;
}

.our-skill-img-2 {
    width: 202px;
    position: absolute;
    top: 70px;
    right: 0;
}

.our-skill-img-2 img {
    width: 100%;
    aspect-ratio: 1/0.93;
    object-fit: cover;
}

.our-skill-img-3 {
    width: 333px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.our-skill-img-3 img {
    width: 100%;
    aspect-ratio: 1/0.97;
    object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/







.testimonial-slider {
    width: 100%;
    max-width: 620px;
    margin-bottom: 40px;
    padding-bottom: -30px;
    border-bottom: 1px solid var(--divider-color);
}

.mybtn {
    position: relative;
    display: inline-block;

    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
    background-color: white;
    color: #C89545;


    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mybtn:hover {
    background-color: #C89545;
    color: white;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}














.testimonial-client-rating {
    display: inline-block;
    background: var(--accent-color);
    padding: 0px 5px 3px 5px;
    line-height: 1em;
}

.testimonial-client-rating i {
    font-size: 10px;
    color: var(--white-color);
}


/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog {
    padding: 100px 0;
    background: url('../images/section-bg-shape-2.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}






.post-item-content {
    margin-bottom: 15px;
}

.post-item-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h3 a {
    color: inherit;
}

.post-item-btn a {
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 25px;
}

.post-item-btn a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
    width: 17px;
    height: 16px;
    background: url('../images/arrow-dark.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
    transform: translate(2px, -50%);
}

.email-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: bisque;
    ;
    /* or any color you prefer */
    text-decoration: none;
}








.footer-newsletter-form p {
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
    display: flex;
    background: var(--white-color);
    overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
    width: 85%;
    border: none;
    border-radius: 0;
    color: var(--text-color);
    background: transparent;
    padding: 13px 10px;
    box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.footer-newsletter-form button {
    background-color: transparent;
    width: 15%;
    border: none;
    padding: 0;
}

.footer-newsletter-form button i {
    color: var(--accent-color);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
    color: var(--primary-color);
}

.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    text-align: center;
    margin-top: 35px;
    padding: 35px 0 0;
}


/************************************/
/***     15. About Us Page css 	  ***/
/************************************/
.active {
    color: #ff6600;
    /* Change to your preferred color */
    font-weight: bold;
    /* Makes it stand out */

}


.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;


    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 80px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 0.07em;
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    font-size: 20px;
    color: var(--white-color);
}

.about-us.page-about-us {
    background: transparent;
}

.about-facility-list {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-facility-item {
    width: calc(33.33% - 20px);
    display: flex;
}

.about-facility-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.about-facility-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-facility-item:hover .icon-box:before {
    transform: scale(1);
}

.about-facility-item .icon-box img {
    max-width: 24px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-facility-content {
    width: calc(100% - 80px);
}

.about-facility-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.about-facility-content p {
    margin-bottom: 0;
}

.vision-mission {
    padding: 100px 0 50px;
    background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.vision-mission-box {
    background-color: var(--secondery-color);
    padding: 45px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 150px;
}

.vision-mission-item {
    position: relative;
    width: calc(50% - 75px);
}

.vision-mission-item::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    right: -75px;
    bottom: 0;
    background-color: var(--divider-color);
    z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
    display: none;
}

.vision-mission-item .icon-box {
    position: relative;
    width: 95px;
    height: 95px;
    background: var(--divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.vision-mission-item:hover .icon-box:before {
    transform: scale(1);
}

.vision-mission-item .icon-box img {
    position: relative;
    max-width: 36px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.vision-mission-content p {
    margin: 0;
}

.best-selling {
    background: url(../images/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 50px 0 100px;
}

.best-selling-content-img {
    margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
    display: block;
}

.best-selling-content-img img {
    width: 100%;
    aspect-ratio: 1 / 0.42;
    object-fit: cover;
}

.best-selling-content .section-title {
    margin-bottom: 0;
}

.best-selling-iamge img {
    width: 100%;
    aspect-ratio: 1 / 0.93;
    object-fit: cover;
}








.team-readmore-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}

.team-readmore-btn a {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
    background-color: var(--primary-color);
}

.team-readmore-btn img {
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
    transform: rotate(0deg);
}










.our-faqs {
    padding: 100px 0;
}

.our-faqs-content {
    margin-right: 70px;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 600;

    color: var(--primary-color);
    align-items: start;
    padding-right: 35px;
    letter-spacing: 0.07rem;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
    margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    text-align: right;
    top: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.faq-accordion .accordion-body {
    padding-right: 35px;
}

.faq-accordion .accordion-body p {
    margin: 0;
}

.our-faqs-image {
    text-align: right;
}

.our-faqs-image figure {
    display: block;
}

.our-faqs-image img {
    width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
}

.our-clients {
    background-color: var(--secondery-color);
    padding: 100px 0;
}

.our-clients .our-clients-box {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.our-client-slider .client-logo {
    text-align: center;
}

.our-client-slider .client-logo img {
    width: 100%;
    max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/


/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.service-catagery-list {
    border: 1px solid var(--divider-color);
    padding: 30px;
    margin-bottom: 40px;
    overflow: hidden;
}

.service-catagery-list h3 {
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-catagery-list ul li {
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
    margin: 0;
}

.service-catagery-list ul li a {
    position: relative;
    display: block;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
    color: var(--primary-color);
}

.service-catagery-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
    transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
    display: block;
}

.sidebar-cta-image img {
    width: 100%;
    aspect-ratio: 1 / 0.57;
    object-fit: cover;
}

.sidebar-cta-Body {
    border: 1px solid var(--divider-color);
    padding: 30px;
}

.sidebar-cta-content {
    margin-bottom: 25px;
}

.sidebar-cta-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.sidebar-cta-content p {
    font-weight: 500;
    margin-bottom: 0;
}











.service-feature-image {
    margin-bottom: 40px;
}

.service-feature-image figure {
    display: block;
}

.service-feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.service-entry h2 span {
    color: var(--accent-color);
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li {
    position: relative;
    font-weight: 500;
    color: var(--text-color);
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child {
    margin-bottom: 0;
}

.service-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.service-entry-list-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.service-entry-image,
.service-entry-list {
    width: calc(50% - 15px);
}

.service-entry-image figure {
    display: block;
}

.service-entry-image img {
    width: 100%;
    aspect-ratio: 1 / 0.615;
    object-fit: cover;
}

.service-entry-list ul {
    margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
    margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
}

.post-image figure,
.post-image img {
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.6em;
}

.post-entry h1 {
    font-size: 80px;
    letter-spacing: 0.07em;
}

.post-entry h2 {
    font-size: 46px;
    letter-spacing: 0.07em;
}

.post-entry h3 {
    font-size: 46px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ol li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: url(../images/icon-blockquote.png), var(--accent-color);
    background-repeat: no-repeat;
    background-position: 35px 30px;
    background-size: 58px;
    border-radius: 0;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--white-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 0;
    padding: 6px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/


/************************************/
/***    21. Project Single css 	  ***/
/************************************/




.project-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.project-detail-item:last-child {
    margin-bottom: 0;
}

.project-detail-item .icon-box {
    position: relative;
    background-color: var(--divider-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
    transform: scale(1);
}

.project-detail-item .icon-box i {
    font-size: 22px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.project-detail-item:hover .icon-box i {
    color: var(--white-color);
}

/* Smaller Transparent Swiper Buttons */


/* Swiper default arrow style */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}



/* Position adjustment */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.project-detail-content {
    width: calc(100% - 70px);
}

.project-detail-content h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.project-detail-content p {
    color: var(--accent-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

.project-single-image {
    margin-bottom: 40px;
}

.project-single-image figure {
    display: block;
}

.project-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.project-info,
.project-design-info {
    margin-bottom: 60px;
}

.project-entry h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-bottom: 30px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry p:last-child {
    margin-bottom: 0;
}

.project-entry ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.project-entry ul li {
    position: relative;
    font-weight: bold;
    color: var(--text-color);
    padding-left: 30px;
    margin-bottom: 15px;
}

.project-entry ul li:last-child {
    margin-bottom: 0;
}

.project-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.project-gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-gallery-img {
    width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
    display: block;
    cursor: none;
}

.project-gallery-img figure img {
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    display: block;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
    padding: 100px 0;
}

.faq-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.faq-catagery-list {
    border: 1px solid var(--divider-color);
    padding: 30px;
    margin-bottom: 60px;
}

.faq-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-catagery-list ul li {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
    margin-bottom: 0;
}

.faq-catagery-list ul li a {
    position: relative;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
    color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
    transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child {
    margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/





.contact-us-form {
    margin-left: 30px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2em;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--divider-color);
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 14px 15px;
}

.contact-form .form-control::placeholder {
    font-weight: 400;
}

.google-map {
    padding: 50px 0 100px;
}

.google-map .section-title {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 30px;
    text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 500px;
}

.contact-info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.contact-info-item {
    width: calc(33.33% - 20px);
    display: flex;
}

.contact-info-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-info-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box:before {
    transform: scale(1);
}

.contact-info-item .icon-box i {
    position: relative;
    font-size: 20px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box i {
    color: var(--white-color);
}

.contact-info-content {
    width: calc(100% - 80px);
}

.contact-info-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-info-content p {
    margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page {
    background-image: url(../images/error-page-bg.svg);
    background-repeat: no-repeat;
    background-position: top -100px center;
    background-size: auto;
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 50%;
}

.error-page-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 20px;
}

.error-page-content-body p {
    font-weight: 500;
    margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) {}

@media only screen and (max-width: 1024px) {

    .main-menu ul li {
        margin: 0;
    }

}

@media only screen and (max-width: 991px) {

    .navbar {
        padding: 5px 0;

    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .btn-default {
        padding: 14px 42px 14px 16px;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-row .section-title {
        margin-bottom: 0;
        margin-right: 0px;
    }

    .section-title-content {
        margin-left: 0;
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        margin-bottom: 10px;
    }

    .section-title h1 {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .hero {
        min-height: auto;
        padding: 180px 0 140px;
        margin-top: -92px;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 160px 0 110px;
        min-height: auto;
    }


    .hero-content .section-title p {
        font-size: 20px;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-us-images {
        margin: 0 0 30px 0;
    }



    .about-us-content-list {
        margin-bottom: 30px;
    }

    .about-contact-item {
        margin-bottom: 30px;
    }


    .why-choose-content {
        margin-bottom: 30px;
    }




    .our-services {
        padding: 50px 0;
    }


    .service-btn {
        top: 20px;
        right: 20px;
    }

    .service-btn a {
        height: 50px;
        width: 50px;
    }



    .video-play-button a {
        width: 80px;
        height: 80px;
    }


    .our-Project-nav {
        margin-bottom: 50px;
    }


    .project-btn a {
        width: 80px;
        height: 80px;
    }





    .how-work-company-slider {
        margin-top: 40px;
        padding-top: 40px;
    }

    .our-skill {
        padding: 50px 0;
    }

    .our-skill-content {
        margin-bottom: 30px;
    }

    .skills-progress-bar {
        margin-bottom: 30px;
    }

    .our-skill-image {
        max-width: 555px;
        margin: 0 auto;
    }





    .testimonial-slider {
        max-width: 100%;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }





    .our-blog {
        padding: 50px 0;
    }

    .our-blog .section-title {
        margin-right: 0;
    }



    .footer-newsletter-form p {
        margin-bottom: 20px;
    }

    .footer-copyright {
        margin-top: 0px;
        padding: 20px 0;
    }

    @media (max-width: 768px) {
        .page-header {
            padding: 100px 0 60px;
            /* reduce top/bottom padding */
            margin-top: 0;
            /* remove negative margin */
        }

        .page-header-box h1 {
            font-size: 32px;
            /* scale down heading */
        }

        .page-header-box ol li.breadcrumb-item {
            font-size: 16px;
        }

        .page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
            font-size: 14px;
        }
    }


    .page-header-box h1 {
        font-size: 50px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 18px;
    }

    .page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
        font-size: 16px;
    }

    .about-facility-list {
        margin-top: 50px;
        gap: 20px;
    }

    .about-facility-item {
        width: calc(33.33% - 13.33px);
    }

    .about-facility-item .icon-box {
        height: 45px;
        width: 45px;
        margin-right: 10px;
    }

    .about-facility-item .icon-box img {
        max-width: 20px;
    }

    .about-facility-content {
        width: calc(100% - 55px);
    }

    .about-facility-content h3 {
        font-size: 18px;
    }

    .vision-mission {
        padding: 50px 0 25px;
    }

    .vision-mission-box {
        padding: 30px 15px;
        gap: 30px 40px;
    }

    .vision-mission-item {
        width: calc(50% - 20px);
    }

    .vision-mission-item::before {
        right: -20px;
    }

    .vision-mission-item .icon-box {
        width: 70px;
        height: 70px;
    }

    .vision-mission-item .icon-box img {
        max-width: 30px;
    }

    .vision-mission-content h3 {
        margin-bottom: 15px;
    }

    .best-selling {
        padding: 25px 0 50px;
    }

    .best-selling-content {
        margin-bottom: 20px;
    }

    .best-selling-content-img {
        margin-bottom: 20px;
    }


    .team-readmore-btn {
        top: 20px;
        right: 20px;
    }

    .team-readmore-btn a {
        width: 50px;
        height: 50px;
    }


    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }

    .our-faqs-image {
        text-align: center;
        margin-left: 0px;
    }

    .our-faqs-image img {
        aspect-ratio: 1 / 0.8;
    }

    .our-clients {
        padding: 50px 0;
    }

    .our-clients .our-clients-box {
        max-width: 100%;
    }


    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .service-catagery-list h3 {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .service-catagery-list ul li {
        margin-bottom: 10px;
    }

    .service-catagery-list ul li a::before {
        width: 16px;
        height: 16px;
    }

    .sidebar-cta-Body {
        padding: 20px;
    }

    .sidebar-cta-content {
        margin-bottom: 15px;
    }


    .service-feature-image {
        margin-bottom: 30px;
    }

    .service-entry {
        margin-bottom: 30px;
    }

    .service-entry ul li {
        font-size: 14px;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .service-entry ul li::before {
        font-size: 18px;
    }

    .why-choose-content.service-single-why-choose {
        margin-bottom: 30px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h2 {
        font-size: 38px;
    }

    .post-entry ul li {
        font-size: 16px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .post-tags .tag-links a {
        padding: 6px 15px;
    }





    .project-single-image {
        margin-bottom: 30px;
    }

    .project-info,
    .project-design-info {
        margin-bottom: 30px;
    }

    .project-entry h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-gallery-box .photo-gallery img {
        aspect-ratio: 1 / 0.85;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .faq-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .faq-catagery-list ul li {
        margin-bottom: 15px;
    }

    .faq-catagery-list ul li a::before {
        width: 16px;
        height: 16px;
    }

    .our-faq-section.page-faq-accordion {
        margin-bottom: 40px;
    }




    .contact-us-form {
        margin-left: 0;
    }

    .contact-form .form-control {
        padding: 12px 15px;
    }

    .google-map {
        padding: 25px 0 50px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 400px;
    }

    .contact-info-box {
        gap: 20px;
        margin-top: 40px;
    }

    .contact-info-item {
        width: calc(33.33% - 13.33px);
    }

    .contact-info-item .icon-box {
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }

    .contact-info-item .icon-box i {
        font-size: 16px;
    }

    .contact-info-content {
        width: calc(100% - 60px);
    }

    .contact-info-content h3 {
        font-size: 18px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image img {
        max-width: 80%;
    }
}

@media only screen and (max-width: 767px) {

    .section-row {
        margin-bottom: 30px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content .section-title p {
        font-size: 18px;
    }

    .hero-content .btn-default {
        margin-right: 40px;
        margin-bottom: 10px;
    }

    .hero-content .btn-default.btn-highlighted {
        margin: 0;
    }

    .about-us-images {
        background-position: left 10px bottom 10px;
        background-size: 20% auto;
        padding: 10px 45px 100px 0;
    }








    .about-us-content-body {
        gap: 0px;
    }

    .about-us-content-body::before {
        display: none;
    }

    .about-us-content-info {
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .about-us-content-list {
        margin-bottom: 20px;
    }

    .about-us-contact-list {
        width: 100%;
    }

    .about-us-content-list ul li {
        margin-bottom: 10px;
    }

    .about-us-content-list ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .about-contact-item {
        margin-bottom: 20px;
    }

    .about-contact-content h3 {
        font-size: 18px;
    }





    .intro-video-image img {
        aspect-ratio: 1 / 0.7;
    }

    .project-btn a {
        width: 60px;
        height: 60px;
    }

    .project-btn img {
        max-width: 20px;
    }





    .how-work-company-slider {
        margin-top: 30px;
        padding-top: 30px;
    }

    .our-skill-image {
        padding-bottom: 83px;
    }

    .our-skill-img-1 {
        width: 200px;
        padding: 20px 0 0 20px;
    }

    .our-skill-img-2 {
        width: 130px;
        top: 20px;
    }

    .our-skill-img-3 {
        width: 200px;
    }








    .post-item-content {
        margin-bottom: 10px;
    }

    .post-item-content h3 {
        font-size: 18px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }


    .footer-copyright {
        padding: 15px 0;
    }

    .page-header-box h1 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 16px;
    }

    .page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
        font-size: 14px;
    }

    .about-facility-item {
        width: 100%;
    }

    .vision-mission {
        background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
    }

    .vision-mission-box {
        padding: 20px;
        gap: 40px;
    }

    .vision-mission-item {
        width: 100%;
    }

    .vision-mission-item::before {
        height: 1px;
        width: 100%;
        top: auto;
        right: 0;
        bottom: -20px;
    }

    .vision-mission-item:nth-child(2n + 2)::before {
        display: block;
    }

    .vision-mission-item:last-child::before {
        display: none;
    }

    .vision-mission-content h3 {
        font-size: 18px;
    }


    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
        padding-right: 30px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        top: 2px;
    }

    .faq-accordion .accordion-body {
        padding-right: 0;
    }

    .our-faqs-image img {
        aspect-ratio: 1 / 1.26;
    }

    .swiper-pagination-bullet {
        background-color: #C89545;
        opacity: 0.4;
        transition: all 0.3s ease;
    }

    /* Active bullet */
    .swiper-pagination-bullet-active {
        background-color: #C89545;
        opacity: 1;
        transform: scale(1.2);
    }

    .service-catagery-list h3 {
        font-size: 18px;
    }

    .sidebar-cta-content h3 {
        font-size: 18px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-feature-image {
        margin-bottom: 20px;
    }

    .service-feature-image img {
        aspect-ratio: 1 / 0.7;
    }

    .service-entry-list-image {
        gap: 20px;
    }

    .service-entry-image,
    .service-entry-list {
        width: 100%;
    }

    .post-image figure,
    .post-image img {
        aspect-ratio: 1 / 0.70;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .project-single-image {
        margin-bottom: 20px;
    }

    .project-single-image img {
        aspect-ratio: 1 / 0.7;
    }

    .project-info,
    .project-design-highlight {
        margin-bottom: 20px;
    }

    .project-entry h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-entry ul li {
        margin-bottom: 10px;
    }

    .project-entry ul li::before {
        font-size: 18px;
        top: 5px;
    }

    .project-gallery-images {
        gap: 20px;
    }

    .project-gallery-img {
        width: calc(50% - 10px);
    }


    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .contact-info-item {
        width: 100%;
    }

    .error-page-image img {
        max-width: 100%;
    }
}

/* =========================================
   WeArch Developers brand overrides
   Palette: Gold #C89545 | Deep Gold #A77A3B | Charcoal #242424 | Cream #F7F1E7
   ========================================= */
.navbar-brand img {
    max-height: 82px;
    width: auto;
    object-fit: contain;
}

.footer-logo img {
    max-height: 105px;
    width: auto;
    object-fit: contain;
}

#loading-icon img {
    max-width: 150px;
    height: auto;
}

.preloader {
    background: #3F3428 !important;
    background-color: #3F3428 !important;
}


.btn-default {
    background-color: var(--primary-color);
}

.btn-default:hover {
    background-color: #A77A3B;
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 64px;
    }

    .footer-logo img {
        max-height: 82px;
    }
}


/* ==========================================================
   WEARCH PREMIUM HEADER OVERRIDES
   Append at the bottom of the main stylesheet
========================================================== */

/* ==========================================================
   WEARCH PREMIUM SOLID STICKY HEADER
========================================================== */

:root {
    --wearch-black: #090909;
    --wearch-charcoal: #151515;
    --wearch-charcoal-light: #1d1d1d;
    --wearch-gold: #c89545;
    --wearch-gold-light: #dfb66c;
    --wearch-gold-dark: #95672d;
    --wearch-ivory: #f7f1e7;
    --wearch-white: #ffffff;
    --wearch-muted: #bcb5a9;
    --wearch-border: rgba(200, 149, 69, 0.25);
}

/* ==========================================================
   WEARCH COMPACT CENTERED PRELOADER
========================================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #3F3428 !important;
    background-color: #3F3428 !important;
}

/* Loader wrapper */
.loading-container {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 96px;
    height: 96px;
    margin: 0;

    border-radius: 50%;
}

/* Rotating ring */
.loading {
    position: absolute;
    inset: 0;

    width: 96px;
    height: 96px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--wearch-gold);
    border-right-color: var(--wearch-gold-light);
    border-radius: 50%;

    animation: rotate-loading 1.2s linear infinite;
    transform-origin: center;
}

/* Logo holder */
#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    transform: translate(-50%, -50%);
}

/* Logo image */
#loading-icon img {
    display: block;

    width: 56px;
    height: 56px;

    object-fit: contain;
    object-position: center;

    margin: 0;
    padding: 0;
}

/* Rotation */
@keyframes rotate-loading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================
   WEARCH PREMIUM SOLID STICKY NAVBAR
========================================================== */

:root {
    --wearch-black: #080808;
    --wearch-charcoal: #141414;
    --wearch-charcoal-light: #1c1c1c;
    --wearch-gold: #c89545;
    --wearch-gold-light: #dfb66c;
    --wearch-gold-dark: #95672d;
    --wearch-ivory: #f7f1e7;
    --wearch-white: #ffffff;
    --wearch-muted: #bcb5aa;
    --wearch-border: rgba(200, 149, 69, 0.24);
}

/* Remove template negative positioning */
header.main-header.wearch-header {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 9999;
    background: var(--wearch-black);
}

/* Disable template hide-on-scroll behaviour */
header.main-header.wearch-header .header-sticky,
header.main-header.wearch-header .header-sticky.active,
header.main-header.wearch-header .header-sticky.hide {
    position: relative !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    transform: translateY(0) !important;
    background: var(--wearch-black) !important;
}

/* Navbar outer shell */
.wearch-navbar-shell {
    position: relative;
    width: 100%;
    background:
        linear-gradient(90deg,
            #080808 0%,
            #111111 50%,
            #080808 100%);
    border-bottom: 1px solid var(--wearch-border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

/* Premium gold bottom detail */
.wearch-navbar-shell::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 149, 69, 0.15) 22%,
            rgba(223, 182, 108, 0.8) 50%,
            rgba(200, 149, 69, 0.15) 78%,
            transparent 100%);
}

/* Main navbar */
.wearch-header .navbar {
    display: flex;
    align-items: stretch;
    min-height: 98px;
    padding: 0 !important;
    border: 0 !important;
}

/* ==========================================================
   LOGO
========================================================== */

.wearch-header .navbar-brand.wearch-logo {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    width: 190px;
    margin: 0;
    padding: 10px 34px 10px 0;
}

/* Logo separator */
.wearch-header .navbar-brand.wearch-logo::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: linear-gradient(180deg,
            transparent,
            rgba(200, 149, 69, 0.5),
            transparent);
}

.wearch-header .wearch-logo img {
    display: block;
    width: auto;
    height: 72px;
    max-width: 135px;
    object-fit: contain;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.wearch-header .wearch-logo:hover img {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* ==========================================================
   DESKTOP MENU
========================================================== */

.wearch-header .main-menu {
    display: flex;
    align-items: stretch;
    flex: 1;
    height: auto;
}

.wearch-header .main-menu .nav-menu-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    margin: 0 20px;
}

.wearch-header .main-menu .nav-menu-wrapper>ul {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 3px;
    margin: 0;
    padding: 0;
}

.wearch-header .main-menu ul li {
    position: relative;
    display: flex;
    align-items: stretch;
    margin: 0;
}

.wearch-header .main-menu ul li a.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px !important;
    overflow: hidden;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 241, 231, 0.84);
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

/* Hover frame */
.wearch-header .main-menu ul li a.nav-link::before {
    content: "";
    position: absolute;
    inset: 15px 4px;
    z-index: 0;
    border: 1px solid transparent;
    background: transparent;
    opacity: 0;
    transform: scaleY(0.8);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.wearch-header .main-menu ul li a.nav-link span {
    position: relative;
    z-index: 2;
}

/* Active gold dot */
.wearch-header .main-menu ul li a.nav-link::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 3;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--wearch-gold-light);
    box-shadow: 0 0 9px rgba(223, 182, 108, 0.65);
    opacity: 0;
    transform: translate(-50%, 7px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.wearch-header .main-menu ul li a.nav-link:hover,
.wearch-header .main-menu ul li a.nav-link:focus,
.wearch-header .main-menu ul li a.nav-link.active {
    color: var(--wearch-gold-light) !important;
}

.wearch-header .main-menu ul li a.nav-link:hover::before,
.wearch-header .main-menu ul li a.nav-link:focus::before,
.wearch-header .main-menu ul li a.nav-link.active::before {
    border-color: rgba(200, 149, 69, 0.18);
    background: rgba(200, 149, 69, 0.05);
    opacity: 1;
    transform: scaleY(1);
}

.wearch-header .main-menu ul li a.nav-link:hover::after,
.wearch-header .main-menu ul li a.nav-link:focus::after,
.wearch-header .main-menu ul li a.nav-link.active::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Hide duplicate contact link only on desktop */
@media only screen and (min-width: 992px) {
    .wearch-header .mobile-contact-item {
        display: none !important;
    }
}

/* ==========================================================
   DESKTOP CONTACT BUTTON
========================================================== */

.wearch-header .header-btn {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    flex-shrink: 0;
    min-height: 98px;
    margin: 0;
}

/* Exact structure required:
   .button-text + .button-icon
*/
.wearch-header-btn {
    position: relative;
    display: grid;
    grid-template-columns: 138px 58px;
    align-items: stretch;
    width: 196px;
    min-height: 98px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--wearch-gold);
    color: var(--wearch-black);
    font-family: "DM Sans", sans-serif;
    line-height: 1;
    isolation: isolate;
}

/* Sliding ivory hover background */
.wearch-header-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--wearch-ivory);
    transform: translateX(-101%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.wearch-header-btn:hover::before {
    transform: translateX(0);
}

/* Center contact text vertically and horizontally */
.wearch-header-btn .button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.11em;
    text-align: center;
    text-transform: uppercase;
}

/* Center icon vertically and horizontally */
.wearch-header-btn .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 100%;
    border-left: 1px solid rgba(8, 8, 8, 0.18);
    font-size: 13px;
}

.wearch-header-btn .button-icon i {
    transition: transform 0.35s ease;
}

.wearch-header-btn:hover {
    color: var(--wearch-black);
}

.wearch-header-btn:hover .button-icon i {
    transform: translate(3px, -3px);
}

/* ==========================================================
   MOBILE TOGGLE
========================================================== */

.wearch-header .navbar-toggle {
    display: none;
    align-self: center;
    flex-shrink: 0;
    margin-left: auto;
}

.wearch-header .slicknav_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(200, 149, 69, 0.4);
    border-radius: 0;
    background: rgba(200, 149, 69, 0.06) !important;
}

.wearch-header .slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto !important;
    border-radius: 0;
    background: var(--wearch-gold-light);
}

/* ==========================================================
   RESPONSIVE MENU
========================================================== */

.wearch-header .responsive-menu {
    position: relative;
    z-index: 9999;
}

.wearch-header .slicknav_menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 14px 16px;
    background: var(--wearch-black) !important;
    border-top: 1px solid var(--wearch-border);
    border-bottom: 1px solid var(--wearch-border);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
}

.wearch-header .slicknav_nav {
    margin: 0;
    padding: 8px;
    background: var(--wearch-charcoal);
    border: 1px solid rgba(200, 149, 69, 0.16);
}

.wearch-header .slicknav_nav li {
    display: block;
    width: 100%;
    margin: 0;
}

.wearch-header .slicknav_nav li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 0 !important;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 241, 231, 0.88);
    transition:
        padding-left 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease;
}

.wearch-header .slicknav_nav li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 0;
    height: 1px;
    background: var(--wearch-gold);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.wearch-header .slicknav_nav li a:hover,
.wearch-header .slicknav_nav li a:focus,
.wearch-header .slicknav_nav li a.active {
    padding-left: 42px;
    background: rgba(200, 149, 69, 0.06);
    color: var(--wearch-gold-light);
}

.wearch-header .slicknav_nav li a:hover::before,
.wearch-header .slicknav_nav li a:focus::before,
.wearch-header .slicknav_nav li a.active::before {
    width: 17px;
}

/* Mobile Contact Us item */
.wearch-header .slicknav_nav .mobile-contact-item {
    display: block !important;
    margin-top: 9px;
}

.wearch-header .slicknav_nav .mobile-contact-item a {
    justify-content: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid var(--wearch-gold);
    background: var(--wearch-gold);
    color: var(--wearch-black);
}

.wearch-header .slicknav_nav .mobile-contact-item a::before {
    display: none;
}

.wearch-header .slicknav_nav .mobile-contact-item a:hover {
    padding-left: 18px;
    background: var(--wearch-ivory);
    color: var(--wearch-black);
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 1199px) and (min-width: 992px) {

    .wearch-header .navbar-brand.wearch-logo {
        width: 155px;
        padding-right: 22px;
    }

    .wearch-header .wearch-logo img {
        height: 64px;
        max-width: 115px;
    }

    .wearch-header .main-menu .nav-menu-wrapper {
        margin: 0 8px;
    }

    .wearch-header .main-menu ul li a.nav-link {
        padding-right: 9px !important;
        padding-left: 9px !important;
        font-size: 11px;
    }

    .wearch-header-btn {
        grid-template-columns: 112px 48px;
        width: 160px;
    }

    .wearch-header-btn .button-icon {
        width: 48px;
    }

    .wearch-header-btn .button-text {
        padding: 0 10px;
        font-size: 10px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-header .navbar {
        align-items: center;
        justify-content: space-between;
        min-height: 78px;
        padding: 7px 0 !important;
    }

    /* Hide desktop menu */
    .wearch-header .collapse.main-menu,
    .wearch-header .navbar-collapse.main-menu,
    .wearch-header .main-menu {
        display: none !important;
    }

    .wearch-header .navbar-brand.wearch-logo {
        align-self: center;
        width: auto;
        min-width: 0;
        padding: 0;
    }

    .wearch-header .navbar-brand.wearch-logo::after {
        display: none;
    }

    .wearch-header .wearch-logo img {
        width: auto;
        height: 58px;
        max-width: 104px;
    }

    .wearch-header .navbar-toggle {
        display: block !important;
        margin-left: auto;
    }

    .wearch-header .responsive-menu {
        display: block !important;
        width: 100%;
    }

    .wearch-header .header-btn {
        display: none !important;
    }
}

@media only screen and (max-width: 575px) {

    .wearch-header .navbar {
        min-height: 70px;
        padding: 6px 0 !important;
    }

    .wearch-header .wearch-logo img {
        height: 52px;
        max-width: 92px;
    }

    .wearch-header .slicknav_btn {
        width: 42px;
        height: 42px;
    }

    .wearch-header .slicknav_menu {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* Keep hero directly below sticky header */
.hero {
    margin-top: 0 !important;
}


/* ---------- Premium CTA ---------- */

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    align-self: center;
    /* Keeps button vertically centered */
    height: 100%;
    /* Take navbar height */
    margin-left: 30px;
    padding-top: 22px;
    /* Move slightly downward */
}

.wearch-talk-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 150px;
    height: 48px;

    border: 1px solid rgba(200, 149, 69, .55);
    border-radius: 10px;

    background: transparent;

    color: #F7F1E7;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;

    overflow: hidden;

    transition: .4s ease;
}

/* hover background */

.wearch-talk-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #C89545;
    transform: translateX(-100%);
    transition: .45s;
    z-index: 0;
}

.wearch-talk-btn span,
.wearch-talk-btn i {
    position: relative;
    z-index: 2;
}

.wearch-talk-btn i {
    font-size: 12px;
    transition: .35s;
}

.wearch-talk-btn:hover {
    color: #111;
    border-color: #C89545;
}

.wearch-talk-btn:hover::before {
    transform: translateX(0);
}

.wearch-talk-btn:hover i {
    transform: translateX(5px);
}

/* ==========================================================
   WEARCH FULLSCREEN ARCHITECTURE HERO & GLASS INFORMATION BAR
========================================================== */

:root {
    --wearch-gold: #C89545;
    --wearch-gold-light: #DFB66C;
    --wearch-bg-dark: #080808;
    --wearch-header-height: 98px;
    --wearch-mobile-header-height: 78px;
}

/* Fullscreen Hero Container - Exactly 100vh (Navbar + Hero = 100vh) */
.wearch-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--wearch-header-height, 98px)) !important;
    height: calc(100dvh - var(--wearch-header-height, 98px)) !important;
    min-height: 480px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #080808 !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
}

/* Swiper Stage Fills Full Height */
.wearch-hero .hero-stage,
.wearch-hero .wearch-hero-swiper,
.wearch-hero .swiper-wrapper,
.wearch-hero .swiper-slide,
.wearch-hero .hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
}

.wearch-hero .hero-slider-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 100% Bright, Clear & Unobstructed Architectural Image Showcase */
.wearch-hero .hero-slider-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1) !important;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 1.2s ease-out;
}

/* Strictly remove all overlays, dark layers, gradients, and pseudo-elements */
.hero::before,
.wearch-hero .hero-slide::before,
.wearch-hero .hero-slide::after,
.hero.hero-slider-layout .hero-slide::before,
.hero.hero-slider-layout .hero-slide::after {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
}

/* ==========================================================
   GLASSMORPHIC BOTTOM INFORMATION BAR
========================================================== */

.wearch-hero-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;

    background: linear-gradient(to top,
            rgba(8, 8, 8, 0.88) 0%,
            rgba(8, 8, 8, 0.68) 45%,
            rgba(8, 8, 8, 0.28) 78%,
            rgba(8, 8, 8, 0) 100%);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: none;

    padding: 42px 0 18px;
}

.hero-info-container {
    padding-left: 36px;
    padding-right: 36px;
    max-width: 1400px;

}

/* Flex Row Layout - Vertically Centered */
.hero-info-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

/* LEFT: Slide Counter */
.hero-info-left {
    flex: 0 0 auto;
}

.wearch-hero-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.hero-current-slide {
    color: var(--wearch-gold);
    font-size: 11px;
    font-weight: 600;
}

.hero-counter-slash {
    color: rgba(255, 255, 255, 0.3);
}

.hero-total-slides {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

/* CENTER: Services & Subtitle */
.hero-info-center {
    flex: 1 1 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-services-display {
    position: relative;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-service-item {
    display: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    transition: opacity 0.4s ease-in-out;
}

.hero-service-item.active {
    display: block;
    opacity: 1;
}

/* Small Gold Separator Dots */
.accent-dot {
    color: #C89545;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    margin: 0 12px;
    vertical-align: middle;
    opacity: 0.85;
}

/* Subtitle */
.hero-tagline {
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.06em;
    margin-top: 5px;
    text-transform: none;
    opacity: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    transition: opacity 0.4s ease-in-out;
}

.hero-tagline.active {
    display: block;
    opacity: 1;
}

/* RIGHT: Navigation Arrows */
.hero-info-right {
    flex: 0 0 auto;
}

.hero-nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.hero-arrow-btn:hover {
    border-color: var(--wearch-gold);
    background: rgba(200, 149, 69, 0.2);
    color: var(--wearch-gold);
    transform: translateY(-1px);
}

.hero-arrow-btn:active {
    transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE DESIGN
========================================================== */

/* Laptops & Tablets (991px and below) - Natural Aspect Ratio Stage & Zero Building Cropping */
@media (max-width: 991px) {
    .wearch-hero {
        height: auto !important;
        min-height: 0 !important;
        position: relative;
    }

    .wearch-hero .hero-stage,
    .wearch-hero .wearch-hero-swiper,
    .wearch-hero .swiper,
    .wearch-hero .swiper-wrapper,
    .wearch-hero .swiper-slide,
    .wearch-hero .hero-slide {
        height: clamp(210px, 39vh, 415px) !important;
        min-height: 190px !important;
    }

    .wearch-hero .hero-slider-image img {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        object-position: center !important;
    }

    .wearch-hero-info-bar {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 20;
        padding: 14px 0;
    }

    .hero-info-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-service-item {
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .hero-services-display .accent-dot {
        margin: 0 6px;
    }

    .hero-tagline {
        font-size: 13px;
        margin-top: 4px;
    }

    .hero-arrow-btn {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
}

/* Tablet Center Alignment for Hero Text Overlay (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-info-row {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .hero-info-left {
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 2;
    }

    .hero-info-center {
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }

    .hero-services-display,
    .hero-service-item,
    .hero-tagline {
        text-align: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
}

/* Mobile Screens (575px and below) */
@media (max-width: 575px) {

    .wearch-hero .hero-stage,
    .wearch-hero .wearch-hero-swiper,
    .wearch-hero .swiper,
    .wearch-hero .swiper-wrapper,
    .wearch-hero .swiper-slide,
    .wearch-hero .hero-slide {
        height: clamp(180px, 35vh, 265px) !important;
        min-height: 170px !important;
    }
}

/* Targeted Narrow Mobile Viewports (Samsung Galaxy S22+, S21, 360px-395px width) */
@media (max-width: 395px) {

    .wearch-hero .hero-stage,
    .wearch-hero .wearch-hero-swiper,
    .wearch-hero .swiper,
    .wearch-hero .swiper-wrapper,
    .wearch-hero .swiper-slide,
    .wearch-hero .hero-slide {
        height: clamp(165px, 32vh, 240px) !important;
        min-height: 155px !important;
    }
}



@media (max-width: 767px) {
    .wearch-hero-info-bar {
        padding: 44px 16px 16px;
        background: linear-gradient(to top,
                rgba(8, 8, 8, 0.94) 0%,
                rgba(8, 8, 8, 0.72) 48%,
                rgba(8, 8, 8, 0.30) 78%,
                rgba(8, 8, 8, 0) 100%);
    }

    .hero-info-container {
        padding-left: 6px;
        padding-right: 6px;
    }

    .hero-info-row {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px 16px;
        align-items: end;
        text-align: left;
    }

    .hero-info-left {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-info-center {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        align-items: center;
        text-align: left;
    }

    .hero-info-right {
        grid-column: 2;
        grid-row: 1;
        margin-top: 0;
    }

    .hero-service-item {
        font-size: 10px;
        line-height: 1.35;
        letter-spacing: 0.06em;
    }

    .hero-services-display .accent-dot {
        margin: 0 4px;
    }

    .hero-tagline {
        font-size: 10px;
        margin-top: 4px;
    }

    .hero-arrow-btn {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================
   EDITORIAL PROJECT DETAILS AND CLIENT STORIES REFRESH
========================================================== */

.wearch-project-detail-page {
    background: #f5f2ed;
    color: #2d261e;
}

.wearch-project-detail-page .wearch-project-info-section,
.wearch-project-detail-page .wearch-project-gallery-section {
    background: #f5f2ed;
    color: #2d261e;
}

.wearch-project-detail-page .wearch-project-info-section {
    padding: 76px 0 60px;
}

.wearch-project-detail-page .wearch-project-info-container {
    max-width: 1240px;
    padding: 0 28px;
}

.wearch-project-detail-page .wearch-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 40px;
    color: #b17c2e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wearch-project-detail-page .wearch-project-info-row {
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: 72px;
    align-items: center;
}

.wearch-project-detail-page .project-detail-title {
    margin: 0 0 20px;
    color: #30271d;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.01em;
}

.wearch-project-detail-page .project-detail-desc {
    max-width: 590px;
    margin: 0;
    color: #665b50;
    font-size: 17px;
    line-height: 1.75;
}

.wearch-project-detail-page .project-specs-grid {
    gap: 34px 44px;
    padding: 30px 28px;
    background: #fffdfa;
    border: 1px solid #e2d9ce;
    border-radius: 5px;
    box-shadow: 0 14px 30px rgba(74, 57, 39, 0.05);
}

.wearch-project-detail-page .spec-label {
    color: #b17c2e;
    font-size: 11px;
}

.wearch-project-detail-page .spec-value {
    color: #211c17;
    font-size: 17px;
}

.wearch-project-detail-page .wearch-project-gallery-section {
    padding: 0 0 92px;
}

.wearch-project-detail-page .project-gallery-grid {
    gap: 32px;
}

.wearch-project-detail-page .project-gallery-item {
    aspect-ratio: 1.45 / 1;
    border: 1px solid #dfd5c9;
    border-radius: 14px;
    background: #e8e0d7;
    box-shadow: 0 12px 28px rgba(74, 57, 39, 0.08);
}

.wearch-project-detail-page .project-gallery-item img {
    object-position: center;
}

.wearch-voices {
    background: #e9e4de;
    padding: 72px 0 66px;
}

.wearch-voices-heading {
    color: #30271d;
    letter-spacing: 0;
}

.wearch-voices-carousel-wrapper {
    padding: 0 42px;
}

.wearch-testimonial-card {
    max-width: none;
    min-height: 430px;
    background: #fffdfa;
    border: 1px solid #e3dbd1;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(71, 54, 38, 0.08);
}

.wearch-testimonial-card:hover,
.wearch-testimonial-card:focus-visible {
    border-color: #c89545;
    box-shadow: 0 16px 30px rgba(71, 54, 38, 0.14);
}

.testimonial-card-media {
    height: 184px;
    padding: 0;
    background: #e2dbd3;
}

.testimonial-card-media img {
    border-radius: 0;
}

.testimonial-card-body {
    padding: 17px 18px 20px;
}

.testimonial-stars {
    margin-bottom: 12px;
    color: #c89545;
}

.testimonial-text-preview,
.testimonial-card-quote {
    color: #5c5147;
    font-family: var(--body-font, "Manrope", sans-serif);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-read-link {
    color: #b17c2e;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.testimonial-client-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top-color: #eee7df;
}

.testimonial-client-name {
    color: #2e261e;
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 16px;
    font-weight: 600;
}

.testimonial-nav-btn {
    background: #fffdfa;
    border-color: #e0d1bf;
    color: #b17c2e;
    box-shadow: 0 5px 15px rgba(71, 54, 38, 0.1);
}

@media (max-width: 991px) {
    .wearch-project-detail-page .wearch-project-info-row {
        gap: 42px;
    }

    .wearch-project-detail-page .wearch-project-info-section {
        padding-top: 54px;
    }
}

@media (max-width: 767px) {
    .wearch-project-detail-page .wearch-project-info-container {
        padding: 0 20px;
    }

    .wearch-project-detail-page .wearch-back-btn {
        margin-bottom: 28px;
    }

    .wearch-project-detail-page .project-detail-title {
        font-size: 44px;
    }

    .wearch-project-detail-page .project-detail-desc {
        font-size: 15px;
    }

    .wearch-project-detail-page .project-specs-grid {
        padding: 24px 22px;
    }

    .wearch-voices {
        padding: 52px 0 48px;
    }

    .wearch-voices-carousel-wrapper {
        padding: 0 30px;
    }

    .testimonial-card-media {
        height: 190px;
    }
}

/* ==========================================================
   WEARCH DESIGN PHILOSOPHY — COMPACT PREMIUM VERSION
========================================================== */

.wearch-philosophy {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 98px);
    min-height: calc(100svh - 98px);
    padding: 52px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 78%,
            rgba(200, 149, 69, 0.09),
            transparent 26%),
        linear-gradient(135deg,
            #090909 0%,
            #111111 52%,
            #161616 100%);
    isolation: isolate;
}

.wearch-philosophy::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(90deg,
            transparent calc(25% - 0.5px),
            rgba(255, 255, 255, 0.04) 25%,
            transparent calc(25% + 0.5px)),
        linear-gradient(90deg,
            transparent calc(50% - 0.5px),
            rgba(255, 255, 255, 0.035) 50%,
            transparent calc(50% + 0.5px)),
        linear-gradient(90deg,
            transparent calc(75% - 0.5px),
            rgba(255, 255, 255, 0.03) 75%,
            transparent calc(75% + 0.5px));
}

.wearch-philosophy::after {
    content: "";
    position: absolute;
    top: -210px;
    right: -210px;
    z-index: -1;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(200, 149, 69, 0.1);
    border-radius: 50%;
}

/* ==========================================================
   HEADER
========================================================== */

.philosophy-header {
    position: relative;
    z-index: 2;
    margin-bottom: 36px;
}

.philosophy-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.philosophy-eyebrow>span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.philosophy-eyebrow>i {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wearch-gold);
}

.philosophy-eyebrow>p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.philosophy-heading {
    max-width: 860px;
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(39px, 3.8vw, 56px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.philosophy-heading span {
    display: block;
    margin-top: 4px;
    padding-left: 46px;
    color: var(--wearch-gold-light);
    font-weight: 500;
}

.philosophy-header-text {
    max-width: 390px;
    margin: 0 0 4px auto;
    padding-left: 18px;
    border-left: 1px solid rgba(223, 182, 108, 0.5);
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.75;
}

/* ==========================================================
   MAIN LAYOUT
========================================================== */

.philosophy-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    align-items: stretch;
    gap: clamp(46px, 5vw, 76px);
}

/* ==========================================================
   VISUAL SIDE
========================================================== */

.philosophy-visual {
    position: relative;
    align-self: stretch;
    min-height: 0;
    height: 100%;
}

/* Main image fills the complete visual height */
.philosophy-main-image {
    position: absolute;
    inset: 0 15% 0 0;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 28px 5px 28px 5px;
    background: #151515;
}

.philosophy-main-image figure,
.philosophy-main-image img {
    width: 100%;
    height: 100%;
}

.philosophy-main-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.04);
    transition:
        transform 0.9s ease,
        filter 0.9s ease;
}

.philosophy-main-image:hover img {
    transform: scale(1.04);
    filter: saturate(0.95) contrast(1.05);
}

.philosophy-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(5, 5, 5, 0.72) 100%);
}



/* Caption */
.philosophy-image-caption {
    position: absolute;
    right: 19%;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    max-width: 260px;
    padding: 12px 15px;
    border-left: 2px solid var(--wearch-gold);
    background: rgba(8, 8, 8, 0.76);
    backdrop-filter: blur(10px);
}

.philosophy-image-caption span {
    display: block;
    margin-bottom: 4px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.philosophy-image-caption strong {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
}

/* Vertical phrase */
.philosophy-image-mark {
    position: absolute;
    top: 46px;
    right: 1px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.52);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(100%);
    transform-origin: top right;
}

.philosophy-image-mark i {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--wearch-gold);
}

/* ==========================================================
   CONTENT
========================================================== */

.philosophy-content {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 610px;
}

.philosophy-statement {
    margin-bottom: 22px;
}


.philosophy-statement h3 {
    max-width: 560px;
    margin: 0 0 15px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(27px, 2.5vw, 36px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.philosophy-statement h3 span {
    display: block;
    margin-top: 3px;
    color: var(--wearch-gold-light);
    font-weight: 500;
}

.philosophy-statement>p {
    max-width: 565px;
    margin: 0;
    padding-left: 17px;
    border-left: 1px solid rgba(223, 182, 108, 0.46);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.72;
}

/* ==========================================================
   PRINCIPLES
========================================================== */

.philosophy-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-item {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr 36px;
    align-items: center;
    gap: 13px;
    min-height: 78px;
    padding: 11px 4px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    isolation: isolate;
    transition:
        padding 0.35s ease,
        border-color 0.35s ease;
}

.philosophy-item::before {
    content: "";
    position: absolute;
    inset: 5px 0;
    z-index: -1;
    border-radius: 13px 3px 13px 3px;
    background:
        linear-gradient(90deg,
            rgba(200, 149, 69, 0.18),
            rgba(200, 149, 69, 0.03));
    transform: translateX(-102%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.philosophy-item:hover::before {
    transform: translateX(0);
}

.philosophy-item:hover {
    padding-right: 12px;
    padding-left: 12px;
    border-color: rgba(200, 149, 69, 0.3);
}

.philosophy-number {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.philosophy-item-content h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.15;
}

.philosophy-item-content p {
    max-width: 440px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.5;
}

.philosophy-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(223, 182, 108, 0.36);
    border-radius: 50%;
    color: var(--wearch-gold-light);
    font-size: 9px;
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.philosophy-item:hover .philosophy-item-icon {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #111111;
    transform: translateX(3px);
}

/* ==========================================================
   FOOTER
========================================================== */

.philosophy-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
}

.philosophy-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 6px 7px 6px 17px;
    overflow: hidden;
    border: 1px solid rgba(223, 182, 108, 0.48);
    border-radius: 16px 4px 16px 4px;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    isolation: isolate;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.philosophy-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg,
            var(--wearch-gold-dark),
            var(--wearch-gold));
    clip-path: circle(0 at 88% 50%);
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.philosophy-btn:hover::before {
    clip-path: circle(150% at 88% 50%);
}

.philosophy-btn:hover {
    color: #101010;
    transform: translateY(-3px);
}

.philosophy-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--wearch-gold);
    color: #111111;
    font-size: 9px;
}

.philosophy-btn-icon i {
    transition: transform 0.35s ease;
}

.philosophy-btn:hover .philosophy-btn-icon i {
    transform: translate(2px, -2px);
}

.philosophy-footer-note {
    padding-left: 15px;
    border-left: 1px solid rgba(223, 182, 108, 0.28);
}

.philosophy-footer-note span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.philosophy-footer-note strong {
    color: var(--wearch-gold-light);
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 500;
}

/* Decorative word */
.philosophy-background-word {
    position: absolute;
    right: -20px;
    bottom: -42px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 220px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.04em;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 820px) and (min-width: 992px) {

    .wearch-philosophy {
        min-height: auto;
        padding: 38px 0;
    }

    .philosophy-header {
        margin-bottom: 26px;
    }

    .philosophy-heading {
        font-size: clamp(36px, 3.3vw, 48px);
    }

    .philosophy-header-text,
    .philosophy-statement>p {
        font-size: 15px;
        line-height: 1.62;
    }

    .philosophy-statement {
        margin-bottom: 15px;
    }

    .philosophy-item {
        min-height: 70px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .philosophy-item-content p {
        font-size: 13px;
    }

    .philosophy-footer {
        margin-top: 15px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-philosophy {
        display: block;
        min-height: 0;
        padding: 78px 0;
    }

    .philosophy-heading span {
        padding-left: 24px;
    }

    .philosophy-header-text {
        max-width: 620px;
        margin: 22px 0 0;
    }



    .philosophy-statement h3 {
        font-size: 28px;
    }

    .philosophy-statement>p {
        padding-left: 14px;
        font-size: 15px;
        line-height: 1.68;
    }

    .philosophy-item {
        grid-template-columns: 29px 1fr 32px;
        gap: 9px;
        min-height: 76px;
    }

    .philosophy-item-content h4 {
        font-size: 18px;
    }

    .philosophy-item-content p {
        font-size: 13px;
    }

    .philosophy-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media only screen and (max-width: 480px) {

    .philosophy-visual {
        height: 390px;
        min-height: 390px;
    }

    .philosophy-secondary-image {
        width: 53%;
    }

    .philosophy-item-content p {
        display: none;
    }

    .philosophy-item {
        min-height: 64px;
    }

    .philosophy-background-word {
        font-size: 90px;
    }
}


/* ==========================================================
   DESIGN PHILOSOPHY VISUAL — ARCHITECTURAL FRAME
========================================================== */

.philosophy-layout {
    align-items: stretch;
}

/* Match the height of the content column */
.philosophy-visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    align-self: stretch;
    min-height: 0;
    height: 100%;
}

/* ==========================================================
   LEFT TALL IMAGE
========================================================== */

.philosophy-main-image {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 470px;
    overflow: hidden;
    border-radius: 4px 26px 4px 26px;
    background: #151515;
}

.philosophy-main-image figure,
.philosophy-main-image img {
    width: 100%;
    height: 100%;
}

.philosophy-main-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.05);
    transition:
        transform 0.9s ease,
        filter 0.9s ease;
}

.philosophy-main-image:hover img {
    transform: scale(1.045);
    filter: saturate(0.96) contrast(1.06);
}

.philosophy-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.04),
            transparent 40%,
            rgba(5, 5, 5, 0.7) 100%);
}

/* ==========================================================
   RIGHT WIDE IMAGE
========================================================== */

.philosophy-secondary-image {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 270px;
    padding: 0;
    overflow: hidden;
    border-radius: 24px 4px 24px 4px;
    background: #161616;
    box-shadow: none;
}

.philosophy-secondary-image figure,
.philosophy-secondary-image img {
    width: 100%;
    height: 100%;
}

.philosophy-secondary-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    filter: saturate(0.84) contrast(1.04);
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.philosophy-secondary-image:hover img {
    transform: scale(1.045);
    filter: saturate(0.96) contrast(1.05);
}

/* Subtle frame around the second image */
.philosophy-secondary-image::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(223, 182, 108, 0.32);
    border-radius: 17px 3px 17px 3px;
    pointer-events: none;
}

/* ==========================================================
   CAPTION BECOMES A QUOTE PANEL
========================================================== */

.philosophy-image-caption {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    min-height: 145px;
    padding: 24px 24px 24px 28px;
    border: 1px solid rgba(200, 149, 69, 0.2);
    border-left: 3px solid var(--wearch-gold);
    border-radius: 4px 22px 4px 22px;
    background:
        linear-gradient(135deg,
            rgba(200, 149, 69, 0.12),
            rgba(255, 255, 255, 0.035));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
}

.philosophy-image-caption::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 18px;
    color: rgba(223, 182, 108, 0.16);
    font-family: var(--heading-font);
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
}

.philosophy-image-caption span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 8px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.philosophy-image-caption strong {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 260px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--heading-font);
    font-size: clamp(21px, 1.8vw, 28px);
    font-weight: 500;
    line-height: 1.15;
}

/* ==========================================================
   FORM / FUNCTION LABEL
========================================================== */

.philosophy-image-mark {
    position: absolute;
    top: 22px;
    left: 22px;
    right: auto;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border: 1px solid rgba(223, 182, 108, 0.28);
    border-radius: 13px 3px 13px 3px;
    background: rgba(8, 8, 8, 0.72);
    color: rgba(255, 255, 255, 0.67);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: none;
    backdrop-filter: blur(10px);
}

.philosophy-image-mark i {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--wearch-gold);
}

/* Gold corner detail */
.philosophy-visual::before {
    content: "";
    position: absolute;
    right: -9px;
    bottom: -9px;
    z-index: -1;
    width: 72%;
    height: 62%;
    border-right: 1px solid rgba(200, 149, 69, 0.18);
    border-bottom: 1px solid rgba(200, 149, 69, 0.18);
    border-radius: 0 0 28px 0;
    pointer-events: none;
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 820px) and (min-width: 992px) {
    .philosophy-main-image {
        min-height: 420px;
    }

    .philosophy-secondary-image {
        min-height: 235px;
    }

    .philosophy-image-caption {
        min-height: 125px;
        padding: 19px 20px 19px 23px;
    }

    .philosophy-image-caption strong {
        font-size: 22px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {
    .philosophy-visual {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        grid-template-rows: 340px 175px;
        width: 100%;
        height: auto;
        min-height: 0;
        max-width: 720px;
    }

    .philosophy-main-image {
        min-height: 0;
    }

    .philosophy-secondary-image {
        min-height: 0;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {
    .philosophy-visual {
        grid-template-columns: 1fr 0.72fr;
        grid-template-rows: 285px 140px;
        gap: 10px;
        height: auto;
        min-height: 0;
    }

    .philosophy-main-image {
        grid-column: 1;
        grid-row: 1 / 3;
        min-height: 0;
        border-radius: 4px 20px 4px 20px;
    }

    .philosophy-secondary-image {
        grid-column: 2;
        grid-row: 1;
        min-height: 0;
        border-radius: 18px 4px 18px 4px;
    }

    .philosophy-secondary-image::after {
        inset: 8px;
    }

    .philosophy-image-caption {
        grid-column: 2;
        grid-row: 2;
        min-height: 0;
        padding: 15px 13px 14px 16px;
        border-radius: 4px 16px 4px 16px;
    }

    .philosophy-image-caption::before {
        top: 7px;
        right: 8px;
        font-size: 46px;
    }

    .philosophy-image-caption span {
        margin-bottom: 5px;
        font-size: 7px;
        letter-spacing: 0.1em;
    }

    .philosophy-image-caption strong {
        font-size: 16px;
        line-height: 1.15;
    }

    .philosophy-image-mark {
        top: 14px;
        left: 14px;
        gap: 7px;
        padding: 8px 10px;
        font-size: 7px;
    }

    .philosophy-image-mark i {
        width: 18px;
    }
}

/* Small phones */
@media only screen and (max-width: 480px) {
    .philosophy-visual {
        grid-template-columns: 1fr;
        grid-template-rows: 285px 180px auto;
    }

    .philosophy-main-image {
        grid-column: 1;
        grid-row: 1;
    }

    .philosophy-secondary-image {
        grid-column: 1;
        grid-row: 2;
    }

    .philosophy-image-caption {
        grid-column: 1;
        grid-row: 3;
        min-height: 115px;
    }

    .philosophy-visual::before {
        display: none;
    }
}

/*=========================================
  PHILOSOPHY RESPONSIVE
=========================================*/

/* Laptop */
@media (max-width:1199px) {

    .philosophy-layout {
        gap: 55px;
        align-items: center;
    }

    .philosophy-heading {
        font-size: clamp(38px, 4vw, 48px);
    }

    .philosophy-heading span {
        padding-left: 40px;
    }

    .philosophy-main-image {
        height: 520px;
    }

    .philosophy-secondary-image {
        width: 46%;
        height: 250px;
    }

    .philosophy-content {
        padding: 36px;
    }

    .philosophy-statement h3 {
        font-size: 34px;
    }

    .philosophy-item {
        padding: 18px 0;
    }
}

/* Tablet */
@media (max-width:991px) {

    .philosophy-header {
        margin-bottom: 45px;
    }

    .philosophy-header .row {
        row-gap: 20px;
    }

    .philosophy-heading {
        font-size: 40px;
    }

    .philosophy-heading span {
        padding-left: 0;
    }

    .philosophy-header-text {
        max-width: 100%;
        margin: 0;
        padding-left: 18px;
    }

    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy-visual {
        max-width: 700px;
        margin: 0 auto;
        min-height: 560px;
    }

    .philosophy-main-image {
        width: 82%;
        height: 460px;
    }

    .philosophy-secondary-image {
        width: 42%;
        height: 230px;
    }

    .philosophy-content {
        max-width: 700px;
        margin: auto;
    }

    .philosophy-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

/* Mobile */
@media (max-width:767px) {

    .wearch-philosophy {
        padding: 70px 0;
    }

    .philosophy-header {
        margin-bottom: 35px;
    }

    .process-eyebrow,
    .philosophy-eyebrow {
        margin-bottom: 12px;
    }

    .philosophy-heading {
        font-size: 34px;
        line-height: 1.15;
    }

    .philosophy-heading span {
        margin-top: 6px;
    }

    .philosophy-header-text {
        font-size: 15px;
        line-height: 1.7;
        padding-left: 14px;
    }

    .philosophy-layout {
        gap: 40px;
    }

    .philosophy-visual {
        min-height: 430px;
    }

    .philosophy-main-image {
        position: relative;
        width: 100%;
        height: 330px;
        border-radius: 22px;
    }

    .philosophy-secondary-image {
        position: absolute;
        right: 15px;
        bottom: 0;
        width: 46%;
        height: 170px;
    }

    .philosophy-image-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 14px 16px;
    }

    .philosophy-content {
        padding: 28px 22px;
    }

    .philosophy-statement h3 {
        font-size: 28px;
    }

    .philosophy-statement p {
        font-size: 15px;
    }

    .philosophy-item {
        grid-template-columns: 36px 1fr 28px;
        gap: 12px;
        padding: 16px 0;
    }

    .philosophy-number {
        font-size: 12px;
    }

    .philosophy-item-content h4 {
        font-size: 18px;
    }

    .philosophy-item-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .philosophy-footer {
        gap: 16px;
    }

    .philosophy-footer-note {
        padding-left: 14px;
    }

    .philosophy-background-word {
        font-size: 120px;
        bottom: -20px;
        right: -10px;
    }
}

/* Small Mobile */
@media (max-width:480px) {

    .philosophy-heading {
        font-size: 30px;
    }

    .philosophy-visual {
        min-height: 360px;
    }

    .philosophy-main-image {
        height: 280px;
    }

    .philosophy-secondary-image {
        width: 50%;
        height: 145px;
    }

    .philosophy-image-caption strong {
        font-size: 16px;
    }

    .philosophy-item {
        grid-template-columns: 30px 1fr;
    }

    .philosophy-item-icon {
        display: none;
    }

    .philosophy-background-word {
        font-size: 90px;
    }
}

/* ==========================================================
   PHILOSOPHY IMAGES — RESPONSIVE REDESIGN
========================================================== */

/* Tablet */
@media only screen and (max-width: 991px) {

    .philosophy-visual {
        position: relative;
        width: 100%;
        max-width: 720px;
        height: auto;
        min-height: 590px;
        margin: 0 auto;
    }

    .philosophy-main-image {
        position: relative;
        inset: auto;
        width: 88%;
        height: 430px;
        margin-right: auto;
        overflow: hidden;
        border-radius: 28px 5px 28px 5px;
    }

    .philosophy-secondary-image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 55%;
        height: 250px;
        padding: 6px;
        overflow: hidden;
        border-radius: 24px 5px 24px 5px;
        background: #111111;
        box-shadow:
            0 24px 55px rgba(0, 0, 0, 0.42),
            0 0 0 1px rgba(200, 149, 69, 0.12);
    }

    .philosophy-secondary-image figure,
    .philosophy-secondary-image img {
        width: 100%;
        height: 100%;
    }

    .philosophy-secondary-image img {
        object-fit: cover;
        border-radius: 18px 3px 18px 3px;
    }

    /* Remove image caption on responsive screens */
    .philosophy-image-caption {
        display: none;
    }
}


/* Mobile */
@media only screen and (max-width: 767px) {

    .philosophy-visual {
        min-height: 470px;
    }

    .philosophy-main-image {
        width: 92%;
        height: 335px;
        border-radius: 23px 4px 23px 4px;
    }

    .philosophy-secondary-image {
        right: 0;
        bottom: 0;
        width: 58%;
        height: 205px;
        padding: 5px;
        border-radius: 20px 4px 20px 4px;
    }

    .philosophy-secondary-image img {
        border-radius: 15px 3px 15px 3px;
    }
}


/* Small mobile */
@media only screen and (max-width: 480px) {

    .philosophy-visual {
        min-height: 405px;
    }

    .philosophy-main-image {
        width: 94%;
        height: 290px;
    }

    .philosophy-secondary-image {
        width: 62%;
        height: 175px;
    }
}

/* ==========================================================
   WEARCH SERVICES — PREMIUM MINIMAL SHOWCASE
========================================================== */

.wearch-services {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 44px 0 34px;
    background: linear-gradient(135deg, #090909 0%, #111111 100%);
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.wearch-services .container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* ==========================================================
   HEADER
========================================================== */

.wearch-services-header {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
}

.services-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.services-eyebrow span {
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: var(--wearch-gold-light);
    letter-spacing: 0.12em;
}

.services-eyebrow i {
    width: 32px;
    height: 1px;
    background: rgba(200, 149, 69, 0.35);
}

.services-eyebrow p {
    margin: 0;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.services-main-heading {
    font-family: var(--heading-font);
    font-size: clamp(38px, 3.5vw, 52px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.services-main-heading span {
    display: block;
    margin-top: 4px;
    color: var(--wearch-gold-light);
    font-weight: 400;
}

.services-header-text {
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(200, 149, 69, 0.3);
    padding-left: 16px;
    margin: 0;
}

/* ==========================================================
   EXPERTISE SYMMETRICAL EDITORIAL GRID SHOWCASE
========================================================== */

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
    align-items: stretch;
}

.expertise-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: transparent;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.expertise-card-image {
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    background-color: #121212;
}

.expertise-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: none !important;
    opacity: 1 !important;
}

.expertise-card-title {
    padding: 12px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.expertise-card-title h3 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 500;
    color: #f7f1e7;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Hover Interactions for Fine Pointer / Mouse Devices */
@media (hover: hover) and (pointer: fine) {
    .expertise-card {
        transition: z-index 0.3s ease;
    }

    .expertise-card:hover {
        z-index: 10;
    }

    .expertise-card-image img {
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .expertise-card:hover .expertise-card-image img {
        transform: scale(1.05);
    }

    .expertise-card-title h3 {
        transition: color 0.3s ease;
    }

    .expertise-card:hover .expertise-card-title h3 {
        color: var(--wearch-gold-light, #c89545);
    }
}

/* Desktop Editorial Grid Rules */
@media only screen and (min-width: 992px) {


    .expertise-card.card-side .expertise-card-image {
        min-height: 190px;
        aspect-ratio: 16 / 10;
    }
}

/* Tablet: 2-Column Balanced Grid */
@media only screen and (max-width: 991px) and (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .expertise-card-title {
        padding: 14px 16px;
    }
}

/* ==========================================================
   FOOTER CTA
========================================================== */

.services-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-top: auto;
}

.services-footer p {
    font-family: var(--body-font);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.services-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}

.services-all-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 8px;
    transition: all 0.3s ease;
}

.services-all-link:hover {
    color: var(--wearch-gold-light);
}

.services-all-link:hover .services-all-icon {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #000000;
}

/* ==========================================================
   BACKGROUND TEXT
========================================================== */

.services-background-word {
    position: absolute;
    right: -15px;
    bottom: -40px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.017);
    font-family: var(--heading-font);
    font-size: clamp(100px, 14vw, 205px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.04em;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   DESKTOP ALIGNMENT (Equal Height Stretch)
========================================================== */

@media only screen and (min-width: 992px) {
    .services-showcase {
        display: grid;
        grid-template-columns: 43% 57%;
        gap: 48px;
        align-items: stretch;
        /* Forces equal height of left and right columns */
    }

    .services-list,
    .services-preview {
        height: 100%;
    }

    .services-preview,
    .service-preview-item,
    .service-preview-item img {
        min-height: 0;
        height: 100%;
        width: 100%;
    }

    .service-preview-item img {
        object-fit: cover;
    }
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 830px) and (min-width: 992px) {
    .wearch-services {
        min-height: auto;
        padding: 35px 0 32px;
    }

    .wearch-services-header {
        margin-bottom: 22px;
    }

    .services-main-heading {
        font-size: clamp(35px, 3.2vw, 47px);
    }

    .wearch-service-item {
        min-height: 82px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .service-name small {
        font-size: 1.03rem;
        line-height: 1.75;
    }

    .services-preview {
        height: 100%;
        min-height: 0;
    }

    .services-footer {
        margin-top: 15px;
    }
}

/* ==========================================================
   TABLET & MOBILE RESPONSIVE OVERRIDES
========================================================== */

@media only screen and (max-width: 991px) {
    .wearch-services {
        display: block;
        min-height: auto;
        padding: 60px 0;
    }

    .wearch-services .container {
        display: block;
    }

    .wearch-services-header {
        margin-bottom: 24px;
    }

    .services-main-heading span {
        padding-left: 0;
    }

    .services-header-text {
        max-width: 100%;
        margin: 16px 0 0;
        padding-left: 14px;
        border-left: 1px solid rgba(200, 149, 69, 0.35);
        font-size: 15px;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 24px;
        align-items: stretch;
    }

    .services-list,
    .services-preview {
        height: auto;
        min-height: auto;
    }

    .services-list {
        grid-row: 1;
        /* Keep service list above the featured image */
    }

    .services-preview {
        grid-row: 2;
        min-height: 450px;
        /* Tablet featured image height around 420px–500px */
    }

    .services-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .wearch-services {
        padding: 56px 0;
        /* Use section padding around 56px–64px */
    }

    .services-showcase {
        gap: 24px;
        margin-bottom: 20px;
    }

    .services-preview {
        min-height: 310px;
        /* Mobile featured image height around 290px–340px */
    }

    .services-preview::after {
        display: none;
        /* Remove nonessential decorative borders */
    }

    .service-preview-top {
        top: 16px;
        right: 16px;
    }

    .service-preview-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .service-preview-content>strong {
        font-size: 22px;
        /* Keep featured statement compact */
        margin-bottom: 10px;
        max-width: 100%;
    }

    .service-preview-link {
        padding: 8px 12px;
        /* Avoid oversized buttons */
        font-size: 8px;
    }

    .wearch-service-item {
        grid-template-columns: 24px 1fr auto;
        gap: 12px;
        padding: 12px 0;
    }

    .service-number {
        font-size: 8px;
        padding-top: 4px;
    }

    .service-name strong {
        font-size: 18px;
    }

    .service-name small {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .service-arrow {
        width: 24px;
        height: 24px;
        font-size: 7px;
    }

    .services-background-word {
        display: none !important;
        /* Hide EXPERTISE background word below 768px */
    }

    .services-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 12px;
    }

    .services-footer p {
        font-size: 14px;
    }

    .services-all-link {
        font-size: 8px;
    }

    .services-all-icon {
        width: 24px;
        height: 24px;
        font-size: 7px;
    }
}

@media only screen and (max-width: 480px) {
    .service-name small {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .wearch-service-item {
        min-height: 64px;
    }

    .services-preview {
        min-height: 290px;
        /* within 290px–340px */
    }
}

/* ==========================================================
   WEARCH PROCESS — ARCHITECTURAL WORKFLOW
========================================================== */

.wearch-process {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 54px 0 44px;
    background: linear-gradient(135deg, #090909 0%, #111111 100%);
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.wearch-process .container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* Blueprint Grid Background */
.wearch-process::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* ==========================================================
   HEADER
========================================================== */

.process-header {
    position: relative;
    z-index: 3;
    margin-bottom: 28px;
}

.process-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.process-eyebrow span {
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: var(--wearch-gold-light);
    letter-spacing: 0.12em;
}

.process-eyebrow i {
    width: 32px;
    height: 1px;
    background: rgba(200, 149, 69, 0.35);
}

.process-eyebrow p {
    margin: 0;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.process-heading {
    font-family: var(--heading-font);
    font-size: clamp(38px, 3.5vw, 52px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.process-heading span {
    display: block;
    margin-top: 4px;
    color: var(--wearch-gold-light);
    font-weight: 400;
}

.process-header-text {
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(200, 149, 69, 0.3);
    padding-left: 16px;
    margin: 0;
}

/* ==========================================================
   JOURNEY INDICATOR
========================================================== */

.process-journey {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 34px;
    position: relative;
    z-index: 3;
}

.journey-start,
.journey-end {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 15px;
    color: var(--wearch-gold-light);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.journey-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(200, 149, 69, 0) 0%,
            rgba(200, 149, 69, 0.35) 15%,
            rgba(200, 149, 69, 0.35) 85%,
            rgba(200, 149, 69, 0) 100%);
    margin: 0 24px;
}

/* ==========================================================
   PROCESS STAGE / GRID
========================================================== */

.process-stage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 28px;
    position: relative;
    z-index: 3;
}

/* ==========================================================
   PROCESS CARDS
========================================================== */

.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-top-color: var(--wearch-gold-light);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.process-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.process-step-number {
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    color: var(--wearch-gold-light);
    letter-spacing: 0.1em;
}

.process-card-icon {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.22);
    transition: color 0.4s ease;
}

.process-card:hover .process-card-icon {
    color: var(--wearch-gold);
}

.process-step-label {
    display: block;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.process-card-content h3 {
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.process-card-content p {
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ==========================================================
   FOOTER / CTA
========================================================== */

.process-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-top: auto;
    position: relative;
    z-index: 3;
}

.process-footer p {
    font-family: var(--body-font);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.process-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}

.process-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 8px;
    transition: all 0.3s ease;
}

.process-link:hover {
    color: var(--wearch-gold-light);
}

.process-link:hover .process-link-icon {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #000000;
}

/* ==========================================================
   BACKGROUND TEXT
========================================================== */

.process-background-word {
    position: absolute;
    right: -15px;
    bottom: -40px;
    z-index: -1;
    font-size: 0;
    pointer-events: none;
    user-select: none;
}

.process-background-word::after {
    content: "PROCESS";
    display: block;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 220px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.06em;
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 830px) and (min-width: 992px) {
    .wearch-process {
        padding: 30px 0;
        min-height: calc(100vh - var(--wearch-header-height, 98px));
        min-height: calc(100svh - var(--wearch-header-height, 98px));
    }

    .process-header {
        margin-bottom: 16px;
    }

    .process-heading {
        font-size: clamp(34px, 3vw, 44px);
    }

    .process-journey {
        margin-bottom: 20px;
    }

    .process-stage {
        gap: 16px;
        margin-bottom: 16px;
    }

    .process-card {
        padding: 16px 20px;
    }

    .process-card-top {
        margin-bottom: 14px;
    }

    .process-card-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .process-footer {
        padding-top: 12px;
    }
}

/* ==========================================================
   TABLET & MOBILE RESPONSIVE OVERRIDES
========================================================== */

@media only screen and (max-width: 991px) {
    .wearch-process {
        display: block;
        min-height: auto;
        padding: 60px 0;
    }

    .wearch-process .container {
        display: block;
    }

    .process-header {
        margin-bottom: 24px;
    }

    .process-heading span {
        padding-left: 0;
    }

    .process-header-text {
        max-width: 100%;
        margin: 16px 0 0;
        padding-left: 14px;
        border-left: 1px solid rgba(200, 149, 69, 0.35);
        font-size: 15px;
    }

    .process-journey {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
        text-align: center;
    }

    .journey-line {
        width: 1px;
        height: 48px;
        margin: 8px auto;
        background: linear-gradient(180deg,
                rgba(200, 149, 69, 0) 0%,
                rgba(200, 149, 69, 0.35) 15%,
                rgba(200, 149, 69, 0.35) 85%,
                rgba(200, 149, 69, 0) 100%);
    }

    .process-stage {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 32px;
    }

    .process-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .wearch-process {
        padding: 56px 0;
    }

    .process-stage {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }

    .process-card {
        padding: 20px;
    }

    .process-card-top {
        margin-bottom: 14px;
    }

    .process-card-content h3 {
        font-size: 19px;
    }

    .process-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 12px;
    }

    .process-footer p {
        font-size: 14px;
    }
}

/*=========================================================
WEARCH PREMIUM TYPOGRAPHY SYSTEM
=========================================================*/

:root {

    --heading-font: "Space Grotesk", sans-serif;
    --body-font: "Manrope", sans-serif;

}

/*---------------------------------------------------------
BODY
---------------------------------------------------------*/

body {

    font-family: var(--body-font);
    font-size: 18px;

    font-weight: 400;
    line-height: 1.8;
    color: #d8d8d8;

}

/*---------------------------------------------------------
HEADINGS
---------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.02em;

}

/*---------------------------------------------------------
PARAGRAPH
---------------------------------------------------------*/

p {

    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.9;
    font-weight: 400;
    color: #c7c7c7;

}

/*---------------------------------------------------------
SECTION LABELS
---------------------------------------------------------*/

.section-title h3 {

    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: .22em;
    font-weight: 700;
    text-transform: uppercase;

}

/* WEARCH PREMIUM TYPOGRAPHY OVERRIDE */
:root {
    --heading-font: "Space Grotesk", sans-serif;
    --body-font: "Manrope", sans-serif;
}

body {
    font-family: var(--body-font) !important;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .02em;
}

p {
    font-family: var(--body-font) !important;
    font-size: 17px !important;
    line-height: 1.9 !important;
    color: #c8c8c8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font) !important;
    letter-spacing: -0.02em !important;
}

.section-title h1 {
    font-size: clamp(52px, 5vw, 74px) !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
}

.section-title h2 {
    font-size: clamp(34px, 3.2vw, 42px) !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
}

.section-title h3 {
    font-family: var(--body-font) !important;
    font-size: 13px !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
}

.hero-content .section-title p {
    font-size: 18px !important;
    max-width: 620px;
    line-height: 1.9 !important;
}

.about-us-content p,
.design-philosophy p,
.our-services p,
.section-title-content p {
    font-size: 17px !important;
    line-height: 1.9 !important;
}

.main-menu ul li a,
.wearch-header-btn,
.slicknav_nav li a {
    font-family: var(--body-font) !important;
}

.about-us,
.design-philosophy,
.our-services {
    padding: 95px 0 !important;
}



@media(max-width:991px) {
    .section-title h1 {
        font-size: 44px !important;
    }

    .section-title h2 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }
}



/* ==========================================================
   WEARCH ABOUT — PREMIUM ONE-VIEWPORT EDITORIAL VERSION
========================================================== */

:root {
    --wearch-header-height: 98px;
}

/* Main section */
.wearch-about-compact {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--wearch-header-height));
    min-height: calc(100svh - var(--wearch-header-height));
    padding: clamp(48px, 6vh, 72px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 14%,
            rgba(200, 149, 69, 0.1),
            transparent 27%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 50%,
            #171717 100%);
    isolation: isolate;
}

/* Architectural vertical lines */
.wearch-about-compact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(90deg,
            transparent calc(25% - 0.5px),
            rgba(255, 255, 255, 0.04) 25%,
            transparent calc(25% + 0.5px)),
        linear-gradient(90deg,
            transparent calc(50% - 0.5px),
            rgba(255, 255, 255, 0.035) 50%,
            transparent calc(50% + 0.5px)),
        linear-gradient(90deg,
            transparent calc(75% - 0.5px),
            rgba(255, 255, 255, 0.03) 75%,
            transparent calc(75% + 0.5px));
}

/* ==========================================================
   ABOUT EDITORIAL VISUAL — FULL HEIGHT VERSION
========================================================== */

/* Make both columns equal in height */
.wearch-about-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: clamp(50px, 5vw, 82px);
}

/* Right content determines the section row height */
.about-editorial-content {
    align-self: stretch;
}

/* Visual side follows the exact content height */
.about-editorial-visual {
    position: relative;
    align-self: stretch;
    min-height: 0;
    height: 100%;
    overflow: visible;
}

/* Main image fills almost the complete column */
.about-editorial-main-image {
    position: absolute;
    inset: 0 15% 0 0;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 30px 6px 30px 6px;
    background: #151515;
}

/* Main image elements */
.about-editorial-main-image figure,
.about-editorial-main-image img {
    width: 100%;
    height: 100%;
}

.about-editorial-main-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.84) contrast(1.04);
    transition:
        transform 0.9s ease,
        filter 0.9s ease;
}

.about-editorial-main-image:hover img {
    transform: scale(1.045);
    filter: saturate(0.96) contrast(1.05);
}

/* Premium overlay */
.about-editorial-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.04) 0%,
            transparent 42%,
            rgba(5, 5, 5, 0.72) 100%);
}

/* Secondary image becomes larger and wider */
.about-editorial-secondary-image {
    position: absolute;
    right: 0;
    bottom: 7%;
    z-index: 4;
    width: 42%;
    height: 43%;
    padding: 7px;
    overflow: hidden;
    border-radius: 24px 5px 24px 5px;
    background: #171717;
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(200, 149, 69, 0.12);
}

.about-editorial-secondary-image figure,
.about-editorial-secondary-image img {
    width: 100%;
    height: 100%;
}

.about-editorial-secondary-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 18px 3px 18px 3px;
    transition: transform 0.75s ease;
}

.about-editorial-secondary-image:hover img {
    transform: scale(1.04);
}

/* Caption positioned inside main image */
.about-image-caption {
    position: absolute;
    right: 19%;
    bottom: 24px;
    left: 24px;
    z-index: 5;
    max-width: 285px;
    padding: 14px 17px;
    border-left: 2px solid var(--wearch-gold);
    background: rgba(7, 7, 7, 0.76);
    backdrop-filter: blur(12px);
}

.about-image-caption span {
    display: block;
    margin-bottom: 5px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-image-caption strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

/* Floating brand mark */



/* Decorative gold line behind secondary image */
.about-editorial-visual::after {
    content: "";
    position: absolute;
    top: 14%;
    right: 7%;
    bottom: 13%;
    width: 1px;
    z-index: 2;
    background: linear-gradient(180deg,
            transparent,
            rgba(200, 149, 69, 0.45),
            transparent);
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 820px) and (min-width: 992px) {

    .about-editorial-main-image {
        right: 14%;
    }

    .about-editorial-secondary-image {
        width: 40%;
        height: 42%;
        bottom: 5%;
    }

    .about-image-caption {
        right: 17%;
        bottom: 18px;
        left: 18px;
        padding: 11px 14px;
    }

    .about-image-caption strong {
        font-size: 16px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-about-editorial {
        grid-template-columns: 1fr;
        align-items: initial;
    }

    .about-editorial-visual {
        width: 100%;
        height: 620px;
        min-height: 620px;
    }

    .about-editorial-main-image {
        inset: 0 14% 0 0;
    }

    .about-editorial-secondary-image {
        width: 42%;
        height: 44%;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .about-editorial-visual {
        height: 475px;
        min-height: 475px;
    }

    .about-editorial-main-image {
        inset: 0 10% 0 0;
        border-radius: 24px 5px 24px 5px;
    }

    .about-editorial-secondary-image {
        right: 0;
        bottom: 5%;
        width: 48%;
        height: 43%;
        border-radius: 20px 4px 20px 4px;
    }




    .about-image-caption {
        right: 16%;
        bottom: 16px;
        left: 15px;
        max-width: 220px;
        padding: 11px 13px;
    }

    .about-image-caption strong {
        font-size: 15px;
    }
}

/* Small phones */
@media only screen and (max-width: 480px) {

    .about-editorial-visual {
        height: 400px;
        min-height: 400px;
    }

    .about-editorial-main-image {
        right: 8%;
    }

    .about-editorial-secondary-image {
        width: 52%;
        height: 42%;
    }

    .about-image-caption {
        right: 12%;
    }

}

/* ==========================================================
   CONTENT SIDE
========================================================== */

.about-editorial-content {
    position: relative;
    max-width: 620px;
}

/* Eyebrow */
.about-editorial-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.about-editorial-label>span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.about-editorial-label>i {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--wearch-gold);
}

.about-editorial-label>p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

/* Main heading */
.about-editorial-content> :is(h1, h2) {
    max-width: 650px;
    margin: 0 0 25px;
    color: var(--wearch-gold-light, #c89545);
    font-family: var(--heading-font);
    font-size: clamp(39px, 3.7vw, 55px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.about-editorial-content> :is(h1, h2) span {
    display: block;
    margin-top: 4px;
    padding-left: 38px;
    color: var(--wearch-gold-light);
    font-weight: 500;
}

/* Story content */
.about-editorial-statement {
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 1px solid rgba(223, 182, 108, 0.42);
}

.about-editorial-statement>span {
    display: block;
    margin-bottom: 10px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-editorial-statement h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(25px, 2.2vw, 32px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-editorial-statement h3 strong {
    display: block;
    margin-top: 3px;
    color: var(--wearch-gold-light);
    font-weight: 500;
}

.about-editorial-statement p {
    max-width: 565px;
    margin: 0 0 11px;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0;
}

.about-editorial-statement p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   COMPACT SERVICES
========================================================== */

.about-editorial-services {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 10px 18px;
    margin-top: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.about-editorial-services span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.about-editorial-services span i {
    display: block;
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--wearch-gold);
    box-shadow: 0 0 8px rgba(200, 149, 69, 0.35);
}

/* ==========================================================
   FOOTER
========================================================== */

.about-editorial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 25px;
}

.about-editorial-reach {
    padding-left: 16px;
    border-left: 1px solid rgba(223, 182, 108, 0.3);
}

.about-editorial-reach span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-editorial-reach strong {
    color: var(--wearch-gold-light);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.wearch-about-compact .about-background-text {
    position: absolute;
    right: -14px;
    bottom: -35px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 220px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.06em;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   SHORT LAPTOP SCREENS
========================================================== */

@media only screen and (max-height: 820px) and (min-width: 992px) {

    .wearch-about-compact {
        padding: 38px 0;
    }

    .wearch-about-editorial {
        gap: 55px;
    }

    .about-editorial-visual {
        min-height: 455px;
    }

    .about-editorial-content> :is(h1, h2) {
        margin-bottom: 18px;
        font-size: clamp(36px, 3.3vw, 48px);
    }

    .about-editorial-statement {
        margin-bottom: 17px;
    }

    .about-editorial-statement h3 {
        margin-bottom: 11px;
        font-size: 25px;
    }

    .about-editorial-statement p {
        margin-bottom: 7px;
        font-size: 15px;
        line-height: 1.62;
    }

    .about-editorial-services {
        gap: 7px 16px;
        margin-top: 15px;
        padding: 13px 0;
    }

    .about-editorial-footer {
        margin-top: 17px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-about-compact {
        display: block;
        min-height: 0;
        padding: 82px 0;
    }

    .wearch-about-editorial {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-editorial-visual {
        width: 100%;
        max-width: 740px;
        min-height: 610px;
    }

    .about-editorial-content {
        max-width: 740px;
    }

    .about-editorial-content> :is(h1, h2) {
        font-size: clamp(42px, 7vw, 58px);
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .wearch-about-compact {
        padding: 68px 0;
    }

    .wearch-about-editorial {
        gap: 45px;
    }

    .about-editorial-visual {
        min-height: 455px;
    }

    .about-editorial-main-image {
        width: 85%;
        height: 88%;
        border-radius: 24px 4px 24px 4px;
    }

    .about-editorial-secondary-image {
        width: 49%;
        height: 49%;
    }


    .about-image-caption {
        bottom: 15px;
        left: 15px;
        max-width: 215px;
        padding: 10px 12px;
    }

    .about-image-caption strong {
        font-size: 15px;
    }

    .about-editorial-content> :is(h1, h2) {
        font-size: clamp(37px, 10.5vw, 50px);
    }

    .about-editorial-content> :is(h1, h2) span {
        padding-left: 0;
    }

    .about-editorial-statement {
        padding-left: 14px;
    }

    .about-editorial-statement p {
        font-size: 15px;
        line-height: 1.72;
    }

    .about-editorial-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Small phones */
@media only screen and (max-width: 480px) {

    .about-editorial-visual {
        min-height: 390px;
    }

    .about-editorial-main-image {
        width: 88%;
    }

    .about-editorial-secondary-image {
        width: 54%;
    }

    .about-editorial-services {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-flow: row;
    }

    .wearch-about-compact .about-background-text {
        font-size: 95px;
    }
}

/* ==========================================================
   ABOUT BUTTON
========================================================== */

.wearch-about-btn,
.cta-gold-accent-btn,
.about-story-btn,
.contact-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 7px 8px 7px 20px;
    overflow: hidden;
    border: 1px solid rgba(223, 182, 108, 0.55);
    border-radius: 18px 4px 18px 4px;
    background: transparent;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    isolation: isolate;
    cursor: pointer;
    box-shadow: none;
    line-height: normal;
    transition:
        color 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease;
}

.wearch-about-btn::before,
.cta-gold-accent-btn::before,
.about-story-btn::before,
.contact-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg,
            var(--wearch-gold-dark),
            var(--wearch-gold));
    clip-path: circle(0 at 85% 50%);
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.wearch-about-btn:hover::before,
.cta-gold-accent-btn:hover::before,
.about-story-btn:hover::before,
.contact-submit-btn:hover::before {
    clip-path: circle(150% at 85% 50%);
}

.wearch-about-btn:hover,
.cta-gold-accent-btn:hover,
.about-story-btn:hover,
.contact-submit-btn:hover {
    border-color: var(--wearch-gold);
    color: #111111;
    transform: translateY(-3px);
}

.wearch-about-btn span,
.cta-gold-accent-btn span,
.about-story-btn span,
.contact-submit-btn span {
    position: relative;
    z-index: 2;
}

.about-btn-icon,
.cta-gold-accent-btn .about-btn-icon,
.about-story-btn .about-btn-icon,
.contact-submit-btn .about-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--wearch-gold);
    color: #111111;
    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.about-btn-icon i,
.cta-gold-accent-btn .about-btn-icon i,
.about-story-btn .about-btn-icon i,
.contact-submit-btn .about-btn-icon i {
    font-size: 10px;
    transition: transform 0.35s ease;
}

.wearch-about-btn:hover .about-btn-icon,
.cta-gold-accent-btn:hover .about-btn-icon,
.about-story-btn:hover .about-btn-icon,
.contact-submit-btn:hover .about-btn-icon {
    background: #111111;
    color: var(--wearch-gold);
}

.wearch-about-btn:hover .about-btn-icon i,
.cta-gold-accent-btn:hover .about-btn-icon i,
.about-story-btn:hover .about-btn-icon i,
.contact-submit-btn:hover .about-btn-icon i {
    transform: translateX(4px);
}

/* ===========================
   PROCESS RESPONSIVE ORDER
=========================== */

@media only screen and (max-width: 991px) {

    .process-stage {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Move the journey card to the top */

    .process-card-1 {
        order: 2;
    }

    .process-card-2 {
        order: 3;
    }

    .process-card-3 {
        order: 4;
    }

    .process-card-4 {
        order: 5;
    }

    /* Decorative line isn't needed on mobile */
}

/* ==========================================================
   WEARCH PROJECTS SECTION — DARK PREMIUM GALLERY
========================================================== */

.wearch-projects {
    position: relative;
    overflow: hidden;
    padding: 52px 0 78px;
    background:
        radial-gradient(circle at 90% 12%,
            rgba(200, 149, 69, 0.1),
            transparent 27%),
        linear-gradient(135deg,
            #090909 0%,
            #111111 52%,
            #171717 100%);
    isolation: isolate;
}

/* Subtle architectural background grid */
.wearch-projects::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);
    background-size: 110px 110px;
}

/* Decorative gold circle */
.wearch-projects::after {
    content: "";
    position: absolute;
    top: -230px;
    left: -220px;
    z-index: -1;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(200, 149, 69, 0.1);
    border-radius: 50%;
}

/* Keep all real content above decorative elements */
.wearch-projects>.container {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   FIRST VIEWPORT AREA
========================================================== */

.projects-featured-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 10px 0 32px;
    min-height: calc(100vh - 92px);
    /* navbar height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ==========================================================
   SECTION HEADER
========================================================== */

.projects-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.projects-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.projects-label span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.projects-label i {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wearch-gold);
}

.projects-label p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.projects-title {
    max-width: 800px;
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(38px, 3.6vw, 53px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.projects-title span {
    display: block;
    margin-top: 3px;
    padding-left: 44px;
    color: var(--wearch-gold-light);
    font-weight: 500;
}

.projects-description {
    max-width: 390px;
    margin: 0 0 3px auto;
    padding-left: 18px;
    border-left: 1px solid rgba(223, 182, 108, 0.48);
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.72;
}

/* ==========================================================
   FEATURED PROJECT
========================================================== */

.featured-project {
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
}

.featured-project-image {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(500px, 58vh, 700px);
    overflow: hidden;
    border-radius: 6px 30px 6px 30px;
    background: #171717;
    color: #ffffff;
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(200, 149, 69, 0.08);
}

.featured-project-image {
    height: 54vh;
    min-height: 400px;
}

.featured-project-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 3;
    border: 1px solid rgba(223, 182, 108, 0.23);
    border-radius: 3px 22px 3px 22px;
    pointer-events: none;
}

.featured-project-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.05);
    transition:
        transform 1s ease,
        filter 0.85s ease;
}

.featured-project-image:hover img {
    transform: scale(1.045);
    filter: saturate(0.98) contrast(1.06);
}

.featured-project-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding: 38px;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 5, 0.82) 0%,
            rgba(5, 5, 5, 0.4) 42%,
            transparent 74%),
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.08),
            transparent 45%,
            rgba(5, 5, 5, 0.82) 100%);
}

.featured-project-overlay>div:first-child {
    max-width: 690px;
    padding-left: 18px;
    border-left: 2px solid var(--wearch-gold);
}

.featured-project-overlay span {
    display: block;
    margin-bottom: 9px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.featured-project-overlay h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(29px, 3vw, 45px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.featured-project-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.6;
}

.featured-arrow {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.32);
    color: #ffffff;
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.featured-project-image:hover .featured-arrow {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #111111;
    transform: rotate(45deg);
}

/* ==========================================================
   PROJECT GRID AREA
========================================================== */

.projects-gallery-area {
    position: relative;
    z-index: 2;
    padding-top: 28px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    /* Increased gap */
}

/* Common card */
.project-card {
    position: relative;
    display: block;
    height: 350px;
    overflow: hidden;
    border-radius: 24px 5px 24px 5px;
    background: #171717;
    color: #ffffff;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.27),
        0 0 0 1px rgba(200, 149, 69, 0.07);
}

@media (min-width: 992px) {
    .project-card {
        height: 340px !important;
        /* Increased desktop height */
    }

    .project-card:nth-child(3n + 1),
    .project-card:nth-child(3n + 2),
    .project-card:nth-child(3n + 3) {
        height: 340px !important;
    }

    .project-grid {
        gap: 40px !important;
        /* Larger gap on desktop */
    }
}

.projects-header {
    padding-top: 20px;
    margin-bottom: 24px;
}

.projects-footer {
    margin-top: 24px;
    margin-bottom: 24px;
}

.wearch-projects {
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.04);
    transition:
        transform 0.9s ease,
        filter 0.85s ease;
    text-indent: -9999px;
    font-size: 0;
    color: transparent;
    position: relative;
}

/* Render a dark placeholder when image fails to load */
.project-card img::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.project-card:hover img {
    transform: scale(1.055);
    filter: saturate(0.98) contrast(1.05);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.06),
            transparent 42%,
            rgba(5, 5, 5, 0.88) 100%);
    pointer-events: none;
}

.project-overlay {
    position: absolute;
    right: 25px;
    bottom: 24px;
    left: 25px;
    z-index: 4;
    display: block;
    padding-left: 16px;
    border-left: 2px solid var(--wearch-gold);
}

.project-overlay span {
    display: block;
    margin-bottom: 7px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.project-overlay h4 {
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.project-card .project-card-location {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.64);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.5;
}

/* Hover arrow */
.project-card-view {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.28);
    color: #ffffff;
    font-size: 10px;
    opacity: 0;
    transform: translateY(-8px);
    backdrop-filter: blur(8px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        color 0.35s ease,
        background-color 0.35s ease;
}

.project-card:hover .project-card-view {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
    background: var(--wearch-gold);
    color: #111111;
}

/* ==========================================================
   FOOTER
========================================================== */

.projects-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 32px;
}

.projects-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.6;
}

.projects-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 6px 7px 6px 17px;
    overflow: hidden;
    border: 1px solid rgba(223, 182, 108, 0.48);
    border-radius: 16px 4px 16px 4px;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    isolation: isolate;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.projects-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--wearch-gold);
    clip-path: circle(0 at 88% 50%);
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.projects-btn:hover::before {
    clip-path: circle(145% at 88% 50%);
}

.projects-btn:hover {
    color: #101010;
    transform: translateY(-3px);
}

.projects-btn i {
    transition: transform 0.35s ease;
}

.projects-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.projects-background-word {
    position: absolute;
    right: -18px;
    bottom: -48px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 230px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 830px) and (min-width: 992px) {

    .wearch-projects {
        padding-top: 36px;
    }

    .projects-featured-screen {
        min-height: auto;
        padding-bottom: 25px;
    }

    .projects-header {
        margin-bottom: 22px;
    }

    .projects-title {
        font-size: clamp(35px, 3.2vw, 47px);
    }

    .projects-description {
        font-size: 15px;
        line-height: 1.62;
    }

    .featured-project-image {
        height: 350px;
    }

    .featured-project-overlay {
        padding: 30px;
    }

    .featured-project-overlay h3 {
        font-size: 34px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-projects {
        padding: 76px 0;
    }

    .projects-featured-screen {
        display: block;
        min-height: 0;
        padding: 0;
    }

    .projects-title span {
        padding-left: 24px;
    }

    .projects-description {
        max-width: 650px;
        margin: 22px 0 0;
    }

    .featured-project-image {
        height: 480px;
    }

    .project-grid {
        gap: 18px;
    }

    .project-card,
    .project-card:nth-child(3n + 1),
    .project-card:nth-child(3n + 2),
    .project-card:nth-child(3n + 3) {
        height: 350px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .wearch-projects {
        padding: 64px 0;
    }

    .projects-header {
        margin-bottom: 28px;
    }

    .projects-title {
        font-size: clamp(35px, 9.3vw, 47px);
    }

    .projects-title span {
        padding-left: 0;
    }

    .projects-description {
        padding-left: 14px;
        font-size: 15px;
    }

    .featured-project-image {
        height: 390px;
        border-radius: 4px 23px 4px 23px;
    }

    .featured-project-image::after {
        inset: 11px;
    }

    .featured-project-overlay {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
        gap: 18px;
        padding: 25px;
    }

    .featured-project-overlay>div:first-child {
        padding-left: 14px;
    }

    .featured-project-overlay h3 {
        font-size: 28px;
    }

    .featured-arrow {
        width: 50px;
        height: 50px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-card,
    .project-card:nth-child(3n + 1),
    .project-card:nth-child(3n + 2),
    .project-card:nth-child(3n + 3) {
        height: 360px;
    }

    .projects-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .projects-background-word {
        right: -10px;
        bottom: -20px;
        font-size: 105px;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media only screen and (max-width: 480px) {

    .featured-project-image {
        height: 340px;
    }

    .featured-project-overlay {
        padding: 20px;
    }

    .featured-project-overlay h3 {
        font-size: 25px;
    }

    .featured-arrow {
        width: 46px;
        height: 46px;
    }

    .project-card,
    .project-card:nth-child(3n + 1),
    .project-card:nth-child(3n + 2),
    .project-card:nth-child(3n + 3) {
        height: 320px;
    }

    .project-overlay {
        right: 19px;
        bottom: 19px;
        left: 19px;
    }

    .project-overlay h4 {
        font-size: 23px;
    }

    .projects-background-word {
        font-size: 78px;
    }
}

/* ==========================================================
   WEARCH CLIENT STORIES — PREMIUM EDITORIAL SLIDER
========================================================== */

.wearch-voices {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 36px 0 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 14%,
            rgba(200, 149, 69, 0.11),
            transparent 28%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 52%,
            #171717 100%);
    isolation: isolate;
}

.wearch-voices::before {
    content: none;
}

.wearch-voices::after {
    content: none;
}

.wearch-voices>.container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.wearch-voices-header {
    margin-bottom: 48px;
    /* text-align: center; */
}

.wearch-voice-story {
    display: grid;
    grid-template-columns: minmax(220px, 30%) minmax(0, 70%);
    align-items: stretch;
    min-height: 320px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
}

/* ==========================================================
   CLIENT PANEL & IDENTITY
========================================================== */

.wearch-voice-client {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 32px 32px 32px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.wearch-voice-photo {
    position: relative;
    width: 120px;
    height: 138px;
    aspect-ratio: 1 / 1.15;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #141414;
    border: 1px solid rgba(200, 149, 69, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wearch-voice-photo::after {
    content: none;
}

.wearch-voice-photo>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.wearch-voice-story:hover .wearch-voice-photo>img {
    transform: scale(1.05);
}

.wearch-voice-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #141414;
}

.wearch-voice-photo-placeholder i,
.wearch-voice-photo-placeholder span,
.wearch-voice-index {
    display: none;
}

.wearch-voice-client-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.wearch-voice-client-details h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(26px, 2.2vw, 30px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.wearch-voice-client-details>p {
    margin: 0;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wearch-voice-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.wearch-voice-rating i {
    color: var(--wearch-gold);
    font-size: 13px;
}

/* ==========================================================
   STORY CONTENT / REVIEW
========================================================== */

.wearch-voice-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 32px 0 32px 48px;
}

.wearch-voice-project {
    display: block;
    margin-bottom: 12px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wearch-voice-content h4 {
    max-width: 680px;
    margin: 0 0 16px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(26px, 2.3vw, 34px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.wearch-voice-content h4 span {
    color: var(--wearch-gold-light);
}

.wearch-voice-content>p {
    max-width: 640px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================================
   READ BUTTON
========================================================== */

.wearch-voice-read {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(223, 182, 108, 0.35);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        gap 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.wearch-voice-read i {
    color: var(--wearch-gold-light);
    font-size: 9px;
    transition: transform 0.3s ease;
}

.wearch-voice-read:hover {
    gap: 12px;
    border-color: var(--wearch-gold);
    color: #ffffff;
}

.wearch-voice-read:hover i {
    transform: translateX(3px);
}

/* ==========================================================
   SLIDER CONTROLS
========================================================== */

.wearch-voices-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
}

.wearch-voices-pagination {
    position: relative !important;
    inset: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto !important;
}

.wearch-voices-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 !important;
    border: 1px solid rgba(223, 182, 108, 0.4);
    background: transparent;
    opacity: 1;
    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.wearch-voices-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 10px;
    background: var(--wearch-gold);
    border-color: var(--wearch-gold);
}

.wearch-voices-prev,
.wearch-voices-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.wearch-voices-prev i,
.wearch-voices-next i {
    color: currentColor;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.wearch-voices-prev:hover {
    border-color: var(--wearch-gold);
    color: var(--wearch-gold);
}

.wearch-voices-prev:hover i {
    transform: translateX(-2px);
}

.wearch-voices-next:hover {
    border-color: var(--wearch-gold);
    color: var(--wearch-gold);
}

.wearch-voices-next:hover i {
    transform: translateX(2px);
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.wearch-voices-background {
    position: absolute;
    right: -15px;
    bottom: -40px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.017);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 230px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.04em;
    pointer-events: none;
    user-select: none;
}


/* Responsive and height overrides to match root styles */
@media only screen and (max-height: 830px) and (min-width: 992px) {
    .wearch-voices {
        min-height: auto;
        padding: 33px 0 29px;
    }

    .wearch-voices-header {
        margin-bottom: 21px;
    }

    .wearch-voice-story {
        min-height: 320px;
    }

    .wearch-voice-photo {
        width: 90px;
        height: 90px;
    }

    .wearch-voice-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .wearch-voice-content h4 {
        font-size: 30px;
    }

    .wearch-voice-content>p {
        font-size: 14px;
        line-height: 1.68;
    }
}

@media only screen and (max-width: 991px) {
    .wearch-voices {
        display: block;
        min-height: 0;
        padding: 76px 0;
    }

    .wearch-voices-heading span {
        padding-left: 24px;
    }

    .wearch-voices-intro {
        max-width: 650px;
        margin: 22px 0 0;
    }

    .wearch-voice-story {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .wearch-voice-client {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .wearch-voice-photo {
        width: 82px;
        height: 82px;
    }

    .wearch-voice-content {
        padding: 24px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .wearch-voices {
        padding: 48px 0 36px;
    }

    .wearch-voices-heading {
        font-size: clamp(32px, 8vw, 42px);
    }

    .wearch-voices-heading span {
        padding-left: 0;
    }

    .wearch-voices-intro {
        padding-left: 14px;
        font-size: 14px;
        line-height: 1.6;
    }

    .wearch-voice-client {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 0;
    }

    .wearch-voice-photo {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }

    .wearch-voice-client-details h3 {
        font-size: 20px;
    }

    .wearch-voice-client-details>p {
        margin-bottom: 8px;
    }

    .wearch-voice-content {
        padding: 20px 0 0;
    }

    .wearch-voice-content h4 {
        font-size: 23px;
        margin-bottom: 12px;
    }

    .wearch-voice-content>p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .wearch-voices-navigation {
        margin-top: 28px;
        gap: 16px;
    }

    .wearch-voices-prev,
    .wearch-voices-next {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(223, 182, 108, 0.32);
    }

    .wearch-voices-background {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .wearch-voice-client {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
    }

    .wearch-voice-photo {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }

    .wearch-voice-client-details h3 {
        font-size: 19px;
    }

    .wearch-voice-client-details>p {
        font-size: 8px;
    }
}


/* Dialog Overrides */
.testimonial-modal-dialog {
    width: min(880px, 94vw) !important;
    max-height: min(680px, 90vh) !important;
    padding: 32px !important;
    border-radius: 20px !important;
}

.testimonial-modal-dialog>p {
    margin: 0 0 16px !important;
}

.testimonial-modal-dialog>p:last-of-type {
    margin-bottom: 0 !important;
}

.testimonial-modal-author {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
}

.testimonial-modal-author>span {
    display: block !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: var(--body-font) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.testimonial-modal-author strong {
    display: block !important;
    margin-bottom: 2px !important;
    color: #ffffff !important;
    font-family: var(--heading-font) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
}


/* ==========================================================
   WEARCH FAQ OVERRIDES
========================================================== */

.wearch-faq {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 32px 0;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 88% 12%,
            rgba(200, 149, 69, .11),
            transparent 30%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 55%,
            #171717 100%);
    isolation: isolate;
}

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: center;
}

.faq-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.faq-eyebrow span {
    color: var(--wearch-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.faq-eyebrow i {
    width: 38px;
    height: 1px;
    background: var(--wearch-gold);
}

.faq-eyebrow p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.faq-heading {
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(36px, 3.2vw, 46px);
    line-height: 1.08;
}

.faq-heading span {
    display: block;
    margin-top: 4px;
    color: var(--wearch-gold-light);
}

.faq-description {
    max-width: 350px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.7;
}

.faq-contact-box {
    margin-top: 24px;
    padding: 0;
    border-left: 0;
    background: transparent;
    backdrop-filter: none;
}

.faq-contact-box small {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.faq-contact-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 4px;
    border-bottom: 1px solid rgba(223, 182, 108, 0.4);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: gap .35s ease, border-color .35s ease, color .35s ease;
}

.faq-contact-box a i {
    color: var(--wearch-gold-light);
    font-size: 9px;
    transition: transform .35s ease;
}

.faq-contact-box a:hover {
    color: var(--wearch-gold-light);
    border-color: var(--wearch-gold);
    gap: 14px;
}

.faq-contact-box a:hover i {
    transform: translateX(3px);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-question {
    width: 100%;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    width: 88%;
    font-size: 18px;
    font-family: var(--heading-font);
    line-height: 1.3;
}

.faq-question i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 149, 69, .35);
    border-radius: 50%;
    color: var(--wearch-gold-light);
    font-size: 11px;
    transition: .35s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--wearch-gold);
    color: #111;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-answer p {
    padding: 0 40px 16px 0;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

@media (max-height: 830px) and (min-width: 992px) {
    .wearch-faq {
        min-height: calc(100vh - var(--wearch-header-height, 98px));
        min-height: calc(100svh - var(--wearch-header-height, 98px));
        padding: 24px 0;
    }

    .faq-layout {
        gap: 44px;
    }

    .faq-heading {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .faq-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .faq-contact-box {
        margin-top: 18px;
    }

    .faq-question {
        padding: 13px 0;
    }

    .faq-question span {
        font-size: 17px;
    }

    .faq-question i {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    .faq-answer p {
        padding-bottom: 12px;
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 991px) {
    .wearch-faq {
        min-height: auto;
        padding: 64px 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-description {
        max-width: 650px;
    }
}

@media (max-width: 767px) {
    .wearch-faq {
        min-height: auto;
        padding: 60px 0;
    }

    .faq-heading {
        font-size: 36px;
    }

    .faq-question span {
        font-size: 17px;
    }

    .faq-answer p {
        padding-right: 0;
        font-size: 14px;
    }

    .faq-contact-box {
        margin-top: 22px;
    }

    .faq-background-word {
        display: none;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px 0;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-question i {
        width: 34px;
        height: 34px;
    }
}


/* Simplified FAQ Answer Overrides */
.faq-answer p {
    padding: 0 30px 14px 0 !important;
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    opacity: 0.9 !important;
}


/* FAQ Eyebrow Match Previous Sections */
.faq-eyebrow span {
    color: var(--wearch-gold-light) !important;
    font-family: var(--body-font) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
}

.faq-eyebrow i {
    display: block !important;
    width: 40px !important;
    height: 1px !important;
    background: var(--wearch-gold) !important;
}

.faq-eyebrow p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-family: var(--body-font) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.17em !important;
    text-transform: uppercase !important;
}


/* Building Better Spaces (.wearch-build) Overrides */
.wearch-build {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 32px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.build-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.build-eyebrow span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.build-eyebrow i {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wearch-gold);
}

.build-eyebrow p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.build-heading {
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(37px, 3.3vw, 51px);
    line-height: 1.08;
}

.build-highlight {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 20px;
}

.build-highlight span {
    padding: 6px 14px;
    border: 1px solid rgba(200, 149, 69, .22);
    border-radius: 50px;
    background: rgba(255, 255, 255, .03);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.build-description p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.68;
}

.build-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    margin-top: 24px;
}

.build-feature-icon {
    width: 34px;
    height: 34px;
    font-size: 10px;
    flex-shrink: 0;
}

.build-feature span:last-child {
    font-size: 14px;
}

.build-visual {
    position: relative;
    height: 480px;
    min-height: 0;
    overflow: hidden;
    border-radius: 24px 6px 24px 6px;
}

.build-visual-cta {
    padding: 20px 22px;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.build-visual-cta h3 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2vw, 30px);
}

.build-visual-cta p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
}

@media (max-height: 830px) and (min-width: 992px) {
    .wearch-build {
        padding: 24px 0;
    }

    .build-layout {
        gap: 36px;
    }

    .build-heading {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .build-highlight {
        margin-bottom: 14px;
        gap: 8px;
    }

    .build-highlight span {
        padding: 4px 11px;
        font-size: 11px;
    }

    .build-description p {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .build-features {
        margin-top: 16px;
        gap: 8px 14px;
    }

    .build-visual {
        height: 420px;
    }

    .build-visual-cta {
        padding: 16px 18px;
    }
}

@media (max-width: 991px) {
    .wearch-build {
        min-height: auto;
        padding: 64px 0;
    }

    .build-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .build-visual {
        height: 480px;
    }
}

@media (max-width: 767px) {
    .wearch-build {
        padding: 60px 0;
    }

    .build-heading {
        font-size: 34px;
    }

    .build-visual {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .build-heading {
        font-size: 30px;
    }

    .build-visual {
        height: 340px;
    }
}


/* Building Better Spaces Image Proportions Overrides */
.build-visual {
    height: clamp(590px, 44vw, 620px) !important;
    aspect-ratio: 4 / 5 !important;
}

@media (max-height: 830px) and (min-width: 992px) {
    .build-visual {
        height: clamp(480px, 60vh, 540px) !important;
        aspect-ratio: auto !important;
    }
}

@media (max-width: 991px) {
    .build-side {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .build-visual {
        width: calc(100% - 32px) !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        height: clamp(400px, 50vh, 480px) !important;
        aspect-ratio: auto !important;
    }
}

@media (max-width: 767px) {
    .build-visual {
        width: calc(100% - 24px) !important;
        max-width: 440px !important;
        margin: 0 auto !important;
        height: clamp(380px, 45vh, 440px) !important;
        aspect-ratio: auto !important;
    }
}

@media (max-width: 480px) {
    .build-visual {
        width: calc(100% - 20px) !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        height: clamp(340px, 50vh, 400px) !important;
        aspect-ratio: auto !important;
    }
}


/* Final CTA Overrides */
.wearch-contact-cta {
    min-height: calc(80vh - var(--wearch-header-height, 98px)) !important;
    min-height: calc(80svh - var(--wearch-header-height, 98px)) !important;
    padding: 48px 0 !important;
}

.contact-cta-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr) !important;
    gap: 60px !important;
}

.contact-cta-heading {
    max-width: 720px !important;
    margin: 0 0 16px !important;
    font-size: clamp(36px, 3.8vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
}

.contact-cta-heading span {
    padding-left: clamp(0px, 3.5vw, 48px) !important;
}

.contact-cta-description {
    max-width: 580px !important;
    margin: 0 0 28px !important;
    padding-left: 16px !important;
    border-left: 1px solid rgba(223, 182, 108, 0.4) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.contact-cta-item {
    grid-template-columns: 40px minmax(0, 1fr) 28px !important;
    gap: 14px !important;
    min-height: 72px !important;
    padding: 10px 4px !important;
}


/* Compact Premium Footer Overrides */
.wearch-footer {
    position: relative !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-top: 1px solid rgba(200, 149, 69, 0.4) !important;
    background: radial-gradient(circle at 88% 5%, rgba(200, 149, 69, 0.08), transparent 26%), linear-gradient(145deg, #070707 0%, #0b0b0b 52%, #111111 100%) !important;
    isolation: isolate !important;
}

.wearch-footer-brand-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 35px !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    min-height: 0 !important;
}

.wearch-footer-brand {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.wearch-footer-logo {
    display: inline-block !important;
    flex: none !important;
    width: auto !important;
    max-width: 100% !important;
}

.wearch-footer-brand-line {
    height: 40px !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.wearch-footer-brand p {
    max-width: 520px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.wearch-footer-social {
    gap: 16px !important;
}

.footer-social-line {
    height: 32px !important;
    background: rgba(255, 255, 255, 0.2) !important;
}

.footer-social-icons {
    gap: 10px !important;
}

.footer-social-icons a {
    width: 36px !important;
    height: 36px !important;
    border: 1px solid rgba(223, 182, 108, 0.4) !important;
    font-size: 12px !important;
}

.wearch-footer-main-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.wearch-footer-column {
    padding: 24px 36px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.wearch-footer-column:first-child {
    padding-left: 0 !important;
}

.wearch-footer-column:last-child {
    padding-right: 0 !important;
    border-right: 0 !important;
}

.footer-column-icon {
    display: none !important;
}

.wearch-footer-column h3 {
    font-size: 17px !important;
    margin: 0 !important;
}

.footer-title-line {
    width: 24px !important;
    height: 1px !important;
    margin: 8px 0 12px !important;
}

.footer-link-list a {
    padding: 6px 0 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.footer-link-list a i {
    display: none !important;
    font-size: 13px !important;

}

.footer-link-list a:hover {
    padding-left: 4px !important;
    color: var(--wearch-gold-light) !important;
}

.footer-contact-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 7px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-contact-row-icon {
    display: none !important;
}

.footer-contact-row small {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-contact-row strong {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.wearch-footer-offices {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-office {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 20px 24px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-office:first-child {
    padding-left: 0 !important;
}

.footer-office:last-child {
    padding-right: 0 !important;
    border-right: 0 !important;
}

.footer-office-divider,
.footer-office-icon {
    display: none !important;
}

.footer-office-content h4 {
    font-size: 17px !important;
    margin: 0 0 6px !important;
}

.footer-office-content p {
    font-size: 12px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.65) !important;
}

.wearch-footer-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    min-height: 52px !important;
    padding: 14px 0 !important;
}

.wearch-footer-bottom p,
.wearch-footer-bottom>a {
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-bottom-divider,
.wearch-footer-background-word {
    display: none !important;
}

@media only screen and (max-width: 991px) {
    .wearch-footer-brand-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        padding: 20px 0 !important;
    }

    .wearch-footer-social {
        width: 100% !important;
        justify-content: space-between !important;
    }

    .wearch-footer-main-row {
        grid-template-columns: 1fr !important;
    }

    .wearch-footer-column,
    .wearch-footer-column:first-child,
    .wearch-footer-column:last-child {
        padding: 20px 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .wearch-footer-offices {
        grid-template-columns: 1fr !important;
    }

    .footer-office,
    .footer-office:first-child,
    .footer-office:last-child {
        padding: 18px 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .wearch-footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
        padding: 16px 0 !important;
    }
}

@media only screen and (max-width: 480px) {
    .wearch-footer-brand {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .wearch-footer-brand-line,
    .footer-social-line {
        display: none !important;
    }

    .wearch-footer-social {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
}


/* Ultra-Compact Footer Overrides */
.wearch-footer-brand-row {
    padding: 12px 0 !important;
    gap: 24px !important;
}

.wearch-footer-logo {
    display: inline-block !important;
    flex: none !important;
    width: auto !important;
    max-width: 100% !important;
}

.wearch-footer-brand-line {
    height: 28px !important;
}

.wearch-footer-brand p {
    font-size: 11px !important;
    line-height: 1.45 !important;
}

.footer-social-line {
    height: 20px !important;
}

.footer-social-icons a {
    width: 28px !important;
    height: 28px !important;
    font-size: 10px !important;
}

.wearch-footer-column {
    padding: 12px 24px !important;
}

.wearch-footer-column h3 {
    font-size: 14px !important;
}

.footer-title-line {
    margin: 4px 0 6px !important;
}

.footer-link-list a {
    padding: 3px 0 !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
}

.footer-contact-row {
    padding: 4px 0 !important;
}

.footer-contact-row small,
.footer-contact-row strong {
    font-size: 11px !important;
}

.footer-office {
    padding: 10px 16px !important;
}

.footer-office-content h4 {
    font-size: 14px !important;
    margin-bottom: 2px !important;
}

.footer-office-content p {
    font-size: 10px !important;
    line-height: 1.4 !important;
}

.wearch-footer-bottom {
    min-height: 36px !important;
    padding: 8px 0 !important;
}

.wearch-footer-bottom p,
.wearch-footer-bottom>a {
    font-size: 10px !important;
}


/* Office Address Font Size & Height Fix */
.footer-office-content p {
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.65) !important;
}


/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Inspaire - Architecture and Interior Design HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Why Choose Us css
07. Our Services css
08. Intro Video css
09. Latest Project css
10. How We Work css
11. Our Skills css
12. Our Testimonials css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Image Gallery css
23. FAQs Page css
24. Contact Us Page css
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz@0,9..40;1,9..40&display=swap'); */






:root {
    --primary-color: #C89545;
    --secondery-color: #F7F1E7;
    --text-color: #242424;
    --accent-color: #A77A3B;
    --white-color: #FFFFFF;
    --divider-color: #EAF0EC;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    /* --default-font			: "DM Sans", sans-serif; font-optical-sizing: auto; */

}

/************************************/
/*** 	   02. General css		  ***/
/************************************/
@font-face {
    font-family: 'Felidae';

    font-weight: 400;
    src: local('Felidae Regular'),
        url('../fonts/Felidae.woff') format('woff');
}

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.07rem;
    background-color: var(--white-color);
    color: var(--text-color);
    /* font-family: 'Felidae', sans-serif; */
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: #f3f3f3;


}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}


.navbar-nav .nav-link.active {
    color: bisque !important;
    /* Your desired active color */
    font-weight: bold;

}





.my-float {
    margin-top: 16px;
}

p {
    line-height: 1.7em;
    margin-bottom: 1.6em;
    font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.07em;
    color: #C89545;
    letter-spacing: 0.07em;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;

}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

/* .image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: #C89545;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
} */

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover {
    background: transparent;
    color: var(--white-color);
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translate(-18px, -50%);
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted {
    background-color: var(--white-color);
    color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
    color: var(--white-color);
}

.btn-default.btn-highlighted::before {
    background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
    filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
    background-color: var(--accent-color);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #3F3428 !important;
    background: #3F3428 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
    margin-right: 30px;
}

.section-btn {
    text-align: end;
}

.section-title-content {
    margin-left: 120px;
}

.section-title-content p {
    margin: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.07em;
    text-transform: capitalize;
    color: #C89545;
    padding-left: 35px;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 5px;
}

.section-title h1 {
    font-size: 80px;
    font-weight: 400;

    cursor: none;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h1 span,
.section-title h2 span {
    color: #C89545;
}

.section-title p {
    margin-top: 30px;
    margin-bottom: 0;
}













.section-title1dark-section p {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: relative;
    z-index: 100;
    margin-top: -19px;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
    padding: 18px 0;
    align-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .navbar {
    border-bottom: none;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 6px;
    position: relative;
}

.main-menu ul li a {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: bold;
    padding: 15px 14px !important;
    color: var(--white-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 6px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    padding: 10px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: bisque;
}

.slicknav_menu ul ul li a {
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: rotate(-180deg);
    color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background: url('../images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 280px 0 250px;
    min-height: 100vh;
    margin-top: -200px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}



.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 230px 0 230px;
    min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
    color: var(--white-color);
}

.hero-content .section-title p {
    font-size: 22px;
    font-weight: 400;
    color: var(--white-color);
    width: 100%;
    max-width: 600px;
}

.hero-content .section-title h3::before {
    filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted {
    margin-left: 30px;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us {
    background-image: url('../images/section-bg-shape-1.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 100px 0;
}

.about-us-images {
    position: relative;
    background-image: url(../images/about-us-bg-shape.svg);
    background-repeat: no-repeat;
    background-position: left 60px bottom 40px;
    background-size: auto;
    padding-right: 100px;
    padding-bottom: 180px;
    margin-right: 30px;
}












.about-us-content-body {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.about-us-content-body::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    border: 1px solid var(--divider-color);
    width: 1px;
    height: 100%;
}

.about-us-content-info {
    width: calc(50% - 40px);
}

.about-us-content-list {
    margin-bottom: 40px;
}

.about-us-content-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-us-content-list ul li {
    position: relative;
    font-weight: bold;
    color: var(--primary-color);
    padding-left: 30px;
    margin-bottom: 15px;
}

.about-us-content-list ul li:last-child {
    margin-bottom: 0;
}

.about-us-content-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.about-us-contact-list {
    width: calc(50% - 40px);
}

.about-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.about-contact-item:last-child {
    margin-bottom: 0;
}

.about-contact-item .icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
    background-color: var(--primary-color);
}

.about-contact-item .icon-box figure {
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.about-contact-item .icon-box img {
    max-width: 40px;
    border-radius: 50%;
}

.about-contact-item .icon-box i {
    font-size: 18px;
    color: var(--white-color);
}

.about-contact-content {
    width: calc(100% - 55px);
}

.about-contact-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.about-contact-content p {
    font-weight: 500;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/





/* Brown color for inactive bullets */
.swiper-pagination-bullet {
    background-color: #D6B06A !important;
    opacity: 1;
    /* Optional: make bullets fully opaque */
}

/* Optional: darker shade for active bullet */
.swiper-pagination-bullet-active {
    background-color: #8A5A20 !important;
    /* Dark brown */
}













.why-choose-img-box-1 {
    display: flex;
    gap: 20px;
    width: 100%;
}










/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
    padding: 100px 0;
}

.service-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}





.service-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
}

.service-btn a {
    background-color: var(--accent-color);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.service-btn a:hover {
    background-color: var(--primary-color);
}

.service-btn a img {
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.service-btn a:hover img {
    transform: rotate(0)
}






/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid {
    padding: 0;
}

.intro-video-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.intro-video-image a {
    display: block;
    cursor: none;
}

.intro-video-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.intro-video-image img {
    width: 100%;
    aspect-ratio: 1 / 0.41;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-play-button a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.video-play-button a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/


.our-Project-nav {
    text-align: center;
    margin-bottom: 60px;
}

.our-Project-nav ul {
    list-style: none;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    padding: 0;
    margin: 0;
}

.our-Project-nav ul li a {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.2em;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
}

.our-Project-nav ul li a:after {
    top: -8px;
    bottom: auto;
    left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.project-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}


.project-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(20px);
    border-radius: 50%;
    transform: translate(-50%, -30%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.project-btn a {
    width: 100px;
    height: 100px;
    background: var(--dark-divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.project-btn img {
    max-width: 24px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
    background: var(--primary-color);
}

.project-btn a:hover img {
    transform: rotate(0deg);
}







/************************************/
/***      10. How We Work css     ***/
/************************************/








.how-work-company-slider {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding-top: 60px;
}

.how-work-company-slider .company-logo {
    text-align: center;
}

.how-work-company-slider .company-logo img {
    width: 100%;
    max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill {
    padding: 20px 0;
    background: url('../images/section-bg-shape-2.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.skills-progress-bar {
    margin-bottom: 40px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-data .skill-title {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary-color);
}

.skill-data .skill-no {
    font-size: 16px;
    color: var(--primary-color);
    margin-left: 20px;
}

.skill-progress {
    width: 100%;
    height: 12px;
    background: var(--divider-color);
    border-radius: 99px;
    position: relative;
}

.skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 99px;
}

.our-skill-image {
    position: relative;
    padding-bottom: 155px;
    margin-left: 65px;
}

.our-skill-img-1 {
    width: 333px;
    position: relative;
    background: url('../images/our-skill-img-bg-dot.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 84px auto;
    padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure {
    display: block;
}

.our-skill-img-1 img {
    width: 100%;
    aspect-ratio: 1/1.37;
    object-fit: cover;
}

.our-skill-img-2 {
    width: 202px;
    position: absolute;
    top: 70px;
    right: 0;
}

.our-skill-img-2 img {
    width: 100%;
    aspect-ratio: 1/0.93;
    object-fit: cover;
}

.our-skill-img-3 {
    width: 333px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.our-skill-img-3 img {
    width: 100%;
    aspect-ratio: 1/0.97;
    object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/







.testimonial-slider {
    width: 100%;
    max-width: 620px;
    margin-bottom: 40px;
    padding-bottom: -30px;
    border-bottom: 1px solid var(--divider-color);
}

.mybtn {
    position: relative;
    display: inline-block;

    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 46px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
    background-color: white;
    color: #C89545;


    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mybtn:hover {
    background-color: #C89545;
    color: white;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}














.testimonial-client-rating {
    display: inline-block;
    background: var(--accent-color);
    padding: 0px 5px 3px 5px;
    line-height: 1em;
}

.testimonial-client-rating i {
    font-size: 10px;
    color: var(--white-color);
}


/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog {
    padding: 100px 0;
    background: url('../images/section-bg-shape-2.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}






.post-item-content {
    margin-bottom: 15px;
}

.post-item-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h3 a {
    color: inherit;
}

.post-item-btn a {
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 25px;
}

.post-item-btn a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
    width: 17px;
    height: 16px;
    background: url('../images/arrow-dark.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
    transform: translate(2px, -50%);
}

.email-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: bisque;
    ;
    /* or any color you prefer */
    text-decoration: none;
}








.footer-newsletter-form p {
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
    display: flex;
    background: var(--white-color);
    overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
    width: 85%;
    border: none;
    border-radius: 0;
    color: var(--text-color);
    background: transparent;
    padding: 13px 10px;
    box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.footer-newsletter-form button {
    background-color: transparent;
    width: 15%;
    border: none;
    padding: 0;
}

.footer-newsletter-form button i {
    color: var(--accent-color);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
    color: var(--primary-color);
}

.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    text-align: center;
    margin-top: 35px;
    padding: 35px 0 0;
}


/************************************/
/***     15. About Us Page css 	  ***/
/************************************/
.active {
    color: var(--white-color);
    /* Change to your preferred color */
    font-weight: bold;
    /* Makes it stand out */

}


.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;


    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 80px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 0.07em;
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    font-size: 20px;
    color: var(--white-color);
}

.about-us.page-about-us {
    background: transparent;
}

.about-facility-list {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-facility-item {
    width: calc(33.33% - 20px);
    display: flex;
}

.about-facility-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.about-facility-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-facility-item:hover .icon-box:before {
    transform: scale(1);
}

.about-facility-item .icon-box img {
    max-width: 24px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-facility-content {
    width: calc(100% - 80px);
}

.about-facility-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.about-facility-content p {
    margin-bottom: 0;
}

.vision-mission {
    padding: 100px 0 50px;
    background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.vision-mission-box {
    background-color: var(--secondery-color);
    padding: 45px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 150px;
}

.vision-mission-item {
    position: relative;
    width: calc(50% - 75px);
}

.vision-mission-item::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    right: -75px;
    bottom: 0;
    background-color: var(--divider-color);
    z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
    display: none;
}

.vision-mission-item .icon-box {
    position: relative;
    width: 95px;
    height: 95px;
    background: var(--divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.vision-mission-item:hover .icon-box:before {
    transform: scale(1);
}

.vision-mission-item .icon-box img {
    position: relative;
    max-width: 36px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.vision-mission-content p {
    margin: 0;
}

.best-selling {
    background: url(../images/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 50px 0 100px;
}

.best-selling-content-img {
    margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
    display: block;
}

.best-selling-content-img img {
    width: 100%;
    aspect-ratio: 1 / 0.42;
    object-fit: cover;
}

.best-selling-content .section-title {
    margin-bottom: 0;
}

.best-selling-iamge img {
    width: 100%;
    aspect-ratio: 1 / 0.93;
    object-fit: cover;
}








.team-readmore-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}

.team-readmore-btn a {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
    background-color: var(--primary-color);
}

.team-readmore-btn img {
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
    transform: rotate(0deg);
}










.our-faqs {
    padding: 100px 0;
}

.our-faqs-content {
    margin-right: 70px;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 600;

    color: var(--primary-color);
    align-items: start;
    padding-right: 35px;
    letter-spacing: 0.07rem;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
    margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    text-align: right;
    top: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.faq-accordion .accordion-body {
    padding-right: 35px;
}

.faq-accordion .accordion-body p {
    margin: 0;
}

.our-faqs-image {
    text-align: right;
}

.our-faqs-image figure {
    display: block;
}

.our-faqs-image img {
    width: 100%;
    aspect-ratio: 1 / 1.26;
    object-fit: cover;
}

.our-clients {
    background-color: var(--secondery-color);
    padding: 100px 0;
}

.our-clients .our-clients-box {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.our-client-slider .client-logo {
    text-align: center;
}

.our-client-slider .client-logo img {
    width: 100%;
    max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/


/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.service-catagery-list {
    border: 1px solid var(--divider-color);
    padding: 30px;
    margin-bottom: 40px;
    overflow: hidden;
}

.service-catagery-list h3 {
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-catagery-list ul li {
    margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
    margin: 0;
}

.service-catagery-list ul li a {
    position: relative;
    display: block;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
    color: var(--primary-color);
}

.service-catagery-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
    transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
    display: block;
}

.sidebar-cta-image img {
    width: 100%;
    aspect-ratio: 1 / 0.57;
    object-fit: cover;
}

.sidebar-cta-Body {
    border: 1px solid var(--divider-color);
    padding: 30px;
}

.sidebar-cta-content {
    margin-bottom: 25px;
}

.sidebar-cta-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.sidebar-cta-content p {
    font-weight: 500;
    margin-bottom: 0;
}











.service-feature-image {
    margin-bottom: 40px;
}

.service-feature-image figure {
    display: block;
}

.service-feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.service-entry h2 span {
    color: var(--accent-color);
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li {
    position: relative;
    font-weight: 500;
    color: var(--text-color);
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child {
    margin-bottom: 0;
}

.service-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.service-entry-list-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.service-entry-image,
.service-entry-list {
    width: calc(50% - 15px);
}

.service-entry-image figure {
    display: block;
}

.service-entry-image img {
    width: 100%;
    aspect-ratio: 1 / 0.615;
    object-fit: cover;
}

.service-entry-list ul {
    margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
    margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
}

.post-image figure,
.post-image img {
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.6em;
}

.post-entry h1 {
    font-size: 80px;
    letter-spacing: 0.07em;
}

.post-entry h2 {
    font-size: 46px;
    letter-spacing: 0.07em;
}

.post-entry h3 {
    font-size: 46px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ol li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: url(../images/icon-blockquote.png), var(--accent-color);
    background-repeat: no-repeat;
    background-position: 35px 30px;
    background-size: 58px;
    border-radius: 0;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--white-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 0;
    padding: 6px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/


/************************************/
/***    21. Project Single css 	  ***/
/************************************/




.project-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.project-detail-item:last-child {
    margin-bottom: 0;
}

.project-detail-item .icon-box {
    position: relative;
    background-color: var(--divider-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
    transform: scale(1);
}

.project-detail-item .icon-box i {
    font-size: 22px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.project-detail-item:hover .icon-box i {
    color: var(--white-color);
}

/* Smaller Transparent Swiper Buttons */


/* Swiper default arrow style */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}



/* Position adjustment */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.project-detail-content {
    width: calc(100% - 70px);
}

.project-detail-content h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.project-detail-content p {
    color: var(--accent-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

.project-single-image {
    margin-bottom: 40px;
}

.project-single-image figure {
    display: block;
}

.project-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.project-info,
.project-design-info {
    margin-bottom: 60px;
}

.project-entry h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-bottom: 30px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry p:last-child {
    margin-bottom: 0;
}

.project-entry ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.project-entry ul li {
    position: relative;
    font-weight: bold;
    color: var(--text-color);
    padding-left: 30px;
    margin-bottom: 15px;
}

.project-entry ul li:last-child {
    margin-bottom: 0;
}

.project-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}

.project-gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-gallery-img {
    width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
    display: block;
    cursor: none;
}

.project-gallery-img figure img {
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    display: block;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
    padding: 100px 0;
}

.faq-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.faq-catagery-list {
    border: 1px solid var(--divider-color);
    padding: 30px;
    margin-bottom: 60px;
}

.faq-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-catagery-list ul li {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
    margin-bottom: 0;
}

.faq-catagery-list ul li a {
    position: relative;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
    color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
    transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child {
    margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/





.contact-us-form {
    margin-left: 30px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2em;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--divider-color);
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 14px 15px;
}

.contact-form .form-control::placeholder {
    font-weight: 400;
}

.google-map {
    padding: 50px 0 100px;
}

.google-map .section-title {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 30px;
    text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 500px;
}

.contact-info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.contact-info-item {
    width: calc(33.33% - 20px);
    display: flex;
}

.contact-info-item .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-info-item .icon-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box:before {
    transform: scale(1);
}

.contact-info-item .icon-box i {
    position: relative;
    font-size: 20px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box i {
    color: var(--white-color);
}

.contact-info-content {
    width: calc(100% - 80px);
}

.contact-info-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-info-content p {
    margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page {
    background-image: url(../images/error-page-bg.svg);
    background-repeat: no-repeat;
    background-position: top -100px center;
    background-size: auto;
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 50%;
}

.error-page-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 20px;
}

.error-page-content-body p {
    font-weight: 500;
    margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) {}

@media only screen and (max-width: 1024px) {

    .main-menu ul li {
        margin: 0;
    }

}

@media only screen and (max-width: 991px) {

    .navbar {
        padding: 5px 0;

    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .btn-default {
        padding: 14px 42px 14px 16px;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-row .section-title {
        margin-bottom: 0;
        margin-right: 0px;
    }

    .section-title-content {
        margin-left: 0;
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        margin-bottom: 10px;
    }

    .section-title h1 {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        margin-top: 15px;
        font-size: 17px;
    }

    .hero {
        min-height: auto;
        padding: 180px 0 140px;
        margin-top: -92px;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 160px 0 110px;
        min-height: auto;
    }


    .hero-content .section-title p {
        font-size: 20px;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-us-images {
        margin: 0 0 30px 0;
    }



    .about-us-content-list {
        margin-bottom: 30px;
    }

    .about-contact-item {
        margin-bottom: 30px;
    }


    .why-choose-content {
        margin-bottom: 30px;
    }




    .our-services {
        padding: 50px 0;
    }


    .service-btn {
        top: 20px;
        right: 20px;
    }

    .service-btn a {
        height: 50px;
        width: 50px;
    }



    .video-play-button a {
        width: 80px;
        height: 80px;
    }


    .our-Project-nav {
        margin-bottom: 50px;
    }


    .project-btn a {
        width: 80px;
        height: 80px;
    }





    .how-work-company-slider {
        margin-top: 40px;
        padding-top: 40px;
    }

    .our-skill {
        padding: 50px 0;
    }

    .our-skill-content {
        margin-bottom: 30px;
    }

    .skills-progress-bar {
        margin-bottom: 30px;
    }

    .our-skill-image {
        max-width: 555px;
        margin: 0 auto;
    }





    .testimonial-slider {
        max-width: 100%;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }





    .our-blog {
        padding: 50px 0;
    }

    .our-blog .section-title {
        margin-right: 0;
    }



    .footer-newsletter-form p {
        margin-bottom: 20px;
    }

    .footer-copyright {
        margin-top: 0px;
        padding: 20px 0;
    }

    @media (max-width: 768px) {
        .page-header {
            padding: 100px 0 60px;
            /* reduce top/bottom padding */
            margin-top: 0;
            /* remove negative margin */
        }

        .page-header-box h1 {
            font-size: 32px;
            /* scale down heading */
        }

        .page-header-box ol li.breadcrumb-item {
            font-size: 16px;
        }

        .page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
            font-size: 14px;
        }
    }


    .page-header-box h1 {
        font-size: 50px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 18px;
    }

    .page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
        font-size: 16px;
    }

    .about-facility-list {
        margin-top: 50px;
        gap: 20px;
    }

    .about-facility-item {
        width: calc(33.33% - 13.33px);
    }

    .about-facility-item .icon-box {
        height: 45px;
        width: 45px;
        margin-right: 10px;
    }

    .about-facility-item .icon-box img {
        max-width: 20px;
    }

    .about-facility-content {
        width: calc(100% - 55px);
    }

    .about-facility-content h3 {
        font-size: 18px;
    }

    .vision-mission {
        padding: 50px 0 25px;
    }

    .vision-mission-box {
        padding: 30px 15px;
        gap: 30px 40px;
    }

    .vision-mission-item {
        width: calc(50% - 20px);
    }

    .vision-mission-item::before {
        right: -20px;
    }

    .vision-mission-item .icon-box {
        width: 70px;
        height: 70px;
    }

    .vision-mission-item .icon-box img {
        max-width: 30px;
    }

    .vision-mission-content h3 {
        margin-bottom: 15px;
    }

    .best-selling {
        padding: 25px 0 50px;
    }

    .best-selling-content {
        margin-bottom: 20px;
    }

    .best-selling-content-img {
        margin-bottom: 20px;
    }


    .team-readmore-btn {
        top: 20px;
        right: 20px;
    }

    .team-readmore-btn a {
        width: 50px;
        height: 50px;
    }


    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }

    .our-faqs-image {
        text-align: center;
        margin-left: 0px;
    }

    .our-faqs-image img {
        aspect-ratio: 1 / 0.8;
    }

    .our-clients {
        padding: 50px 0;
    }

    .our-clients .our-clients-box {
        max-width: 100%;
    }


    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .service-catagery-list h3 {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .service-catagery-list ul li {
        margin-bottom: 10px;
    }

    .service-catagery-list ul li a::before {
        width: 16px;
        height: 16px;
    }

    .sidebar-cta-Body {
        padding: 20px;
    }

    .sidebar-cta-content {
        margin-bottom: 15px;
    }


    .service-feature-image {
        margin-bottom: 30px;
    }

    .service-entry {
        margin-bottom: 30px;
    }

    .service-entry ul li {
        font-size: 14px;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .service-entry ul li::before {
        font-size: 18px;
    }

    .why-choose-content.service-single-why-choose {
        margin-bottom: 30px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h2 {
        font-size: 38px;
    }

    .post-entry ul li {
        font-size: 16px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .post-tags .tag-links a {
        padding: 6px 15px;
    }





    .project-single-image {
        margin-bottom: 30px;
    }

    .project-info,
    .project-design-info {
        margin-bottom: 30px;
    }

    .project-entry h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-gallery-box .photo-gallery img {
        aspect-ratio: 1 / 0.85;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .faq-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

    .faq-catagery-list ul li {
        margin-bottom: 15px;
    }

    .faq-catagery-list ul li a::before {
        width: 16px;
        height: 16px;
    }

    .our-faq-section.page-faq-accordion {
        margin-bottom: 40px;
    }




    .contact-us-form {
        margin-left: 0;
    }

    .contact-form .form-control {
        padding: 12px 15px;
    }

    .google-map {
        padding: 25px 0 50px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 400px;
    }

    .contact-info-box {
        gap: 20px;
        margin-top: 40px;
    }

    .contact-info-item {
        width: calc(33.33% - 13.33px);
    }

    .contact-info-item .icon-box {
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }

    .contact-info-item .icon-box i {
        font-size: 16px;
    }

    .contact-info-content {
        width: calc(100% - 60px);
    }

    .contact-info-content h3 {
        font-size: 18px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image img {
        max-width: 80%;
    }
}

@media only screen and (max-width: 767px) {

    .section-row {
        margin-bottom: 30px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content .section-title p {
        font-size: 18px;
    }

    .hero-content .btn-default {
        margin-right: 40px;
        margin-bottom: 10px;
    }

    .hero-content .btn-default.btn-highlighted {
        margin: 0;
    }

    .about-us-images {
        background-position: left 10px bottom 10px;
        background-size: 20% auto;
        padding: 10px 45px 100px 0;
    }








    .about-us-content-body {
        gap: 0px;
    }

    .about-us-content-body::before {
        display: none;
    }

    .about-us-content-info {
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .about-us-content-list {
        margin-bottom: 20px;
    }

    .about-us-contact-list {
        width: 100%;
    }

    .about-us-content-list ul li {
        margin-bottom: 10px;
    }

    .about-us-content-list ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .about-contact-item {
        margin-bottom: 20px;
    }

    .about-contact-content h3 {
        font-size: 18px;
    }





    .intro-video-image img {
        aspect-ratio: 1 / 0.7;
    }

    .project-btn a {
        width: 60px;
        height: 60px;
    }

    .project-btn img {
        max-width: 20px;
    }





    .how-work-company-slider {
        margin-top: 30px;
        padding-top: 30px;
    }

    .our-skill-image {
        padding-bottom: 83px;
    }

    .our-skill-img-1 {
        width: 200px;
        padding: 20px 0 0 20px;
    }

    .our-skill-img-2 {
        width: 130px;
        top: 20px;
    }

    .our-skill-img-3 {
        width: 200px;
    }








    .post-item-content {
        margin-bottom: 10px;
    }

    .post-item-content h3 {
        font-size: 18px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }


    .footer-copyright {
        padding: 15px 0;
    }

    .page-header-box h1 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 16px;
    }

    .page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
        font-size: 14px;
    }

    .about-facility-item {
        width: 100%;
    }

    .vision-mission {
        background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
    }

    .vision-mission-box {
        padding: 20px;
        gap: 40px;
    }

    .vision-mission-item {
        width: 100%;
    }

    .vision-mission-item::before {
        height: 1px;
        width: 100%;
        top: auto;
        right: 0;
        bottom: -20px;
    }

    .vision-mission-item:nth-child(2n + 2)::before {
        display: block;
    }

    .vision-mission-item:last-child::before {
        display: none;
    }

    .vision-mission-content h3 {
        font-size: 18px;
    }


    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
        padding-right: 30px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        top: 2px;
    }

    .faq-accordion .accordion-body {
        padding-right: 0;
    }

    .our-faqs-image img {
        aspect-ratio: 1 / 1.26;
    }

    .swiper-pagination-bullet {
        background-color: #C89545;
        opacity: 0.4;
        transition: all 0.3s ease;
    }

    /* Active bullet */
    .swiper-pagination-bullet-active {
        background-color: #C89545;
        opacity: 1;
        transform: scale(1.2);
    }

    .service-catagery-list h3 {
        font-size: 18px;
    }

    .sidebar-cta-content h3 {
        font-size: 18px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-feature-image {
        margin-bottom: 20px;
    }

    .service-feature-image img {
        aspect-ratio: 1 / 0.7;
    }

    .service-entry-list-image {
        gap: 20px;
    }

    .service-entry-image,
    .service-entry-list {
        width: 100%;
    }

    .post-image figure,
    .post-image img {
        aspect-ratio: 1 / 0.70;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .project-single-image {
        margin-bottom: 20px;
    }

    .project-single-image img {
        aspect-ratio: 1 / 0.7;
    }

    .project-info,
    .project-design-highlight {
        margin-bottom: 20px;
    }

    .project-entry h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-entry ul li {
        margin-bottom: 10px;
    }

    .project-entry ul li::before {
        font-size: 18px;
        top: 5px;
    }

    .project-gallery-images {
        gap: 20px;
    }

    .project-gallery-img {
        width: calc(50% - 10px);
    }


    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .contact-info-item {
        width: 100%;
    }

    .error-page-image img {
        max-width: 100%;
    }
}

/* =========================================
   WeArch Developers brand overrides
   Palette: Gold #C89545 | Deep Gold #A77A3B | Charcoal #242424 | Cream #F7F1E7
   ========================================= */
.navbar-brand img {
    max-height: 82px;
    width: auto;
    object-fit: contain;
}

.footer-logo img {
    max-height: 105px;
    width: auto;
    object-fit: contain;
}

#loading-icon img {
    max-width: 150px;
    height: auto;
}

.preloader {
    background: #3F3428 !important;
    background-color: #3F3428 !important;
}


.btn-default {
    background-color: var(--primary-color);
}

.btn-default:hover {
    background-color: #A77A3B;
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 64px;
    }

    .footer-logo img {
        max-height: 82px;
    }
}


/* ==========================================================
   WEARCH PREMIUM HEADER OVERRIDES
   Append at the bottom of the main stylesheet
========================================================== */

/* ==========================================================
   WEARCH PREMIUM SOLID STICKY HEADER
========================================================== */

:root {
    --wearch-black: #090909;
    --wearch-charcoal: #151515;
    --wearch-charcoal-light: #1d1d1d;
    --wearch-gold: #c89545;
    --wearch-gold-light: #dfb66c;
    --wearch-gold-dark: #95672d;
    --wearch-ivory: #f7f1e7;
    --wearch-white: #ffffff;
    --wearch-muted: #bcb5a9;
    --wearch-border: rgba(200, 149, 69, 0.25);
}

/* ==========================================================
   WEARCH COMPACT CENTERED PRELOADER
========================================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #3F3428 !important;
    background-color: #3F3428 !important;
}

/* Loader wrapper */
.loading-container {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 96px;
    height: 96px;
    margin: 0;

    border-radius: 50%;
}

/* Rotating ring */
.loading {
    position: absolute;
    inset: 0;

    width: 96px;
    height: 96px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--wearch-gold);
    border-right-color: var(--wearch-gold-light);
    border-radius: 50%;

    animation: rotate-loading 1.2s linear infinite;
    transform-origin: center;
}

/* Logo holder */
#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    transform: translate(-50%, -50%);
}

/* Logo image */
#loading-icon img {
    display: block;

    width: 56px;
    height: 56px;

    object-fit: contain;
    object-position: center;

    margin: 0;
    padding: 0;
}

/* Rotation */
@keyframes rotate-loading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================
   WEARCH PREMIUM SOLID STICKY NAVBAR
========================================================== */

:root {
    --wearch-black: #080808;
    --wearch-charcoal: #141414;
    --wearch-charcoal-light: #1c1c1c;
    --wearch-gold: #c89545;
    --wearch-gold-light: #dfb66c;
    --wearch-gold-dark: #95672d;
    --wearch-ivory: #f7f1e7;
    --wearch-white: #ffffff;
    --wearch-muted: #bcb5aa;
    --wearch-border: rgba(200, 149, 69, 0.24);
}

/* Remove template negative positioning */
header.main-header.wearch-header {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 9999;
    background: var(--wearch-black);
}

/* Disable template hide-on-scroll behaviour */
header.main-header.wearch-header .header-sticky,
header.main-header.wearch-header .header-sticky.active,
header.main-header.wearch-header .header-sticky.hide {
    position: relative !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    transform: translateY(0) !important;
    background: var(--wearch-black) !important;
}

/* Navbar outer shell */
.wearch-navbar-shell {
    position: relative;
    width: 100%;
    background:
        linear-gradient(90deg,
            #080808 0%,
            #111111 50%,
            #080808 100%);
    border-bottom: 1px solid var(--wearch-border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

/* Premium gold bottom detail */
.wearch-navbar-shell::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 149, 69, 0.15) 22%,
            rgba(223, 182, 108, 0.8) 50%,
            rgba(200, 149, 69, 0.15) 78%,
            transparent 100%);
}

/* Main navbar */
.wearch-header .navbar {
    display: flex;
    align-items: stretch;
    min-height: 98px;
    padding: 0 !important;
    border: 0 !important;
}

/* ==========================================================
   LOGO
========================================================== */

.wearch-header .navbar-brand.wearch-logo {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    width: 190px;
    margin: 0;
    padding: 10px 34px 10px 0;
}

/* Logo separator */
.wearch-header .navbar-brand.wearch-logo::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: linear-gradient(180deg,
            transparent,
            rgba(200, 149, 69, 0.5),
            transparent);
}

.wearch-header .wearch-logo img {
    display: block;
    width: auto;
    height: 72px;
    max-width: 135px;
    object-fit: contain;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.wearch-header .wearch-logo:hover img {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* ==========================================================
   DESKTOP MENU
========================================================== */

.wearch-header .main-menu {
    display: flex;
    align-items: stretch;
    flex: 1;
    height: auto;
}

.wearch-header .main-menu .nav-menu-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    margin: 0 20px;
}

.wearch-header .main-menu .nav-menu-wrapper>ul {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 3px;
    margin: 0;
    padding: 0;
}

.wearch-header .main-menu ul li {
    position: relative;
    display: flex;
    align-items: stretch;
    margin: 0;
}

.wearch-header .main-menu ul li a.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px !important;
    overflow: hidden;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 241, 231, 0.84);
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

/* Hover frame */
.wearch-header .main-menu ul li a.nav-link::before {
    content: "";
    position: absolute;
    inset: 15px 4px;
    z-index: 0;
    border: 1px solid transparent;
    background: transparent;
    opacity: 0;
    transform: scaleY(0.8);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.wearch-header .main-menu ul li a.nav-link span {
    position: relative;
    z-index: 2;
}

/* Active gold dot */
.wearch-header .main-menu ul li a.nav-link::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 3;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--wearch-gold-light);
    box-shadow: 0 0 9px rgba(223, 182, 108, 0.65);
    opacity: 0;
    transform: translate(-50%, 7px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.wearch-header .main-menu ul li a.nav-link:hover,
.wearch-header .main-menu ul li a.nav-link:focus,
.wearch-header .main-menu ul li a.nav-link.active {
    color: var(--wearch-gold-light) !important;
}

.wearch-header .main-menu ul li a.nav-link:hover::before,
.wearch-header .main-menu ul li a.nav-link:focus::before,
.wearch-header .main-menu ul li a.nav-link.active::before {
    border-color: rgba(200, 149, 69, 0.18);
    background: rgba(200, 149, 69, 0.05);
    opacity: 1;
    transform: scaleY(1);
}

.wearch-header .main-menu ul li a.nav-link:hover::after,
.wearch-header .main-menu ul li a.nav-link:focus::after,
.wearch-header .main-menu ul li a.nav-link.active::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Hide duplicate contact link only on desktop */
@media only screen and (min-width: 992px) {
    .wearch-header .mobile-contact-item {
        display: none !important;
    }
}

/* ==========================================================
   DESKTOP CONTACT BUTTON
========================================================== */

.wearch-header .header-btn {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    flex-shrink: 0;
    min-height: 98px;
    margin: 0;
}

/* Exact structure required:
   .button-text + .button-icon
*/
.wearch-header-btn {
    position: relative;
    display: grid;
    grid-template-columns: 138px 58px;
    align-items: stretch;
    width: 196px;
    min-height: 98px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--wearch-gold);
    color: var(--wearch-black);
    font-family: var(--body-font);
    line-height: 1;
    isolation: isolate;
}

/* Sliding ivory hover background */
.wearch-header-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--wearch-ivory);
    transform: translateX(-101%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.wearch-header-btn:hover::before {
    transform: translateX(0);
}

/* Center contact text vertically and horizontally */
.wearch-header-btn .button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.11em;
    text-align: center;
    text-transform: uppercase;
}

/* Center icon vertically and horizontally */
.wearch-header-btn .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 100%;
    border-left: 1px solid rgba(8, 8, 8, 0.18);
    font-size: 13px;
}

.wearch-header-btn .button-icon i {
    transition: transform 0.35s ease;
}

.wearch-header-btn:hover {
    color: var(--wearch-black);
}

.wearch-header-btn:hover .button-icon i {
    transform: translate(3px, -3px);
}

/* ==========================================================
   MOBILE TOGGLE
========================================================== */

.wearch-header .navbar-toggle {
    display: none;
    align-self: center;
    flex-shrink: 0;
    margin-left: auto;
}

.wearch-header .slicknav_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(200, 149, 69, 0.4);
    border-radius: 0;
    background: rgba(200, 149, 69, 0.06) !important;
}

.wearch-header .slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto !important;
    border-radius: 0;
    background: var(--wearch-gold-light);
}

/* ==========================================================
   RESPONSIVE MENU
========================================================== */

.wearch-header .responsive-menu {
    position: relative;
    z-index: 9999;
}

.wearch-header .slicknav_menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 14px 16px;
    background: var(--wearch-black) !important;
    border-top: 1px solid var(--wearch-border);
    border-bottom: 1px solid var(--wearch-border);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
}

.wearch-header .slicknav_nav {
    margin: 0;
    padding: 8px;
    background: var(--wearch-charcoal);
    border: 1px solid rgba(200, 149, 69, 0.16);
}

.wearch-header .slicknav_nav li {
    display: block;
    width: 100%;
    margin: 0;
}

.wearch-header .slicknav_nav li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 0 !important;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 241, 231, 0.88);
    transition:
        padding-left 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease;
}

.wearch-header .slicknav_nav li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 0;
    height: 1px;
    background: var(--wearch-gold);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.wearch-header .slicknav_nav li a:hover,
.wearch-header .slicknav_nav li a:focus,
.wearch-header .slicknav_nav li a.active {
    padding-left: 42px;
    background: rgba(200, 149, 69, 0.06);
    color: var(--wearch-gold-light);
}

.wearch-header .slicknav_nav li a:hover::before,
.wearch-header .slicknav_nav li a:focus::before,
.wearch-header .slicknav_nav li a.active::before {
    width: 17px;
}

/* Mobile Contact Us item */
.wearch-header .slicknav_nav .mobile-contact-item {
    display: block !important;
    margin-top: 9px;
}

.wearch-header .slicknav_nav .mobile-contact-item a {
    justify-content: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid var(--wearch-gold);
    background: var(--wearch-gold);
    color: var(--wearch-black);
}

.wearch-header .slicknav_nav .mobile-contact-item a::before {
    display: none;
}

.wearch-header .slicknav_nav .mobile-contact-item a:hover {
    padding-left: 18px;
    background: var(--wearch-ivory);
    color: var(--wearch-black);
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 1199px) and (min-width: 992px) {

    .wearch-header .navbar-brand.wearch-logo {
        width: 155px;
        padding-right: 22px;
    }

    .wearch-header .wearch-logo img {
        height: 64px;
        max-width: 115px;
    }

    .wearch-header .main-menu .nav-menu-wrapper {
        margin: 0 8px;
    }

    .wearch-header .main-menu ul li a.nav-link {
        padding-right: 9px !important;
        padding-left: 9px !important;
        font-size: 11px;
    }

    .wearch-header-btn {
        grid-template-columns: 112px 48px;
        width: 160px;
    }

    .wearch-header-btn .button-icon {
        width: 48px;
    }

    .wearch-header-btn .button-text {
        padding: 0 10px;
        font-size: 10px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-header .navbar {
        align-items: center;
        justify-content: space-between;
        min-height: 78px;
        padding: 7px 0 !important;
    }

    /* Hide desktop menu */
    .wearch-header .collapse.main-menu,
    .wearch-header .navbar-collapse.main-menu,
    .wearch-header .main-menu {
        display: none !important;
    }

    .wearch-header .navbar-brand.wearch-logo {
        align-self: center;
        width: auto;
        min-width: 0;
        padding: 0;
    }

    .wearch-header .navbar-brand.wearch-logo::after {
        display: none;
    }

    .wearch-header .wearch-logo img {
        width: auto;
        height: 58px;
        max-width: 104px;
    }

    .wearch-header .navbar-toggle {
        display: block !important;
        margin-left: auto;
    }

    .wearch-header .responsive-menu {
        display: block !important;
        width: 100%;
    }

    .wearch-header .header-btn {
        display: none !important;
    }
}

@media only screen and (max-width: 575px) {

    .wearch-header .navbar {
        min-height: 70px;
        padding: 6px 0 !important;
    }

    .wearch-header .wearch-logo img {
        height: 52px;
        max-width: 92px;
    }

    .wearch-header .slicknav_btn {
        width: 42px;
        height: 42px;
    }

    .wearch-header .slicknav_menu {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* Keep hero directly below sticky header */
.hero {
    margin-top: 0 !important;
}


/* ---------- Premium CTA ---------- */

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    align-self: center;
    /* Keeps button vertically centered */
    height: 100%;
    /* Take navbar height */
    margin-left: 30px;
    padding-top: 22px;
    /* Move slightly downward */
}

.wearch-talk-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 150px;
    height: 48px;

    border: 1px solid rgba(200, 149, 69, .55);
    border-radius: 10px;

    background: transparent;

    color: #F7F1E7;

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;

    overflow: hidden;

    transition: .4s ease;
}

/* hover background */

.wearch-talk-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #C89545;
    transform: translateX(-100%);
    transition: .45s;
    z-index: 0;
}

.wearch-talk-btn span,
.wearch-talk-btn i {
    position: relative;
    z-index: 2;
}

.wearch-talk-btn i {
    font-size: 12px;
    transition: .35s;
}

.wearch-talk-btn:hover {
    color: #111;
    border-color: #C89545;
}

.wearch-talk-btn:hover::before {
    transform: translateX(0);
}

.wearch-talk-btn:hover i {
    transform: translateX(5px);
}

/* ==========================================================
   WEARCH PREMIUM HERO — FINAL OVERRIDES
========================================================== */

:root {
    --wearch-header-height: 98px;
    --wearch-mobile-header-height: 78px;
}

/* Main hero */
.wearch-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--wearch-header-height));
    height: calc(100svh - var(--wearch-header-height));
    min-height: 620px;
    margin: 0 !important;
    padding: 0 !important;
    background: #080808;
    overflow: hidden;
}

/* Ensure every Swiper layer fills the available hero space */
.wearch-hero .weach-hero-swiper,
.wearch-hero .wearch-hero-swiper,
.wearch-hero .swiper,
.wearch-hero .swiper-wrapper,
.wearch-hero .swiper-slide,
.wearch-hero .hero-slide {
    width: 100%;
    height: 100%;
}

.wearch-hero .swiper {
    position: relative;
    overflow: hidden;
}

.wearch-hero .swiper-slide {
    overflow: hidden;
}

/* Individual slide */
.wearch-hero .hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 0 !important;
    padding: 40px 0 72px !important;
    isolation: isolate;
    overflow: hidden;
}

/* ==========================================================
   BACKGROUND IMAGE
========================================================== */

.wearch-hero .hero-slider-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wearch-hero .hero-slider-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.04);
    transform: scale(1.03);
    transition:
        transform 9s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 1s ease;
}

.wearch-hero .swiper-slide-active .hero-slider-image img {
    transform: scale(1.1);
    filter: saturate(0.9) contrast(1.06);
}

/* Strong cinematic overlay for readable content */
.wearch-hero .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 5, 0.94) 0%,
            rgba(5, 5, 5, 0.88) 25%,
            rgba(5, 5, 5, 0.64) 50%,
            rgba(5, 5, 5, 0.22) 78%,
            rgba(5, 5, 5, 0.12) 100%),
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.18) 0%,
            rgba(5, 5, 5, 0.02) 48%,
            rgba(5, 5, 5, 0.78) 100%);
}

/* Fine architectural line pattern */
.wearch-hero .hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        linear-gradient(90deg,
            transparent calc(25% - 0.5px),
            rgba(255, 255, 255, 0.18) 25%,
            transparent calc(25% + 0.5px)),
        linear-gradient(90deg,
            transparent calc(50% - 0.5px),
            rgba(255, 255, 255, 0.15) 50%,
            transparent calc(50% + 0.5px)),
        linear-gradient(90deg,
            transparent calc(75% - 0.5px),
            rgba(255, 255, 255, 0.12) 75%,
            transparent calc(75% + 0.5px));
}

/* ==========================================================
   CONTENT
========================================================== */

.wearch-hero .container {
    position: relative;
    z-index: 4;
}

.wearch-hero .hero-content {
    position: relative;
    max-width: 940px;
    padding: 24px 0 10px;
}

/* Decorative vertical gold line */
.wearch-hero .hero-content::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 8px;
    left: -32px;
    width: 1px;
    background: linear-gradient(180deg,
            transparent,
            rgba(200, 149, 69, 0.82) 18%,
            rgba(200, 149, 69, 0.34) 80%,
            transparent);
}

/* ==========================================================
   SMALL LABEL
========================================================== */






/* ==========================================================
   HEADING
========================================================== */

.wearch-hero .section-title {
    margin: 0 0 34px;
}

.wearch-hero .section-title h1 {
    display: flex;
    flex-direction: column;
    max-width: 940px;
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(54px, 5vw, 78px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-wrap: balance;
    cursor: default;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

.wearch-hero .section-title h1 span {
    display: block;
    margin-top: 7px;
    padding-left: 46px;
    color: var(--wearch-gold-light);
    font-style: italic;
    font-weight: 400;
}

/* Supporting paragraph */
.wearch-hero .section-title p {
    max-width: 610px;
    margin: 30px 0 0;
    padding: 0 0 0 20px;
    border-left: 1px solid rgba(223, 182, 108, 0.75);
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.015em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

/* ==========================================================
   BUTTONS
========================================================== */

.wearch-hero .hero-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.wearch-primary-btn,
.wearch-outline-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-width: 205px;
    min-height: 56px;
    padding: 16px 20px;
    overflow: hidden;
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    isolation: isolate;
    transition:
        color 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* Main gold button */
.wearch-primary-btn {
    border: 1px solid var(--wearch-gold);
    background: var(--wearch-gold);
    color: #090909;
    box-shadow: 0 12px 35px rgba(200, 149, 69, 0.18);
}

.wearch-primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--wearch-ivory);
    transform: translateX(-102%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.wearch-primary-btn:hover::before {
    transform: translateX(0);
}

.wearch-primary-btn:hover {
    border-color: var(--wearch-ivory);
    color: #090909;
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

/* Transparent outline button */
.wearch-outline-btn {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(7, 7, 7, 0.22);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.wearch-outline-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(102%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.wearch-outline-btn:hover::before {
    transform: translateY(0);
}

.wearch-outline-btn:hover {
    border-color: #ffffff;
    color: #090909;
    transform: translateY(-3px);
}

.wearch-primary-btn i,
.wearch-outline-btn i {
    font-size: 11px;
    transition: transform 0.35s ease;
}

.wearch-primary-btn:hover i {
    transform: translateX(4px);
}

.wearch-outline-btn:hover i {
    transform: translate(3px, -3px);
}

/* ==========================================================
   BOTTOM DETAILS
========================================================== */




/* Slider count */




/* Scroll indicator */
.wearch-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: color 0.3s ease;
}

.wearch-scroll-indicator:hover {
    color: var(--wearch-gold-light);
}

.wearch-scroll-indicator i {
    color: var(--wearch-gold-light);
    animation: wearchHeroScroll 1.7s ease-in-out infinite;
}

@keyframes wearchHeroScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ==========================================================
   PAGINATION
========================================================== */





/* ==========================================================
   LARGE LAPTOPS
========================================================== */

@media only screen and (max-width: 1399px) {
    .wearch-hero .hero-content {
        max-width: 850px;
    }

    .wearch-hero .section-title h1 {
        font-size: clamp(58px, 6vw, 88px);
    }

    .wearch-hero .section-title p {
        margin-top: 24px;
    }
}

/* ==========================================================
   TABLETS
========================================================== */

@media only screen and (max-width: 1199px) {
    .wearch-hero .hero-slide {
        padding: 38px 0 68px !important;
    }

    .wearch-hero .hero-content::before {
        display: none;
    }

    .wearch-hero .section-title h1 {
        font-size: clamp(54px, 7vw, 78px);
    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 991px) {
    .wearch-hero {
        /* height: calc(100vh - var(--wearch-mobile-header-height) - 65px);
        height: calc(100svh - var(--wearch-mobile-header-height) - 65px);
        min-height: 575px; */
    }

    .wearch-hero .hero-slider-image img {
        object-fit: cover !important;
        /* object-position: center center !important; */
        width: auto !important;
        height: 100% !important;
    }

    .wearch-hero .swiper-slide-active .hero-slider-image img {
        transform: scale(1.02) !important;
    }

    .wearch-hero .hero-slide {
        align-items: center;
        min-height: 0 !important;
        padding: 38px 0 58px !important;
    }

    .wearch-hero .hero-slide::before {
        background:
            linear-gradient(90deg,
                rgba(5, 5, 5, 0.92) 0%,
                rgba(5, 5, 5, 0.76) 70%,
                rgba(5, 5, 5, 0.54) 100%),
            linear-gradient(180deg,
                rgba(5, 5, 5, 0.18) 0%,
                rgba(5, 5, 5, 0.08) 45%,
                rgba(5, 5, 5, 0.82) 100%);
    }

    .wearch-hero .hero-content {
        max-width: 720px;
        padding: 0 34px 0 0;
    }

    .wearch-hero .section-title h1 {
        font-size: clamp(48px, 8.5vw, 70px);
    }

    .wearch-hero .section-title h1 span {
        padding-left: 20px;
    }


    .wearch-scroll-indicator {
        display: none;
    }
}

/* Small phones */
@media only screen and (max-width: 767px) {
    .wearch-hero {
        min-height: 620px;
    }

    .wearch-hero .hero-slide {
        padding: 28px 0 40px !important;
    }

    .wearch-hero .hero-content {
        width: 100%;
        padding-right: 18px;
    }




    .wearch-hero .section-title {
        margin-bottom: 24px;
    }

    .wearch-hero .section-title h1 {
        font-size: clamp(42px, 11.5vw, 58px);
        line-height: 0.98;
    }

    .wearch-hero .section-title h1 span {
        margin-top: 5px;
        padding-left: 0;
    }

    .wearch-hero .section-title p {
        max-width: 100%;
        margin-top: 22px;
        padding-left: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .wearch-hero .hero-btn {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .wearch-primary-btn,
    .wearch-outline-btn {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding: 14px 17px;
        font-size: 10px;
    }

}

/* Very short screens */
@media only screen and (max-height: 720px) and (min-width: 768px) {
    .wearch-hero .hero-slide {
        padding-top: 24px !important;
        padding-bottom: 44px !important;
    }


    .wearch-hero .section-title {
        margin-bottom: 22px;
    }

    .wearch-hero .section-title h1 {
        font-size: clamp(52px, 5.6vw, 76px);
    }

    .wearch-hero .section-title p {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.6;
    }

    .wearch-primary-btn,
    .wearch-outline-btn {
        min-height: 50px;
    }
}

/* Keep first hero heading line together */


/* Prevent overflow on smaller screens */
@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

/* ==========================================================
   WEARCH INNOVATIVE HERO BUTTONS
========================================================== */

.wearch-hero .hero-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.wearch-primary-btn,
.wearch-outline-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    width: auto;
    min-width: 0;
    min-height: 54px;
    padding: 7px 8px 7px 22px;

    overflow: hidden;
    border-radius: 18px 4px 18px 4px;

    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    isolation: isolate;

    transition:
        color 0.4s ease,
        border-color 0.4s ease,
        background-color 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* Keep text above hover layer */
.wearch-primary-btn span,
.wearch-outline-btn span,
.wearch-primary-btn i,
.wearch-outline-btn i {
    position: relative;
    z-index: 2;
}

/* Circular icon area */
.wearch-primary-btn i,
.wearch-outline-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 50%;
    font-size: 11px;

    transition:
        transform 0.4s ease,
        background-color 0.4s ease,
        color 0.4s ease;
}

/* ==========================================================
   PRIMARY BUTTON
========================================================== */

.wearch-primary-btn {
    border: 1px solid var(--wearch-gold);
    background: var(--wearch-gold);
    color: #0b0b0b;

    box-shadow:
        0 12px 28px rgba(200, 149, 69, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wearch-primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background: var(--wearch-ivory);

    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.wearch-primary-btn i {
    background: #0b0b0b;
    color: var(--wearch-gold-light);
}

.wearch-primary-btn:hover {
    border-color: var(--wearch-ivory);
    color: #0b0b0b;

    transform: translateY(-3px);

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(247, 241, 231, 0.18);
}

.wearch-primary-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.wearch-primary-btn:hover i {
    background: var(--wearch-gold);
    color: #0b0b0b;
    transform: translateX(3px) rotate(-8deg);
}

/* ==========================================================
   OUTLINE BUTTON
========================================================== */

.wearch-outline-btn {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(8, 8, 8, 0.26);
    color: #ffffff;

    backdrop-filter: blur(10px);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.wearch-outline-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(135deg,
            var(--wearch-gold-dark),
            var(--wearch-gold));

    clip-path: circle(0% at 88% 50%);
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.wearch-outline-btn i {
    border: 1px solid rgba(223, 182, 108, 0.45);
    background: rgba(200, 149, 69, 0.1);
    color: var(--wearch-gold-light);
}

.wearch-outline-btn:hover {
    border-color: var(--wearch-gold);
    color: #0b0b0b;

    transform: translateY(-3px);

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(200, 149, 69, 0.14);
}

.wearch-outline-btn:hover::before {
    clip-path: circle(145% at 88% 50%);
}

.wearch-outline-btn:hover i {
    border-color: var(--wearch-ivory);
    background: var(--wearch-ivory);
    color: #0b0b0b;
    transform: translate(2px, -2px) rotate(8deg);
}

/* Keyboard accessibility */
.wearch-primary-btn:focus-visible,
.wearch-outline-btn:focus-visible {
    outline: 2px solid var(--wearch-gold-light);
    outline-offset: 4px;
}

/* Tablet */
@media only screen and (max-width: 991px) {

    .wearch-primary-btn,
    .wearch-outline-btn {
        min-height: 52px;
        padding: 6px 7px 6px 18px;
        font-size: 10px;
    }

    .wearch-primary-btn i,
    .wearch-outline-btn i {
        width: 38px;
        height: 38px;
    }
}

/* Mobile */
@media only screen and (max-width: 575px) {
    .wearch-hero .hero-btn {
        gap: 10px;
    }

    .wearch-primary-btn,
    .wearch-outline-btn {
        width: fit-content;
        min-height: 48px;
        padding: 5px 6px 5px 16px;
        border-radius: 15px 4px 15px 4px;
        font-size: 9px;
    }

    .wearch-primary-btn i,
    .wearch-outline-btn i {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================
   WEARCH DESIGN PHILOSOPHY — COMPACT PREMIUM VERSION
========================================================== */

.wearch-philosophy {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: clamp(34px, 4.5vh, 46px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 78%,
            rgba(200, 149, 69, 0.08),
            transparent 26%),
        linear-gradient(135deg,
            #090909 0%,
            #111111 52%,
            #161616 100%);
    box-sizing: border-box;
    isolation: isolate;
}

.philosophy-header {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.philosophy-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.philosophy-eyebrow>span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.philosophy-eyebrow>i {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wearch-gold);
}

.philosophy-eyebrow>p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.philosophy-header-row {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 30px;
    align-items: end;
}

.philosophy-heading {
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(38px, 3.6vw, 54px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.philosophy-heading span {
    font-style: italic;
    color: var(--wearch-gold-light);
}

.philosophy-header-intro {
    margin: 0 0 6px;
    padding-left: 18px;
    border-left: 1px solid rgba(200, 149, 69, 0.25);
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.7;
}

.philosophy-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(42px, 5vw, 58px);
    align-items: stretch;
}

/* Left Column: Single Visual Image */
.philosophy-visual-column {
    position: relative;
    align-self: stretch;
}

.philosophy-single-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px 4px 20px 4px;
    background: #121212;
    border: 1px solid rgba(200, 149, 69, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.philosophy-single-image figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.philosophy-single-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.philosophy-single-image:hover img {
    transform: scale(1.035);
}

.philosophy-subtle-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    padding: 10px 14px;
    border-left: 2px solid var(--wearch-gold);
    background: rgba(8, 8, 8, 0.74);
    backdrop-filter: blur(10px);
}

.philosophy-subtle-label span {
    display: block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--wearch-gold-light);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.philosophy-subtle-label strong {
    display: block;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--heading-font);
    color: #fff;
}

/* Right Column Content */
.philosophy-content-column {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-statement-box {
    margin-bottom: 18px;
}

.philosophy-sub-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--wearch-gold-light);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.philosophy-subheading {
    font-family: var(--heading-font);
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 12px;
    color: #fff;
}

.philosophy-subheading span {
    color: var(--wearch-gold-light);
    font-style: italic;
}

.philosophy-desc {
    color: rgba(255, 255, 255, 0.60);
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* Principles List styling */
.philosophy-principles {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.philosophy-principle-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 16px;
    align-items: center;
    padding: 13px 4px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, padding 0.3s ease, background 0.3s ease;
}

.philosophy-principle-row:hover {
    border-color: rgba(200, 149, 69, 0.35);
    padding-left: 10px !important;
    padding-right: 10px !important;
    background: rgba(200, 149, 69, 0.03);
}

.principle-num {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.principle-info h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 2px;
    color: #fff;
}

.principle-info p {
    font-family: var(--body-font);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.principle-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(200, 149, 69, 0.25);
    color: var(--wearch-gold-light);
    font-size: 9px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.philosophy-principle-row:hover .principle-arrow-btn {
    background: var(--wearch-gold);
    border-color: var(--wearch-gold);
    color: #111;
    transform: translateX(3px);
}

/* Actions */
.philosophy-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.philosophy-primary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 8px 7px 18px;
    border: 1px solid rgba(200, 149, 69, 0.35);
    border-radius: 20px 4px 20px 4px;
    color: #fff;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    isolation: isolate;
    transition: color 0.4s ease;
    text-decoration: none;
}

.philosophy-primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--wearch-gold);
    clip-path: circle(0 at 90% 50%);
    transition: clip-path 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.philosophy-primary-btn:hover::before {
    clip-path: circle(150% at 90% 50%);
}

.philosophy-primary-btn:hover {
    color: #111;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wearch-gold);
    color: #111;
    font-size: 9px;
}

.philosophy-primary-btn:hover .btn-arrow i {
    transform: translateX(2px);
}




/* ==========================================================
   SHORT DESKTOP / LAPTOP HEIGHT ADJUSTMENT
 ========================================================== */

@media (max-height: 830px) and (min-width: 992px) {
    .wearch-philosophy {
        padding: 24px 0 !important;
    }

    .philosophy-header {
        margin-bottom: 18px !important;
    }

    .philosophy-layout-grid {
        gap: 30px !important;
    }

    .philosophy-heading {
        font-size: clamp(32px, 3.2vw, 44px) !important;
    }

    .philosophy-subheading {
        font-size: clamp(24px, 2.2vw, 32px) !important;
        margin-bottom: 8px !important;
    }

    .philosophy-desc {
        margin-bottom: 15px !important;
        font-size: 14px !important;
    }

    .philosophy-principle-row {
        padding: 10px 4px !important;
    }

    .philosophy-actions {
        margin-top: 10px !important;
    }
}

/* ==========================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
 ========================================================== */

@media (max-width: 991px) {
    .wearch-philosophy {
        min-height: auto !important;
        padding: 56px 0 !important;
        display: block !important;
    }

    .philosophy-header-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        align-items: initial !important;
    }

    .philosophy-header-intro {
        padding-left: 0 !important;
        border-left: none !important;
        margin-bottom: 10px;
    }

    .philosophy-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .philosophy-visual-column {
        order: -1 !important;
        /* Image shows first */
    }

    .philosophy-single-image {
        height: clamp(260px, 45vh, 330px) !important;
        border-radius: 16px 4px 16px 4px !important;
    }

    .philosophy-subtle-label {
        display: none !important;
        /* Hide image label on mobile */
    }

}

@media (max-width: 480px) {
    .philosophy-principle-row {
        grid-template-columns: 30px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    .principle-arrow-btn {
        display: none !important;
    }
}

/* ==========================================================
   WEARCH SERVICES — PREMIUM MINIMAL SHOWCASE
========================================================== */

.wearch-services {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 44px 0 34px;
    background: linear-gradient(135deg, #090909 0%, #111111 100%);
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.wearch-services .container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* ==========================================================
   HEADER
========================================================== */

.wearch-services-header {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
}

.services-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.services-eyebrow span {
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: var(--wearch-gold-light);
    letter-spacing: 0.12em;
}

.services-eyebrow i {
    width: 32px;
    height: 1px;
    background: rgba(200, 149, 69, 0.35);
}

.services-eyebrow p {
    margin: 0;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.services-main-heading {
    font-family: var(--heading-font);
    font-size: clamp(38px, 3.5vw, 52px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.services-main-heading span {
    display: block;
    margin-top: 4px;
    color: var(--wearch-gold-light);
    font-weight: 400;
}

.services-header-text {
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(200, 149, 69, 0.3);
    padding-left: 16px;
    margin: 0;
}

/* ==========================================================
   SHOWCASE
========================================================== */

.services-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 32px;
    align-items: stretch;
    flex-grow: 1;
    margin-bottom: 18px;
}

.services-showcase>input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================
   VERTICAL SERVICE LIST
========================================================== */

.services-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wearch-service-item {
    position: relative;
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: padding 0.3s ease;
}

.service-number {
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
    align-self: start;
    padding-top: 3px;
    transition: color 0.3s ease;
}

.service-name strong {
    display: block;
    font-family: var(--heading-font);
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-name p,
.service-name small {
    display: block;
    font-family: var(--body-font);
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.48);
    transition: color 0.3s ease;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover & Active States */
.wearch-service-item:hover .service-name strong,
#service-architecture:checked~.services-list label[for="service-architecture"] .service-name strong,
#service-interior:checked~.services-list label[for="service-interior"] .service-name strong,
#service-construction:checked~.services-list label[for="service-construction"] .service-name strong,
#service-renovation:checked~.services-list label[for="service-renovation"] .service-name strong,
#service-landscape:checked~.services-list label[for="service-landscape"] .service-name strong {
    color: var(--wearch-gold-light);
}

.wearch-service-item:hover .service-number,
#service-architecture:checked~.services-list label[for="service-architecture"] .service-number,
#service-interior:checked~.services-list label[for="service-interior"] .service-number,
#service-construction:checked~.services-list label[for="service-construction"] .service-number,
#service-renovation:checked~.services-list label[for="service-renovation"] .service-number,
#service-landscape:checked~.services-list label[for="service-landscape"] .service-number {
    color: var(--wearch-gold-light);
}

.wearch-service-item:hover .service-name small,
#service-architecture:checked~.services-list label[for="service-architecture"] .service-name small,
#service-interior:checked~.services-list label[for="service-interior"] .service-name small,
#service-construction:checked~.services-list label[for="service-construction"] .service-name small,
#service-renovation:checked~.services-list label[for="service-renovation"] .service-name small,
#service-landscape:checked~.services-list label[for="service-landscape"] .service-name small {
    color: rgba(255, 255, 255, 0.72);
}

.wearch-service-item:hover .service-arrow,
#service-architecture:checked~.services-list label[for="service-architecture"] .service-arrow,
#service-interior:checked~.services-list label[for="service-interior"] .service-arrow,
#service-construction:checked~.services-list label[for="service-construction"] .service-arrow,
#service-renovation:checked~.services-list label[for="service-renovation"] .service-arrow,
#service-landscape:checked~.services-list label[for="service-landscape"] .service-arrow {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #000000;
    transform: rotate(-35deg);
}

/* ==========================================================
   FEATURED IMAGE PREVIEW
========================================================== */

.services-preview {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #0d0d0d;
    box-sizing: border-box;
}

.services-preview::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 149, 69, 0.18);
    pointer-events: none;
    z-index: 3;
}

.service-preview-item {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.8s ease;
}

.service-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.02);
    transition: transform 1.1s ease;
}

.service-preview-item:hover img {
    transform: scale(1.035);
}


.service-preview-top {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 4;
}

.service-preview-top small {
    display: none;
}

.service-preview-top strong {
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: var(--wearch-gold-light);
    letter-spacing: 0.1em;
    border: 1px solid rgba(200, 149, 69, 0.25);
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 2px;
}

.service-preview-content {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-preview-content>small {
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: var(--wearch-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

.service-preview-content>strong {
    font-family: var(--heading-font);
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
    max-width: 85%;
}

.service-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.service-preview-link i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.service-preview-link:hover {
    color: var(--wearch-gold-light);
    border-color: var(--wearch-gold-light);
}

.service-preview-link:hover i {
    transform: translate(2px, -2px);
}

#service-architecture:checked~.services-preview .architecture-preview,
#service-interior:checked~.services-preview .interior-preview,
#service-construction:checked~.services-preview .construction-preview,
#service-renovation:checked~.services-preview .renovation-preview,
#service-landscape:checked~.services-preview .landscape-preview {
    z-index: 2;
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================
   FOOTER CTA
========================================================== */

.services-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-top: auto;
}

.services-footer p {
    font-family: var(--body-font);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.services-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}

.services-all-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 8px;
    transition: all 0.3s ease;
}

.services-all-link:hover {
    color: var(--wearch-gold-light);
}

.services-all-link:hover .services-all-icon {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #000000;
}

/* ==========================================================
   BACKGROUND TEXT
========================================================== */

.services-background-word {
    position: absolute;
    right: -15px;
    bottom: -40px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.017);
    font-family: var(--heading-font);
    font-size: clamp(100px, 14vw, 205px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.04em;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   DESKTOP ALIGNMENT (Equal Height Stretch)
========================================================== */

@media only screen and (min-width: 992px) {
    .services-showcase {
        display: grid;
        grid-template-columns: 43% 57%;
        gap: 48px;
        align-items: stretch;
        /* Forces equal height of left and right columns */
    }

    .services-list,
    .services-preview {
        height: 100%;
    }

    .services-preview,
    .service-preview-item,
    .service-preview-item img {
        min-height: 0;
        height: 100%;
        width: 100%;
    }

    .service-preview-item img {
        object-fit: cover;
    }
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 830px) and (min-width: 992px) {
    .wearch-services {
        min-height: auto;
        padding: 35px 0 32px;
    }

    .wearch-services-header {
        margin-bottom: 22px;
    }

    .services-main-heading {
        font-size: clamp(35px, 3.2vw, 47px);
    }

    .wearch-service-item {
        min-height: 82px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .service-name small {
        font-size: 1.03rem;
        line-height: 1.75;
    }

    .services-preview {
        height: 100%;
        min-height: 0;
    }

    .services-footer {
        margin-top: 15px;
    }
}

/* ==========================================================
   TABLET & MOBILE RESPONSIVE OVERRIDES
========================================================== */

@media only screen and (max-width: 991px) {
    .wearch-services {
        display: block;
        min-height: auto;
        padding: 60px 0;
    }

    .wearch-services .container {
        display: block;
    }

    .wearch-services-header {
        margin-bottom: 24px;
    }

    .services-main-heading span {
        padding-left: 0;
    }

    .services-header-text {
        max-width: 100%;
        margin: 16px 0 0;
        padding-left: 14px;
        border-left: 1px solid rgba(200, 149, 69, 0.35);
        font-size: 15px;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 24px;
        align-items: stretch;
    }

    .services-list,
    .services-preview {
        height: auto;
        min-height: auto;
    }

    .services-list {
        grid-row: 1;
        /* Keep service list above the featured image */
    }

    .services-preview {
        grid-row: 2;
        min-height: 450px;
        /* Tablet featured image height around 420px–500px */
    }

    .services-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .wearch-services {
        padding: 56px 0;
        /* Use section padding around 56px–64px */
    }

    .services-showcase {
        gap: 24px;
        margin-bottom: 20px;
    }

    .services-preview {
        min-height: 310px;
        /* Mobile featured image height around 290px–340px */
    }

    .services-preview::after {
        display: none;
        /* Remove nonessential decorative borders */
    }

    .service-preview-top {
        top: 16px;
        right: 16px;
    }

    .service-preview-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .service-preview-content>strong {
        font-size: 22px;
        /* Keep featured statement compact */
        margin-bottom: 10px;
        max-width: 100%;
    }

    .service-preview-link {
        padding: 8px 12px;
        /* Avoid oversized buttons */
        font-size: 8px;
    }

    .wearch-service-item {
        grid-template-columns: 24px 1fr auto;
        gap: 12px;
        padding: 12px 0;
    }

    .service-number {
        font-size: 8px;
        padding-top: 4px;
    }

    .service-name strong {
        font-size: 18px;
    }

    .service-name small {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .service-arrow {
        width: 24px;
        height: 24px;
        font-size: 7px;
    }

    .services-background-word {
        display: none !important;
        /* Hide EXPERTISE background word below 768px */
    }

    .services-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 12px;
    }

    .services-footer p {
        font-size: 14px;
    }

    .services-all-link {
        font-size: 8px;
    }

    .services-all-icon {
        width: 24px;
        height: 24px;
        font-size: 7px;
    }
}

@media only screen and (max-width: 480px) {
    .service-name small {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .wearch-service-item {
        min-height: 64px;
    }

    .services-preview {
        min-height: 290px;
        /* within 290px–340px */
    }
}


/* ==========================================================
   WEARCH PROCESS — ARCHITECTURAL WORKFLOW
========================================================== */

.wearch-process {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 54px 0 44px;
    background: linear-gradient(135deg, #090909 0%, #111111 100%);
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.wearch-process .container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* Blueprint Grid Background */
.wearch-process::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* ==========================================================
   HEADER
========================================================== */

.process-header {
    position: relative;
    z-index: 3;
    margin-bottom: 28px;
}

.process-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.process-eyebrow span {
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: var(--wearch-gold-light);
    letter-spacing: 0.12em;
}

.process-eyebrow i {
    width: 32px;
    height: 1px;
    background: rgba(200, 149, 69, 0.35);
}

.process-eyebrow p {
    margin: 0;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.process-heading {
    font-family: var(--heading-font);
    font-size: clamp(38px, 3.5vw, 52px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.process-heading span {
    display: block;
    margin-top: 4px;
    color: var(--wearch-gold-light);
    font-weight: 400;
}

.process-header-text {
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(200, 149, 69, 0.3);
    padding-left: 16px;
    margin: 0;
}

/* ==========================================================
   JOURNEY INDICATOR
========================================================== */

.process-journey {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 34px;
    position: relative;
    z-index: 3;
}

.journey-start,
.journey-end {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 15px;
    color: var(--wearch-gold-light);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.journey-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(200, 149, 69, 0) 0%,
            rgba(200, 149, 69, 0.35) 15%,
            rgba(200, 149, 69, 0.35) 85%,
            rgba(200, 149, 69, 0) 100%);
    margin: 0 24px;
}

/* ==========================================================
   PROCESS STAGE / GRID
========================================================== */

.process-stage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 28px;
    position: relative;
    z-index: 3;
}

/* ==========================================================
   PROCESS CARDS
========================================================== */

.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-top-color: var(--wearch-gold-light);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.process-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.process-step-number {
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 700;
    color: var(--wearch-gold-light);
    letter-spacing: 0.1em;
}

.process-card-icon {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.22);
    transition: color 0.4s ease;
}

.process-card:hover .process-card-icon {
    color: var(--wearch-gold);
}

.process-step-label {
    display: block;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.process-card-content h3 {
    font-family: var(--heading-font);
    font-size: 21px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.process-card-content p {
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ==========================================================
   FOOTER / CTA
========================================================== */

.process-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-top: auto;
    position: relative;
    z-index: 3;
}

.process-footer p {
    font-family: var(--body-font);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.process-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}

.process-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 8px;
    transition: all 0.3s ease;
}

.process-link:hover {
    color: var(--wearch-gold-light);
}

.process-link:hover .process-link-icon {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #000000;
}

/* ==========================================================
   BACKGROUND TEXT
========================================================== */

.process-background-word {
    position: absolute;
    right: -15px;
    bottom: -40px;
    z-index: -1;
    font-size: 0;
    pointer-events: none;
    user-select: none;
}

.process-background-word::after {
    content: "PROCESS";
    display: block;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 220px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.06em;
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 830px) and (min-width: 992px) {
    .wearch-process {
        padding: 30px 0;
        min-height: calc(100vh - var(--wearch-header-height, 98px));
        min-height: calc(100svh - var(--wearch-header-height, 98px));
    }

    .process-header {
        margin-bottom: 16px;
    }

    .process-heading {
        font-size: clamp(34px, 3vw, 44px);
    }

    .process-journey {
        margin-bottom: 20px;
    }

    .process-stage {
        gap: 16px;
        margin-bottom: 16px;
    }

    .process-card {
        padding: 16px 20px;
    }

    .process-card-top {
        margin-bottom: 14px;
    }

    .process-card-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .process-footer {
        padding-top: 12px;
    }
}

/* ==========================================================
   TABLET & MOBILE RESPONSIVE OVERRIDES
========================================================== */

@media only screen and (max-width: 991px) {
    .wearch-process {
        display: block;
        min-height: auto;
        padding: 60px 0;
    }

    .wearch-process .container {
        display: block;
    }

    .process-header {
        margin-bottom: 24px;
    }

    .process-heading span {
        padding-left: 0;
    }

    .process-header-text {
        max-width: 100%;
        margin: 16px 0 0;
        padding-left: 14px;
        border-left: 1px solid rgba(200, 149, 69, 0.35);
        font-size: 15px;
    }

    .process-journey {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
        text-align: center;
    }

    .journey-line {
        width: 1px;
        height: 48px;
        margin: 8px auto;
        background: linear-gradient(180deg,
                rgba(200, 149, 69, 0) 0%,
                rgba(200, 149, 69, 0.35) 15%,
                rgba(200, 149, 69, 0.35) 85%,
                rgba(200, 149, 69, 0) 100%);
    }

    .process-stage {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 32px;
    }

    .process-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .wearch-process {
        padding: 56px 0;
    }

    .process-stage {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }

    .process-card {
        padding: 20px;
    }

    .process-card-top {
        margin-bottom: 14px;
    }

    .process-card-content h3 {
        font-size: 19px;
    }

    .process-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 12px;
    }

    .process-footer p {
        font-size: 14px;
    }
}

/*=========================================================
WEARCH PREMIUM TYPOGRAPHY SYSTEM
=========================================================*/

:root {
    --heading-font: "Cormorant Garamond", serif;
    --body-font: "Inter", sans-serif;
}

/*---------------------------------------------------------
BODY
---------------------------------------------------------*/

body {

    font-family: var(--body-font);
    font-size: 18px;

    font-weight: 400;
    line-height: 1.8;
    color: #d8d8d8;

}

/*---------------------------------------------------------
HEADINGS
---------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.02em;

}

/*---------------------------------------------------------
PARAGRAPH
---------------------------------------------------------*/

p {

    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.9;
    font-weight: 400;
    color: #c7c7c7;

}

/*---------------------------------------------------------
SECTION LABELS
---------------------------------------------------------*/

.section-title h3 {

    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: .22em;
    font-weight: 700;
    text-transform: uppercase;

}

/* WEARCH PREMIUM TYPOGRAPHY OVERRIDE */
:root {
    --heading-font: "Cormorant Garamond", serif;
    --body-font: "Inter", sans-serif;
}

body {
    font-family: var(--body-font) !important;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .02em;
}

p {
    font-family: var(--body-font) !important;
    font-size: 17px !important;
    line-height: 1.9 !important;
    color: #c8c8c8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font) !important;
    letter-spacing: normal !important;
}

.section-title h1 {
    font-size: clamp(52px, 5vw, 74px) !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
}

.section-title h2 {
    font-size: clamp(34px, 3.2vw, 42px) !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
}

.section-title h3 {
    font-family: var(--body-font) !important;
    font-size: 13px !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
}

.hero-content .section-title p {
    font-size: 18px !important;
    max-width: 620px;
    line-height: 1.9 !important;
}

.about-us-content p,
.design-philosophy p,
.our-services p,
.section-title-content p {
    font-size: 17px !important;
    line-height: 1.9 !important;
}

.main-menu ul li a,
.wearch-header-btn,
.slicknav_nav li a {
    font-family: var(--body-font) !important;
}

.about-us,
.design-philosophy,
.our-services {
    padding: 95px 0 !important;
}



@media(max-width:991px) {
    .section-title h1 {
        font-size: 44px !important;
    }

    .section-title h2 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }
}



/* ==========================================================
   WEARCH ABOUT — PREMIUM ONE-VIEWPORT EDITORIAL VERSION
========================================================== */

:root {
    --wearch-header-height: 98px;
}

/* Main section */
.wearch-about-compact {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--wearch-header-height));
    min-height: calc(100svh - var(--wearch-header-height));
    padding: clamp(48px, 6vh, 72px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 14%,
            rgba(200, 149, 69, 0.1),
            transparent 27%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 50%,
            #171717 100%);
    isolation: isolate;
}

/* Architectural vertical lines */
.wearch-about-compact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(90deg,
            transparent calc(25% - 0.5px),
            rgba(255, 255, 255, 0.04) 25%,
            transparent calc(25% + 0.5px)),
        linear-gradient(90deg,
            transparent calc(50% - 0.5px),
            rgba(255, 255, 255, 0.035) 50%,
            transparent calc(50% + 0.5px)),
        linear-gradient(90deg,
            transparent calc(75% - 0.5px),
            rgba(255, 255, 255, 0.03) 75%,
            transparent calc(75% + 0.5px));
}

/* ==========================================================
   ABOUT EDITORIAL VISUAL — FULL HEIGHT VERSION
========================================================== */

/* Make both columns equal in height */
.wearch-about-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: clamp(50px, 5vw, 82px);
}

/* Right content determines the section row height */
.about-editorial-content {
    align-self: stretch;
}

/* Visual side follows the exact content height */
.about-editorial-visual {
    position: relative;
    align-self: stretch;
    min-height: 0;
    height: 100%;
    overflow: visible;
}

/* Main image fills almost the complete column */
.about-editorial-main-image {
    position: absolute;
    inset: 0 15% 0 0;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 30px 6px 30px 6px;
    background: #151515;
}

/* Main image elements */
.about-editorial-main-image figure,
.about-editorial-main-image img {
    width: 100%;
    height: 100%;
}

.about-editorial-main-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.84) contrast(1.04);
    transition:
        transform 0.9s ease,
        filter 0.9s ease;
}

.about-editorial-main-image:hover img {
    transform: scale(1.045);
    filter: saturate(0.96) contrast(1.05);
}

/* Premium overlay */
.about-editorial-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.04) 0%,
            transparent 42%,
            rgba(5, 5, 5, 0.72) 100%);
}

/* Secondary image becomes larger and wider */
.about-editorial-secondary-image {
    position: absolute;
    right: 0;
    bottom: 7%;
    z-index: 4;
    width: 42%;
    height: 43%;
    padding: 7px;
    overflow: hidden;
    border-radius: 24px 5px 24px 5px;
    background: #171717;
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(200, 149, 69, 0.12);
}

.about-editorial-secondary-image figure,
.about-editorial-secondary-image img {
    width: 100%;
    height: 100%;
}

.about-editorial-secondary-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 18px 3px 18px 3px;
    transition: transform 0.75s ease;
}

.about-editorial-secondary-image:hover img {
    transform: scale(1.04);
}

/* Caption positioned inside main image */
.about-image-caption {
    position: absolute;
    right: 19%;
    bottom: 24px;
    left: 24px;
    z-index: 5;
    max-width: 285px;
    padding: 14px 17px;
    border-left: 2px solid var(--wearch-gold);
    background: rgba(7, 7, 7, 0.76);
    backdrop-filter: blur(12px);
}

.about-image-caption span {
    display: block;
    margin-bottom: 5px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-image-caption strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

/* Floating brand mark */



/* Decorative gold line behind secondary image */
.about-editorial-visual::after {
    content: "";
    position: absolute;
    top: 14%;
    right: 7%;
    bottom: 13%;
    width: 1px;
    z-index: 2;
    background: linear-gradient(180deg,
            transparent,
            rgba(200, 149, 69, 0.45),
            transparent);
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 820px) and (min-width: 992px) {

    .about-editorial-main-image {
        right: 14%;
    }

    .about-editorial-secondary-image {
        width: 40%;
        height: 42%;
        bottom: 5%;
    }

    .about-image-caption {
        right: 17%;
        bottom: 18px;
        left: 18px;
        padding: 11px 14px;
    }

    .about-image-caption strong {
        font-size: 16px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-about-editorial {
        grid-template-columns: 1fr;
        align-items: initial;
    }

    .about-editorial-visual {
        width: 100%;
        height: 620px;
        min-height: 620px;
    }

    .about-editorial-main-image {
        inset: 0 14% 0 0;
    }

    .about-editorial-secondary-image {
        width: 42%;
        height: 44%;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .about-editorial-visual {
        height: 475px;
        min-height: 475px;
    }

    .about-editorial-main-image {
        inset: 0 10% 0 0;
        border-radius: 24px 5px 24px 5px;
    }

    .about-editorial-secondary-image {
        right: 0;
        bottom: 5%;
        width: 48%;
        height: 43%;
        border-radius: 20px 4px 20px 4px;
    }




    .about-image-caption {
        right: 16%;
        bottom: 16px;
        left: 15px;
        max-width: 220px;
        padding: 11px 13px;
    }

    .about-image-caption strong {
        font-size: 15px;
    }
}

/* Small phones */
@media only screen and (max-width: 480px) {

    .about-editorial-visual {
        height: 400px;
        min-height: 400px;
    }

    .about-editorial-main-image {
        right: 8%;
    }

    .about-editorial-secondary-image {
        width: 52%;
        height: 42%;
    }

    .about-image-caption {
        right: 12%;
    }

}

/* ==========================================================
   CONTENT SIDE
========================================================== */

.about-editorial-content {
    position: relative;
    max-width: 620px;
}

/* Eyebrow */
.about-editorial-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.about-editorial-label>span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.about-editorial-label>i {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--wearch-gold);
}

.about-editorial-label>p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

/* Main heading */
.about-editorial-content> :is(h1, h2) {
    max-width: 650px;
    margin: 0 0 25px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(39px, 3.7vw, 55px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.about-editorial-content> :is(h1, h2) span {
    display: block;
    margin-top: 4px;
    padding-left: 38px;
    color: var(--wearch-gold-light);
    font-weight: 500;
}

/* Story content */
.about-editorial-statement {
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 1px solid rgba(223, 182, 108, 0.42);
}

.about-editorial-statement>span {
    display: block;
    margin-bottom: 10px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-editorial-statement h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(25px, 2.2vw, 32px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-editorial-statement h3 strong {
    display: block;
    margin-top: 3px;
    color: var(--wearch-gold-light);
    font-weight: 500;
}

.about-editorial-statement p {
    max-width: 565px;
    margin: 0 0 11px;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0;
}

.about-editorial-statement p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   COMPACT SERVICES
========================================================== */

.about-editorial-services {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 10px 18px;
    margin-top: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.about-editorial-services span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.about-editorial-services span i {
    display: block;
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--wearch-gold);
    box-shadow: 0 0 8px rgba(200, 149, 69, 0.35);
}

/* ==========================================================
   FOOTER
========================================================== */

.about-editorial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 25px;
}

.about-editorial-reach {
    padding-left: 16px;
    border-left: 1px solid rgba(223, 182, 108, 0.3);
}

.about-editorial-reach span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-editorial-reach strong {
    color: var(--wearch-gold-light);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 500;
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.wearch-about-compact .about-background-text,
.wearch-philosophy .philosophy-background-text {
    position: absolute;
    right: -14px;
    bottom: -35px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 220px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.06em;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   SHORT LAPTOP SCREENS
========================================================== */

@media only screen and (max-height: 820px) and (min-width: 992px) {

    .wearch-about-compact {
        padding: 38px 0;
    }

    .wearch-about-editorial {
        gap: 55px;
    }

    .about-editorial-visual {
        min-height: 455px;
    }

    .about-editorial-content> :is(h1, h2) {
        margin-bottom: 18px;
        font-size: clamp(36px, 3.3vw, 48px);
    }

    .about-editorial-statement {
        margin-bottom: 17px;
    }

    .about-editorial-statement h3 {
        margin-bottom: 11px;
        font-size: 25px;
    }

    .about-editorial-statement p {
        margin-bottom: 7px;
        font-size: 15px;
        line-height: 1.62;
    }

    .about-editorial-services {
        gap: 7px 16px;
        margin-top: 15px;
        padding: 13px 0;
    }

    .about-editorial-footer {
        margin-top: 17px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-about-compact {
        display: block;
        min-height: 0;
        padding: 82px 0;
    }

    .wearch-about-editorial {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-editorial-visual {
        width: 100%;
        max-width: 740px;
        min-height: 610px;
    }

    .about-editorial-content {
        max-width: 740px;
    }

    .about-editorial-content> :is(h1, h2) {
        font-size: clamp(42px, 7vw, 58px);
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .wearch-about-compact {
        padding: 68px 0;
    }

    .wearch-about-editorial {
        gap: 45px;
    }

    .about-editorial-visual {
        min-height: 455px;
    }

    .about-editorial-main-image {
        width: 85%;
        height: 88%;
        border-radius: 24px 4px 24px 4px;
    }

    .about-editorial-secondary-image {
        width: 49%;
        height: 49%;
    }


    .about-image-caption {
        bottom: 15px;
        left: 15px;
        max-width: 215px;
        padding: 10px 12px;
    }

    .about-image-caption strong {
        font-size: 15px;
    }

    .about-editorial-content> :is(h1, h2) {
        font-size: clamp(37px, 10.5vw, 50px);
    }

    .about-editorial-content> :is(h1, h2) span {
        padding-left: 0;
    }

    .about-editorial-statement {
        padding-left: 14px;
    }

    .about-editorial-statement p {
        font-size: 15px;
        line-height: 1.72;
    }

    .about-editorial-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Small phones */
@media only screen and (max-width: 480px) {

    .about-editorial-visual {
        min-height: 390px;
    }

    .about-editorial-main-image {
        width: 88%;
    }

    .about-editorial-secondary-image {
        width: 54%;
    }

    .about-editorial-services {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-flow: row;
    }

    .wearch-about-compact .about-background-text,
    .wearch-philosophy .philosophy-background-text {
        font-size: 95px;
    }
}

/* ==========================================================
   ABOUT BUTTON
========================================================== */

.wearch-about-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 7px 8px 7px 20px;
    overflow: hidden;
    border: 1px solid rgba(223, 182, 108, 0.55);
    border-radius: 18px 4px 18px 4px;
    background: transparent;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    isolation: isolate;
    transition:
        color 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease;
}

.wearch-about-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg,
            var(--wearch-gold-dark),
            var(--wearch-gold));
    clip-path: circle(0 at 85% 50%);
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.wearch-about-btn:hover::before {
    clip-path: circle(150% at 85% 50%);
}

.wearch-about-btn:hover {
    border-color: var(--wearch-gold);
    color: #111111;
    transform: translateY(-3px);
}

.wearch-about-btn span {
    position: relative;
    z-index: 2;
}

.about-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--wearch-gold);
    color: #111111;
    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.about-btn-icon i {
    font-size: 10px;
    transition: transform 0.35s ease;
}

.wearch-about-btn:hover .about-btn-icon {
    background: #111111;
    color: var(--wearch-gold);
}

.wearch-about-btn:hover .about-btn-icon i {
    transform: translateX(4px);
}

/* ===========================
   PROCESS RESPONSIVE ORDER
=========================== */

@media only screen and (max-width: 991px) {

    .process-stage {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Move the journey card to the top */

    .process-card-1 {
        order: 2;
    }

    .process-card-2 {
        order: 3;
    }

    .process-card-3 {
        order: 4;
    }

    .process-card-4 {
        order: 5;
    }

    /* Decorative line isn't needed on mobile */
}

/* ==========================================================
   WEARCH PROJECTS SECTION — DARK PREMIUM GALLERY
========================================================== */

.wearch-projects {
    position: relative;
    overflow: hidden;
    padding: 52px 0 78px;
    background:
        radial-gradient(circle at 90% 12%,
            rgba(200, 149, 69, 0.1),
            transparent 27%),
        linear-gradient(135deg,
            #090909 0%,
            #111111 52%,
            #171717 100%);
    isolation: isolate;
}

/* Subtle architectural background grid */
.wearch-projects::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px);
    background-size: 110px 110px;
}

/* Decorative gold circle */
.wearch-projects::after {
    content: "";
    position: absolute;
    top: -230px;
    left: -220px;
    z-index: -1;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(200, 149, 69, 0.1);
    border-radius: 50%;
}

/* Keep all real content above decorative elements */
.wearch-projects>.container {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   FIRST VIEWPORT AREA
========================================================== */

.projects-featured-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 10px 0 32px;
    min-height: calc(100vh - 92px);
    /* navbar height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ==========================================================
   SECTION HEADER
========================================================== */

.projects-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.projects-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.projects-label span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.projects-label i {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wearch-gold);
}

.projects-label p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.projects-title {
    max-width: 800px;
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(38px, 3.6vw, 53px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.projects-title span {
    display: block;
    margin-top: 3px;
    padding-left: 44px;
    color: var(--wearch-gold-light);
    font-weight: 500;
}

.projects-description {
    max-width: 390px;
    margin: 0 0 3px auto;
    padding-left: 18px;
    border-left: 1px solid rgba(223, 182, 108, 0.48);
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.72;
}

/* ==========================================================
   FEATURED PROJECT
========================================================== */

.featured-project {
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
}

.featured-project-image {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(500px, 58vh, 700px);
    overflow: hidden;
    border-radius: 6px 30px 6px 30px;
    background: #171717;
    color: #ffffff;
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(200, 149, 69, 0.08);
}

.featured-project-image {
    height: 54vh;
    min-height: 400px;
}

.featured-project-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 3;
    border: 1px solid rgba(223, 182, 108, 0.23);
    border-radius: 3px 22px 3px 22px;
    pointer-events: none;
}

.featured-project-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.05);
    transition:
        transform 1s ease,
        filter 0.85s ease;
}

.featured-project-image:hover img {
    transform: scale(1.045);
    filter: saturate(0.98) contrast(1.06);
}

.featured-project-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding: 38px;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 5, 0.82) 0%,
            rgba(5, 5, 5, 0.4) 42%,
            transparent 74%),
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.08),
            transparent 45%,
            rgba(5, 5, 5, 0.82) 100%);
}

.featured-project-overlay>div:first-child {
    max-width: 690px;
    padding-left: 18px;
    border-left: 2px solid var(--wearch-gold);
}

.featured-project-overlay span {
    display: block;
    margin-bottom: 9px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.featured-project-overlay h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(29px, 3vw, 45px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.featured-project-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.6;
}

.featured-arrow {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.32);
    color: #ffffff;
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.featured-project-image:hover .featured-arrow {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #111111;
    transform: rotate(45deg);
}

/* ==========================================================
   PROJECT GRID AREA
========================================================== */

.projects-gallery-area {
    position: relative;
    z-index: 2;
    padding-top: 28px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* Common card */
.project-card {
    position: relative;
    display: block;
    height: 350px;
    overflow: hidden;
    border-radius: 24px 5px 24px 5px;
    background: #171717;
    color: #ffffff;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.27),
        0 0 0 1px rgba(200, 149, 69, 0.07);
}

@media (min-width: 992px) {
    .project-card {
        height: 340px !important;
        /* Increased desktop height */
    }

    .project-card:nth-child(3n + 1),
    .project-card:nth-child(3n + 2),
    .project-card:nth-child(3n + 3) {
        height: 340px !important;
    }

    .project-grid {
        gap: 40px !important;
        /* Larger gap on desktop */
    }
}

/* Compact layout adjustments */
.project-grid {
    gap: 24px;
    /* Balanced default gap */
}

.projects-header {
    padding-top: 20px;
    margin-bottom: 24px;
}

.projects-footer {
    margin-top: 24px;
    margin-bottom: 24px;
}

.wearch-projects {
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.04);
    transition:
        transform 0.9s ease,
        filter 0.85s ease;
    text-indent: -9999px;
    font-size: 0;
    color: transparent;
    position: relative;
}

/* Render a dark placeholder when image fails to load */
.project-card img::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.project-card:hover img {
    transform: scale(1.055);
    filter: saturate(0.98) contrast(1.05);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.06),
            transparent 42%,
            rgba(5, 5, 5, 0.88) 100%);
    pointer-events: none;
}

.project-overlay {
    position: absolute;
    right: 25px;
    bottom: 24px;
    left: 25px;
    z-index: 4;
    display: block;
    padding-left: 16px;
    border-left: 2px solid var(--wearch-gold);
}

.project-overlay span {
    display: block;
    margin-bottom: 7px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.project-overlay h4 {
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
}


/* Hover arrow */
.project-card-view {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.28);
    color: #ffffff;
    font-size: 10px;
    opacity: 0;
    transform: translateY(-8px);
    backdrop-filter: blur(8px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        color 0.35s ease,
        background-color 0.35s ease;
}

.project-card:hover .project-card-view {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
    background: var(--wearch-gold);
    color: #111111;
}

/* ==========================================================
   FOOTER
========================================================== */


.projects-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 6px 7px 6px 17px;
    overflow: hidden;
    border: 1px solid rgba(223, 182, 108, 0.48);
    border-radius: 16px 4px 16px 4px;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    isolation: isolate;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.projects-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--wearch-gold);
    clip-path: circle(0 at 88% 50%);
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.projects-btn:hover::before {
    clip-path: circle(145% at 88% 50%);
}

.projects-btn:hover {
    color: #101010;
    transform: translateY(-3px);
}

.projects-btn i {
    transition: transform 0.35s ease;
}

.projects-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.projects-background-word {
    position: absolute;
    right: -18px;
    bottom: -48px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.018);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 230px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media only screen and (max-height: 830px) and (min-width: 992px) {

    .wearch-projects {
        padding-top: 36px;
    }

    .projects-featured-screen {
        min-height: auto;
        padding-bottom: 25px;
    }

    .projects-header {
        margin-bottom: 22px;
    }

    .projects-title {
        font-size: clamp(35px, 3.2vw, 47px);
    }

    .projects-description {
        font-size: 15px;
        line-height: 1.62;
    }

    .featured-project-image {
        height: 350px;
    }

    .featured-project-overlay {
        padding: 30px;
    }

    .featured-project-overlay h3 {
        font-size: 34px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-projects {
        padding: 76px 0;
    }

    .projects-featured-screen {
        display: block;
        min-height: 0;
        padding: 0;
    }

    .projects-title span {
        padding-left: 24px;
    }

    .projects-description {
        max-width: 650px;
        margin: 22px 0 0;
    }

    .featured-project-image {
        height: 480px;
    }

    .project-grid {
        gap: 18px;
    }

    .project-card,
    .project-card:nth-child(3n + 1),
    .project-card:nth-child(3n + 2),
    .project-card:nth-child(3n + 3) {
        height: 350px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .wearch-projects {
        padding: 64px 0;
    }

    .projects-header {
        margin-bottom: 28px;
    }

    .projects-title {
        font-size: clamp(35px, 9.3vw, 47px);
    }

    .projects-title span {
        padding-left: 0;
    }

    .projects-description {
        padding-left: 14px;
        font-size: 15px;
    }

    .featured-project-image {
        height: 390px;
        border-radius: 4px 23px 4px 23px;
    }

    .featured-project-image::after {
        inset: 11px;
    }

    .featured-project-overlay {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
        gap: 18px;
        padding: 25px;
    }

    .featured-project-overlay>div:first-child {
        padding-left: 14px;
    }

    .featured-project-overlay h3 {
        font-size: 28px;
    }

    .featured-arrow {
        width: 50px;
        height: 50px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-card,
    .project-card:nth-child(3n + 1),
    .project-card:nth-child(3n + 2),
    .project-card:nth-child(3n + 3) {
        height: 360px;
    }

    .projects-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .projects-background-word {
        right: -10px;
        bottom: -20px;
        font-size: 105px;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media only screen and (max-width: 480px) {

    .featured-project-image {
        height: 340px;
    }

    .featured-project-overlay {
        padding: 20px;
    }

    .featured-project-overlay h3 {
        font-size: 25px;
    }

    .featured-arrow {
        width: 46px;
        height: 46px;
    }

    .project-card,
    .project-card:nth-child(3n + 1),
    .project-card:nth-child(3n + 2),
    .project-card:nth-child(3n + 3) {
        height: 320px;
    }

    .project-overlay {
        right: 19px;
        bottom: 19px;
        left: 19px;
    }

    .project-overlay h4 {
        font-size: 23px;
    }

    .projects-background-word {
        font-size: 78px;
    }
}

/* ==========================================================
   WEARCH CLIENT STORIES — PREMIUM EDITORIAL SLIDER
========================================================== */

.wearch-voices {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 36px 0 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 14%,
            rgba(200, 149, 69, 0.11),
            transparent 28%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 52%,
            #171717 100%);
    isolation: isolate;
}

.wearch-voices::before {
    content: none;
}

.wearch-voices::after {
    content: none;
}

.wearch-voices>.container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ==========================================================
   HEADER
========================================================== */

.wearch-voices-header {
    margin-bottom: 48px;
}

.wearch-voices-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.wearch-voices-eyebrow span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.wearch-voices-eyebrow i {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wearch-gold);
}

.wearch-voices-eyebrow p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.wearch-voices-heading {
    max-width: 850px;
    margin: 0;
    /* color: #ffffff; */
    color: var(--wearch-gold-light, #c89545);
    font-family: var(--heading-font);
    font-size: clamp(37px, 3.45vw, 51px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.wearch-voices-heading span {
    display: block;
    margin-top: 3px;
    padding-left: 43px;
    color: var(--wearch-gold-light);
    color: var(--wearch-gold-light, #c89545);

    font-weight: 500;
}

.wearch-voices-intro {
    max-width: 390px;
    margin: 0 0 3px auto;
    padding-left: 18px;
    border-left: 1px solid rgba(223, 182, 108, 0.48);
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.72;
}

/* ==========================================================
   SWIPER
========================================================== */

.wearch-voices-slider {
    position: relative;
    z-index: 3;
}

.wearch-voices-swiper {
    overflow: hidden;
}

.wearch-voices-swiper .swiper-slide {
    height: auto;
}

/* ==========================================================
   CLIENT STORY
========================================================== */

.wearch-voice-story {
    display: grid;
    grid-template-columns: minmax(220px, 30%) minmax(0, 70%);
    align-items: stretch;
    min-height: 320px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
}

/* ==========================================================
   CLIENT PANEL & IDENTITY
========================================================== */

.wearch-voice-client {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 32px 32px 32px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.wearch-voice-photo {
    position: relative;
    width: 120px;
    height: 138px;
    aspect-ratio: 1 / 1.15;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #141414;
    border: 1px solid rgba(200, 149, 69, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wearch-voice-photo::after {
    content: none;
}

.wearch-voice-photo>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.wearch-voice-story:hover .wearch-voice-photo>img {
    transform: scale(1.05);
}

.wearch-voice-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #141414;
}

.wearch-voice-photo-placeholder i,
.wearch-voice-photo-placeholder span,
.wearch-voice-index {
    display: none;
}

.wearch-voice-client-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.wearch-voice-client-details h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(26px, 2.2vw, 30px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.wearch-voice-client-details>p {
    margin: 0;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wearch-voice-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.wearch-voice-rating i {
    color: var(--wearch-gold);
    font-size: 13px;
}

/* ==========================================================
   STORY CONTENT / REVIEW
========================================================== */

.wearch-voice-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 32px 0 32px 48px;
}

.wearch-voice-project {
    display: block;
    margin-bottom: 12px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wearch-voice-content h4 {
    max-width: 680px;
    margin: 0 0 16px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(26px, 2.3vw, 34px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.wearch-voice-content h4 span {
    color: var(--wearch-gold-light);
}

.wearch-voice-content>p {
    max-width: 640px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================================
   READ BUTTON
========================================================== */

.wearch-voice-read {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(223, 182, 108, 0.35);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        gap 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.wearch-voice-read i {
    color: var(--wearch-gold-light);
    font-size: 9px;
    transition: transform 0.3s ease;
}

.wearch-voice-read:hover {
    gap: 12px;
    border-color: var(--wearch-gold);
    color: #ffffff;
}

.wearch-voice-read:hover i {
    transform: translateX(3px);
}

/* ==========================================================
   SLIDER CONTROLS
========================================================== */

.wearch-voices-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
}

.wearch-voices-pagination {
    position: relative !important;
    inset: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto !important;
}

.wearch-voices-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 !important;
    border: 1px solid rgba(223, 182, 108, 0.4);
    background: transparent;
    opacity: 1;
    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.wearch-voices-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 10px;
    background: var(--wearch-gold);
    border-color: var(--wearch-gold);
}

.wearch-voices-prev,
.wearch-voices-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.wearch-voices-prev i,
.wearch-voices-next i {
    color: currentColor;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.wearch-voices-prev:hover {
    border-color: var(--wearch-gold);
    color: var(--wearch-gold);
}

.wearch-voices-prev:hover i {
    transform: translateX(-2px);
}

.wearch-voices-next:hover {
    border-color: var(--wearch-gold);
    color: var(--wearch-gold);
}

.wearch-voices-next:hover i {
    transform: translateX(2px);
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.wearch-voices-background {
    position: absolute;
    right: -15px;
    bottom: -40px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.017);
    font-family: var(--heading-font);
    font-size: clamp(110px, 15vw, 230px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.04em;
    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   SHORT LAPTOP
========================================================== */

@media only screen and (max-height: 830px) and (min-width: 992px) {

    .wearch-voices {
        min-height: auto;
        padding: 33px 0 29px;
    }

    .wearch-voices-header {
        margin-bottom: 21px;
    }

    .wearch-voice-story {
        min-height: 320px;
    }

    .wearch-voice-photo {
        width: 90px;
        height: 90px;
    }

    .wearch-voice-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .wearch-voice-content h4 {
        font-size: 30px;
    }

    .wearch-voice-content>p {
        font-size: 14px;
        line-height: 1.68;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-voices {
        display: block;
        min-height: 0;
        padding: 76px 0;
    }

    .wearch-voices-heading span {
        padding-left: 24px;
    }

    .wearch-voices-intro {
        max-width: 650px;
        margin: 22px 0 0;
    }

    .wearch-voice-story {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .wearch-voice-client {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .wearch-voice-photo {
        width: 82px;
        height: 82px;
    }

    .wearch-voice-content {
        padding: 24px 0 0;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .wearch-voices {
        padding: 48px 0 36px;
    }

    .wearch-voices-heading {
        font-size: clamp(32px, 8vw, 42px);
    }

    .wearch-voices-heading span {
        padding-left: 0;
    }

    .wearch-voices-intro {
        padding-left: 14px;
        font-size: 14px;
        line-height: 1.6;
    }

    .wearch-voice-client {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 0;
    }

    .wearch-voice-photo {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }

    .wearch-voice-client-details h3 {
        font-size: 20px;
    }

    .wearch-voice-client-details>p {
        margin-bottom: 8px;
    }

    .wearch-voice-content {
        padding: 20px 0 0;
    }

    .wearch-voice-content h4 {
        font-size: 23px;
        margin-bottom: 12px;
    }

    .wearch-voice-content>p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .wearch-voices-navigation {
        margin-top: 28px;
        gap: 16px;
    }

    .wearch-voices-prev,
    .wearch-voices-next {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(223, 182, 108, 0.32);
    }

    .wearch-voices-background {
        display: none;
    }
}

@media only screen and (max-width: 480px) {

    .wearch-voice-client {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
    }

    .wearch-voice-photo {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }

    .wearch-voice-client-details h3 {
        font-size: 19px;
    }

    .wearch-voice-client-details>p {
        font-size: 8px;
    }

    .wearch-voice-content h4 {
        font-size: 24px;
    }

    .wearch-voices-background {
        font-size: 72px;
    }
}

html.testimonial-modal-open,
body.testimonial-modal-open {
    overflow: hidden !important;
}

/* ==========================================================
   TESTIMONIAL MODAL — COMPLETE FIX
========================================================== */

html.testimonial-modal-open,
body.testimonial-modal-open {
    overflow: hidden !important;
}

/* Hidden modal */
.testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    padding: 24px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

/* Open modal */
.testimonial-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Overlay */
.testimonial-modal-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(48, 37, 19, 0.35) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

/* Dialog */
.testimonial-modal-dialog {
    position: relative;
    z-index: 2;

    width: min(860px, 94vw);
    max-height: min(640px, 88vh);
    padding: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    border: 1px solid rgba(200, 149, 69, 0.22) !important;
    border-radius: 20px;

    background: #F7F5F2 !important;
    background-color: #F7F5F2 !important;

    box-shadow: 0 20px 55px rgba(48, 37, 19, 0.16) !important;

    transform: translateY(22px) scale(0.98);

    transition: transform 0.4s ease;
}

.testimonial-modal.active .testimonial-modal-dialog {
    transform: translateY(0) scale(1);
}

/* Close button */
.testimonial-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 40px;
    height: 40px;
    padding: 0;

    border: 1px solid rgba(200, 149, 69, 0.40) !important;
    border-radius: 50% !important;

    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    color: #302513 !important;
    outline: none !important;
    box-shadow: 0 3px 10px rgba(48, 37, 19, 0.08) !important;

    font-size: 14px;
    cursor: pointer;
    line-height: 1 !important;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease !important;
}

.testimonial-modal-close:hover {
    border-color: #C89545 !important;
    background: #C89545 !important;
    background-color: #C89545 !important;
    color: #FFFFFF !important;
    outline: none !important;
    transform: none !important;
    box-shadow: 0 4px 12px rgba(200, 149, 69, 0.25) !important;
}

.testimonial-modal-close:focus,
.testimonial-modal-close:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200, 149, 69, 0.18) !important;
}

/* Two-column layout container */
.testimonial-modal-body {
    display: flex;
    gap: 32px;
    align-items: stretch;
    width: 100%;
    height: 100%;
    min-height: 0;
}

/* Left Column: Client Photograph (42%) */
.testimonial-modal-media {
    flex: 0 0 42%;
    width: 42%;
    height: 100%;
    min-height: 520px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    overflow: hidden;
    border-radius: 14px;
}

.testimonial-modal-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: inherit;
}

/* Right Column: Content (58%) */
.testimonial-modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    padding-right: 8px;
}

/* Rating */
.testimonial-modal-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.testimonial-modal-rating i {
    color: #C89545 !important;
    font-size: 11px;
}

/* Label */
.testimonial-modal-label {
    display: block;
    margin-bottom: 8px;

    color: #C89545 !important;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Client name */
.testimonial-modal-content h3 {
    margin: 0 35px 16px 0;

    color: #302513 !important;
    font-family: var(--heading-font);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

/* Testimonial text scroll container */
.testimonial-modal-text {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 16px;
}

.testimonial-modal-text p {
    margin: 0 0 14px;

    color: #5C5243 !important;
    font-family: var(--body-font);
    font-size: 14.5px;
    line-height: 1.75;
}

.testimonial-modal-text p:last-of-type {
    margin-bottom: 0;
}

/* Text Scrollbar */
.testimonial-modal-text::-webkit-scrollbar {
    width: 5px;
}

.testimonial-modal-text::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial-modal-text::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #C89545 !important;
}

.testimonial-modal-text::-webkit-scrollbar-thumb:hover {
    background: #A77A3B !important;
}

/* Author */
.testimonial-modal-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;

    margin-top: auto;
    padding-top: 16px;

    border-top: 1px solid rgba(132, 109, 85, 0.14) !important;
}

.testimonial-modal-author>span {
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;

    color: #846D55 !important;
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.testimonial-modal-author strong {
    display: block;
    margin-bottom: 2px;

    color: #302513 !important;
    font-family: var(--heading-font);
    font-size: 19px;
    font-weight: 500;
}

/* Modal scrollbar */
.testimonial-modal-dialog::-webkit-scrollbar {
    width: 6px;
}

.testimonial-modal-dialog::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial-modal-dialog::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #C89545 !important;
}

.testimonial-modal-dialog::-webkit-scrollbar-thumb:hover {
    background: #A77A3B !important;
}

/* ==========================================================
   MODAL RESPONSIVE
========================================================== */

@media only screen and (max-width: 767px) {

    .testimonial-modal {
        align-items: center;
        padding: 16px;
    }

    .testimonial-modal-dialog {
        width: 100% !important;
        max-height: 88vh !important;
        padding: 28px 20px 22px !important;
        overflow-y: auto !important;

        border-radius: 18px !important;

        transform: translateY(28px);
    }

    .testimonial-modal.active .testimonial-modal-dialog {
        transform: translateY(0);
    }

    .testimonial-modal-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .testimonial-modal-body {
        flex-direction: column;
        gap: 20px;
        height: auto;
    }

    .testimonial-modal-media {
        flex: none !important;
        width: 100% !important;
        height: 180px !important;
        max-height: 180px !important;
        min-height: 180px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }

    .testimonial-modal-media img {
        width: 100% !important;
        height: 180px !important;
        max-height: 180px !important;
        min-height: 180px !important;
        object-fit: cover !important;
        object-position: center center !important;
        border-radius: inherit !important;
    }

    .testimonial-modal-content {
        padding-right: 0;
    }

    .testimonial-modal-content h3 {
        margin-right: 35px;
        font-size: 24px;
    }

    .testimonial-modal-text {
        overflow-y: visible;
        max-height: none;
        padding-right: 0;
    }

    .testimonial-modal-text p,
    .modal .testimonial-modal-text p,
    div.testimonial-modal-text p,
    .testimonial-modal p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: left !important;
        direction: ltr !important;
    }

}

/* ==========================================================
   WEARCH FAQ
========================================================== */

/* ==========================================================
   WEARCH FAQ
========================================================== */

.wearch-faq {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 32px 0;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 88% 12%,
            rgba(200, 149, 69, .11),
            transparent 30%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 55%,
            #171717 100%);
    isolation: isolate;
}

.wearch-faq::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 90px 90px;
}

.wearch-faq::after {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(200, 149, 69, .10);
    border-radius: 50%;
    z-index: -1;
}

/*======================*/

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: center;
}

/*======================*/

.faq-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.faq-eyebrow span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-eyebrow i {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wearch-gold);
}

.faq-eyebrow p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.faq-heading {
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(36px, 3.2vw, 46px);
    line-height: 1.08;
}

.faq-heading span {
    display: block;
    margin-top: 4px;
    color: var(--wearch-gold-light);
}

.faq-description {
    max-width: 350px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.7;
}

/*======================*/

.faq-contact-box {
    margin-top: 24px;
    padding: 0;
    border-left: 0;
    background: transparent;
    backdrop-filter: none;
}

.faq-contact-box small {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.faq-contact-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 4px;
    border-bottom: 1px solid rgba(223, 182, 108, 0.4);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: gap .35s ease, border-color .35s ease, color .35s ease;
}

.faq-contact-box a i {
    color: var(--wearch-gold-light);
    font-size: 9px;
    transition: transform .35s ease;
}

.faq-contact-box a:hover {
    color: var(--wearch-gold-light);
    border-color: var(--wearch-gold);
    gap: 14px;
}

.faq-contact-box a:hover i {
    transform: translateX(3px);
}

/*======================*/

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-question {
    width: 100%;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    width: 88%;
    font-size: 18px;
    font-family: var(--heading-font);
    line-height: 1.3;
}

.faq-question i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 149, 69, .35);
    border-radius: 50%;
    color: var(--wearch-gold-light);
    font-size: 11px;
    transition: .35s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--wearch-gold);
    color: #111;
}

/*======================*/

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-answer p {
    padding: 0 30px 14px 0;
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

/*======================*/

.faq-background-word {
    position: absolute;
    right: -10px;
    bottom: -30px;
    z-index: -1;
    color: rgba(255, 255, 255, .018);
    font-size: clamp(140px, 18vw, 280px);
    font-weight: 800;
    line-height: .8;
    letter-spacing: -.05em;
    user-select: none;
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media (max-height: 830px) and (min-width: 992px) {
    .wearch-faq {
        min-height: calc(100vh - var(--wearch-header-height, 98px));
        min-height: calc(100svh - var(--wearch-header-height, 98px));
        padding: 24px 0;
    }

    .faq-layout {
        gap: 44px;
    }

    .faq-heading {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .faq-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .faq-contact-box {
        margin-top: 18px;
    }

    .faq-question {
        padding: 13px 0;
    }

    .faq-question span {
        font-size: 17px;
    }

    .faq-question i {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    .faq-answer p {
        padding-bottom: 12px;
        font-size: 13px;
        line-height: 1.6;
    }
}

/*======================*/

@media (max-width: 991px) {
    .wearch-faq {
        min-height: auto;
        padding: 64px 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-description {
        max-width: 650px;
    }
}

@media (max-width: 767px) {
    .wearch-faq {
        min-height: auto;
        padding: 60px 0;
    }

    .faq-heading {
        font-size: 36px;
    }

    .faq-question span {
        font-size: 17px;
    }

    .faq-answer p {
        padding-right: 0;
        font-size: 14px;
    }

    .faq-contact-box {
        margin-top: 22px;
    }

    .faq-background-word {
        display: none;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 15px 0;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-question i {
        width: 34px;
        height: 34px;
    }
}

/* ==========================================================
   WEARCH BUILD SECTION
========================================================== */

/* ==========================================================
   WEARCH BUILD SECTION
========================================================== */

.wearch-build {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--wearch-header-height, 98px));
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 32px 0;
    overflow: hidden;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 88% 12%,
            rgba(200, 149, 69, .10),
            transparent 30%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 55%,
            #171717 100%);
    isolation: isolate;
}

.wearch-build::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 90px 90px;
}

.wearch-build::after {
    content: "";
    position: absolute;
    left: -220px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(200, 149, 69, .10);
    border-radius: 50%;
    z-index: -1;
}

/*================================================*/

.build-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 48px;
    align-items: center;
}

/*================================================*/

.build-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.build-eyebrow span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.build-eyebrow i {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wearch-gold);
}

.build-eyebrow p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

/*================================================*/

.build-heading {
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(37px, 3.3vw, 51px);
    line-height: 1.08;
}

.build-heading span {
    display: block;
    margin-top: 4px;
    color: var(--wearch-gold-light);
}

/*================================================*/

.build-highlight {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 20px;
}

.build-highlight span {
    padding: 6px 14px;
    border: 1px solid rgba(200, 149, 69, .22);
    border-radius: 50px;
    background: rgba(255, 255, 255, .03);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/*================================================*/

.build-description {
    max-width: 720px;
}

.build-description p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.68;
}

.build-description p:last-child {
    margin-bottom: 0;
}

/*================================================*/

.build-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    margin-top: 24px;
}

.build-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.build-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(200, 149, 69, .12);
    border: 1px solid rgba(200, 149, 69, .25);
    color: var(--wearch-gold-light);
    font-size: 10px;
    flex-shrink: 0;
}

.build-feature span:last-child {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/*================================================*/

/* ==========================================================
   BUILD VISUAL
========================================================== */

.build-side {
    position: relative;
    min-width: 0;
}

.build-visual {
    position: relative;
    height: clamp(590px, 44vw, 620px);
    aspect-ratio: 4 / 5;
    min-height: 0;
    overflow: hidden;
    border-radius: 24px 6px 24px 6px;
    background: #151515;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(200, 149, 69, 0.08);
}

.build-main-image {
    position: absolute;
    inset: 0;
    margin: 0;
}

.build-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.04);
    transition:
        transform 0.9s ease,
        filter 0.9s ease;
}

.build-visual:hover .build-main-image img {
    transform: scale(1.045);
    filter: saturate(0.96) contrast(1.05);
}

.build-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.22) 0%,
            transparent 36%,
            rgba(5, 5, 5, 0.94) 100%),
        linear-gradient(90deg,
            rgba(5, 5, 5, 0.42),
            transparent 64%);
    pointer-events: none;
}

/* Top categories */

.build-image-top {
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.build-image-top span {
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.build-image-top i {
    display: block;
    width: 12px;
    height: 1px;
    background: var(--wearch-gold);
}

/* Floating content */

.build-visual-cta {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    padding: 20px 22px;
    border: 1px solid rgba(223, 182, 108, 0.24);
    border-radius: 16px 4px 16px 4px;
    background: rgba(9, 9, 9, 0.78);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(15px);
}

.build-visual-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg,
            var(--wearch-gold),
            transparent);
}

.build-visual-label {
    display: block;
    margin-bottom: 8px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.build-visual-cta h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.build-visual-cta h3 span {
    display: block;
    color: var(--wearch-gold-light);
}

.build-visual-cta p {
    max-width: 500px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.6;
}

/* Small image label */

.build-image-number {
    position: absolute;
    top: 52px;
    right: 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid rgba(223, 182, 108, 0.25);
    border-radius: 12px 3px 12px 3px;
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(10px);
}

.build-image-number span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.build-image-number small {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==========================================================
   BUTTON
========================================================== */

.build-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 5px 5px 15px;
    overflow: hidden;
    border: 1px solid rgba(223, 182, 108, 0.48);
    border-radius: 14px 4px 14px 4px;
    background: transparent;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    isolation: isolate;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.build-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--wearch-gold);
    clip-path: circle(0 at 88% 50%);
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.build-btn:hover::before {
    clip-path: circle(145% at 88% 50%);
}

.build-btn:hover {
    color: #111111;
    transform: translateY(-2px);
}

.build-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wearch-gold);
    color: #111111;
}

.build-btn-icon i {
    font-size: 8px;
    transition: transform 0.35s ease;
}

.build-btn:hover .build-btn-icon i {
    transform: translateX(3px);
}

.build-background-word {
    position: absolute;
    right: -15px;
    bottom: -35px;
    z-index: -1;
    color: rgba(255, 255, 255, .018);
    font-size: clamp(150px, 18vw, 300px);
    font-weight: 800;
    line-height: .8;
    letter-spacing: -.05em;
    user-select: none;
}

/* ==========================================================
   SHORT DESKTOP SCREENS
========================================================== */

@media (max-height: 830px) and (min-width: 992px) {
    .wearch-build {
        min-height: calc(100vh - var(--wearch-header-height, 98px));
        min-height: calc(100svh - var(--wearch-header-height, 98px));
        padding: 24px 0;
    }

    .build-layout {
        gap: 36px;
    }

    .build-heading {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .build-highlight {
        margin-bottom: 14px;
        gap: 8px;
    }

    .build-highlight span {
        padding: 4px 11px;
        font-size: 11px;
    }

    .build-description p {
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 1.6;
    }

    .build-features {
        margin-top: 16px;
        gap: 8px 14px;
    }

    .build-feature-icon {
        width: 30px;
        height: 30px;
        font-size: 9px;
    }

    .build-feature span:last-child {
        font-size: 13px;
    }

    .build-visual {
        height: clamp(480px, 60vh, 540px);
        aspect-ratio: auto;
    }

    .build-visual-cta {
        padding: 16px 18px;
        bottom: 16px;
        left: 16px;
        right: 16px;
    }

    .build-visual-cta h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .build-visual-cta p {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/*================================================*/

@media (max-width: 991px) {
    .wearch-build {
        min-height: auto;
        padding: 64px 0;
    }

    .build-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .build-visual {
        height: clamp(400px, 50vh, 480px);
        aspect-ratio: auto;
    }
}

@media (max-width: 767px) {
    .wearch-build {
        padding: 60px 0;
    }

    .build-heading {
        font-size: 34px;
    }

    .build-highlight {
        gap: 8px;
    }

    .build-highlight span {
        font-size: 11px;
        padding: 5px 12px;
    }

    .build-description p {
        font-size: 14px;
        line-height: 1.65;
    }

    .build-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .build-visual {
        height: clamp(380px, 45vh, 440px);
        aspect-ratio: auto;
    }

    .build-visual-cta {
        padding: 18px 16px;
    }

    .build-visual-cta h3 {
        font-size: 24px;
    }

    .build-background-word {
        display: none;
    }
}

@media (max-width: 480px) {
    .build-heading {
        font-size: 30px;
    }

    .build-visual {
        height: clamp(380px, 50vh, 420px);
        aspect-ratio: auto;
    }

    .build-visual-cta h3 {
        font-size: 20px;
    }

    .build-feature span:last-child {
        font-size: 13px;
    }
}

/* ==========================================================
   WEARCH — START YOUR PROJECT CTA
   COMPACT PREMIUM VERSION
========================================================== */

.wearch-contact-cta {
    position: relative;
    display: flex;
    align-items: center;

    min-height: calc(80vh - var(--wearch-header-height, 98px));
    min-height: calc(80svh - var(--wearch-header-height, 98px));

    padding: 48px 0;
    overflow: hidden;
    box-sizing: border-box;

    background:
        radial-gradient(circle at 84% 18%,
            rgba(200, 149, 69, 0.11),
            transparent 28%),
        linear-gradient(135deg,
            #080808 0%,
            #101010 50%,
            #171717 100%);

    isolation: isolate;
}

/* Architectural grid */

.wearch-contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.18;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px);

    background-size: 100px 100px;
}

/* Decorative circle */

.wearch-contact-cta::after {
    content: "";
    position: absolute;
    top: -220px;
    left: -205px;
    z-index: -1;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(200, 149, 69, 0.1);
    border-radius: 50%;
}

.wearch-contact-cta>.container {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   MAIN LAYOUT
========================================================== */

.contact-cta-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr) minmax(320px, 0.8fr);

    gap: 60px;
    align-items: center;
}

/* ==========================================================
   EYEBROW
========================================================== */

.contact-cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 14px;
}

.contact-cta-eyebrow>span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.contact-cta-eyebrow>i {
    display: block;

    width: 42px;
    height: 1px;

    background: var(--wearch-gold);
}

.contact-cta-eyebrow>p {
    margin: 0;

    color: rgba(255, 255, 255, 0.54);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ==========================================================
   MAIN CONTENT
========================================================== */

.contact-cta-heading {
    max-width: 720px;

    margin: 0 0 16px;

    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(36px, 3.8vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.contact-cta-heading span {
    display: block;

    margin-top: 4px;
    padding-left: clamp(0px, 3.5vw, 48px);

    color: var(--wearch-gold-light);
    font-weight: 500;
}

.contact-cta-description {
    max-width: 580px;

    margin: 0 0 28px;
    padding-left: 16px;

    border-left: 1px solid rgba(223, 182, 108, 0.4);

    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.7;
}

/* ==========================================================
   MAIN BUTTON
========================================================== */

.contact-cta-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 7px 7px 7px 20px;
    overflow: hidden;

    border: 1px solid rgba(223, 182, 108, 0.5);
    border-radius: 17px 4px 17px 4px;

    background: transparent;
    color: #ffffff;

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    isolation: isolate;

    transition:
        color 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease;
}

.contact-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background: var(--wearch-gold);

    clip-path: circle(0 at 88% 50%);

    transition:
        clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.contact-cta-btn:hover::before {
    clip-path: circle(145% at 88% 50%);
}

.contact-cta-btn:hover {
    border-color: var(--wearch-gold);
    color: #111111;
    transform: translateY(-3px);
}

.contact-cta-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: var(--wearch-gold);
    color: #111111;
}

.contact-cta-btn-icon i {
    font-size: 9px;

    transition: transform 0.35s ease;
}

.contact-cta-btn:hover .contact-cta-btn-icon i {
    transform: rotate(45deg);
}

/* ==========================================================
   CONTACT DETAILS
========================================================== */

.contact-cta-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-item {
    position: relative;

    display: grid;

    grid-template-columns:
        40px minmax(0, 1fr) 28px;

    gap: 14px;
    align-items: center;

    min-height: 72px;
    padding: 10px 4px;

    overflow: hidden;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    isolation: isolate;

    transition:
        padding 0.4s ease,
        border-color 0.4s ease;
}

.contact-cta-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    border-radius: 15px 4px 15px 4px;

    background:
        linear-gradient(90deg,
            rgba(200, 149, 69, 0.15),
            rgba(200, 149, 69, 0.025));

    transform: translateX(-102%);

    transition:
        transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.contact-cta-item:hover::before {
    transform: translateX(0);
}

.contact-cta-item:hover {
    padding-right: 13px;
    padding-left: 13px;

    border-color: rgba(200, 149, 69, 0.34);
}

/* Icon */

.contact-cta-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(223, 182, 108, 0.34);
    border-radius: 50%;

    color: var(--wearch-gold-light);
    font-size: 11px;

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease;
}

.contact-cta-item:hover .contact-cta-item-icon {
    border-color: var(--wearch-gold);
    background: var(--wearch-gold);
    color: #111111;
}

/* Copy */

.contact-cta-item-copy {
    min-width: 0;
}

.contact-cta-item-copy small {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.43);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-cta-item-copy strong {
    display: block;

    overflow-wrap: anywhere;

    color: #ffffff;
    font-family: var(--body-font), "Inter", sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    line-height: 1.25;
}

/* Arrow */

.contact-item-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid rgba(223, 182, 108, 0.3);
    border-radius: 50%;

    color: var(--wearch-gold-light);
    font-size: 8px;

    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease;
}

.contact-cta-item:hover .contact-item-arrow {
    background: var(--wearch-gold);
    color: #111111;
    transform: rotate(-45deg);
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.contact-cta-background-word {
    position: absolute;
    right: -18px;
    bottom: -40px;
    z-index: -1;

    color: rgba(255, 255, 255, 0.015);

    font-family: var(--heading-font);
    font-size: clamp(105px, 14vw, 220px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.02em;

    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   SHORT DESKTOP
========================================================== */

@media only screen and (max-height: 830px) and (min-width: 992px) {

    .wearch-contact-cta {
        min-height: auto;
        padding: 32px 0;
    }

    .contact-cta-layout {
        gap: 58px;
    }

    .contact-cta-heading {
        font-size: clamp(34px, 3.7vw, 52px);
    }

    .contact-cta-description {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.68;
    }

    .contact-cta-item {
        min-height: 74px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .contact-cta-item-copy strong {
        font-size: clamp(13px, 0.95vw, 15px);
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-contact-cta {
        display: block;
        min-height: auto;
        padding: 70px 0;
    }

    .contact-cta-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-cta-content,
    .contact-cta-details {
        max-width: 760px;
    }

    .contact-cta-heading span {
        padding-left: 22px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .wearch-contact-cta {
        padding: 60px 0;
    }

    .contact-cta-heading {
        font-size: clamp(34px, 9vw, 44px);
    }

    .contact-cta-heading span {
        padding-left: 0;
    }

    .contact-cta-description {
        padding-left: 14px;
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-cta-item {
        grid-template-columns:
            41px minmax(0, 1fr) 29px;

        gap: 12px;
        min-height: 78px;
    }

    .contact-cta-item-icon {
        width: 38px;
        height: 38px;
        font-size: 10px;
    }

    .contact-cta-item-copy strong {
        font-size: 14px;
    }

    .contact-item-arrow {
        width: 28px;
        height: 28px;
    }

    .contact-cta-background-word {
        right: -10px;
        bottom: -12px;
        font-size: 82px;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media only screen and (max-width: 480px) {

    .contact-cta-layout {
        gap: 40px;
    }

    .contact-cta-heading {
        font-size: 31px;
    }

    .contact-cta-btn {
        width: 100%;
        justify-content: space-between;
    }

    .contact-cta-item {
        grid-template-columns:
            38px minmax(0, 1fr);

        min-height: 74px;
    }

    .contact-cta-item-icon {
        width: 36px;
        height: 36px;
    }

    .contact-item-arrow {
        display: none;
    }

    .contact-cta-item-copy strong {
        font-size: 13px;
    }

    .contact-cta-background-word {
        font-size: 64px;
    }
}

/* ==========================================================
   WEARCH LOCATION SECTION
========================================================== */

.wearch-location {
    position: relative;
    padding: 62px 0 70px;
    overflow: hidden;
    box-sizing: border-box;

    background:
        radial-gradient(circle at 88% 15%,
            rgba(200, 149, 69, 0.1),
            transparent 28%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 52%,
            #171717 100%);

    isolation: isolate;
}

.wearch-location::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.16;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px);

    background-size: 100px 100px;
}

.wearch-location::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -220px;
    z-index: -1;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(200, 149, 69, 0.1);
    border-radius: 50%;
}

.wearch-location>.container {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   HEADER
========================================================== */

.location-header {
    margin-bottom: 32px;
}

.location-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.location-eyebrow>span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.location-eyebrow>i {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--wearch-gold);
}

.location-eyebrow>p {
    margin: 0;

    color: rgba(255, 255, 255, 0.54);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.location-heading {
    max-width: 840px;
    margin: 0;

    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(37px, 3.7vw, 53px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.location-heading span {
    display: block;
    margin-top: 4px;
    padding-left: 42px;

    color: var(--wearch-gold-light);
    font-weight: 500;
}

.location-description {
    max-width: 390px;
    margin: 0 0 3px auto;
    padding-left: 18px;

    border-left: 1px solid rgba(223, 182, 108, 0.47);

    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.72;
}

/* ==========================================================
   MAP LAYOUT
========================================================== */

.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
    gap: 24px;
    align-items: stretch;
}

.location-map {
    position: relative;
    min-height: 430px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px 6px 28px 6px;

    background: #151515;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.location-map::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 1px solid rgba(223, 182, 108, 0.08);
    border-radius: inherit;

    pointer-events: none;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;

    border: 0;

    filter:
        grayscale(0.7) invert(0.9) contrast(0.88) sepia(0.15);
}

/* ==========================================================
   LOCATION DETAILS
========================================================== */

.location-details {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 28px 26px;

    border: 1px solid rgba(200, 149, 69, 0.16);
    border-radius: 6px 26px 6px 26px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.018));

    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(12px);
}

.location-detail-item {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 14px;
    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.location-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(223, 182, 108, 0.34);
    border-radius: 50%;

    color: var(--wearch-gold-light);
    font-size: 11px;
}

.location-detail-item small {
    display: block;
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.42);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-detail-item strong,
.location-detail-item a {
    display: block;

    overflow-wrap: anywhere;

    color: #ffffff;
    font-family: var(--body-font), "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.28;

    transition: color 0.3s ease;
}

.location-detail-item a:hover {
    color: var(--wearch-gold-light);
}

/* ==========================================================
   DIRECTION BUTTON
========================================================== */

.location-direction-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-top: 25px;
    padding: 7px 7px 7px 19px;
    overflow: hidden;

    border: 1px solid rgba(223, 182, 108, 0.48);
    border-radius: 17px 4px 17px 4px;

    color: #ffffff;
    background: transparent;

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    isolation: isolate;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.location-direction-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background: var(--wearch-gold);

    clip-path: circle(0 at 88% 50%);

    transition:
        clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.location-direction-btn:hover::before {
    clip-path: circle(145% at 88% 50%);
}

.location-direction-btn:hover {
    color: #111111;
    transform: translateY(-3px);
}

.location-direction-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 50%;

    background: var(--wearch-gold);
    color: #111111;
}

.location-direction-icon i {
    font-size: 9px;
    transition: transform 0.35s ease;
}

.location-direction-btn:hover .location-direction-icon i {
    transform: rotate(45deg);
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.location-background-word {
    position: absolute;
    right: -12px;
    bottom: -38px;
    z-index: -1;

    color: rgba(255, 255, 255, 0.016);

    font-family: var(--heading-font);
    font-size: clamp(105px, 15vw, 230px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.03em;

    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-location {
        padding: 72px 0;
    }

    .location-heading span {
        padding-left: 22px;
    }

    .location-description {
        max-width: 650px;
        margin: 22px 0 0;
    }

    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-map,
    .location-map iframe {
        min-height: 420px;
    }

    .location-details {
        max-width: 760px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .wearch-location {
        padding: 62px 0;
    }

    .location-heading {
        font-size: clamp(34px, 9vw, 45px);
    }

    .location-heading span {
        padding-left: 0;
    }

    .location-description {
        padding-left: 14px;
        font-size: 14px;
    }

    .location-map,
    .location-map iframe {
        min-height: 350px;
    }

    .location-details {
        padding: 23px 20px;
    }

    .location-detail-item {
        padding: 17px 0;
    }

    .location-detail-item strong,
    .location-detail-item a {
        font-size: 14px;
    }

    .location-background-word {
        right: -8px;
        bottom: -12px;
        font-size: 82px;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media only screen and (max-width: 480px) {

    .location-map,
    .location-map iframe {
        min-height: 300px;
    }

    .location-details {
        padding: 20px 17px;
    }

    .location-detail-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 11px;
    }

    .location-detail-icon {
        width: 36px;
        height: 36px;
    }

    .location-direction-btn {
        width: 100%;
    }

    .location-background-word {
        font-size: 64px;
    }
}

/* ==========================================================
   WEARCH PREMIUM FOOTER (COMPACT & BALANCED)
========================================================== */

.wearch-footer {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(200, 149, 69, 0.4);
    background:
        radial-gradient(circle at 88% 5%,
            rgba(200, 149, 69, 0.08),
            transparent 26%),
        linear-gradient(145deg,
            #070707 0%,
            #0b0b0b 52%,
            #111111 100%);
    isolation: isolate;
}

.wearch-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px);
    background-size: 100px 100px;
}

.wearch-footer>.container {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   ROW 1 — BRAND
========================================================== */

.wearch-footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wearch-footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.wearch-footer-logo {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.wearch-footer-logo img {
    display: block;
    width: 145px;
    height: auto;
    object-fit: contain;
}

.wearch-footer-brand-line {
    display: block;
    flex: 0 0 1px;
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

.wearch-footer-brand p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.5;
}

.wearch-footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.footer-social-title {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-social-line {
    display: block;
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(223, 182, 108, 0.4);
    border-radius: 50%;
    color: var(--wearch-gold-light);
    font-size: 11px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--wearch-gold);
    color: #111111;
    transform: translateY(-2px);
}

/* ==========================================================
   ROW 2 — MAIN COLUMNS
========================================================== */

.wearch-footer-main-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wearch-footer-column {
    min-width: 0;
    padding: 16px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.wearch-footer-column:first-child {
    padding-left: 0;
}

.wearch-footer-column:last-child {
    padding-right: 0;
    border-right: 0;
}

.footer-column-icon {
    display: none;
}

.wearch-footer-column h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.footer-title-line {
    display: block;
    width: 20px;
    height: 1px;
    margin: 6px 0 8px;
    background: var(--wearch-gold);
}

/* Single vertical list */

.footer-link-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link-list li:last-child {
    border-bottom: 0;
}

.footer-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 1.35;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-link-list a i {
    display: none;
}

.footer-link-list a:hover {
    padding-left: 4px;
    color: var(--wearch-gold-light);
}

/* ==========================================================
   CONTACT COLUMN
========================================================== */

.footer-contact-list {
    width: 100%;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-row:last-child {
    border-bottom: 0;
}

.footer-contact-row-icon {
    display: none;
}

.footer-contact-row small {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 500;
}

.footer-contact-row strong {
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.footer-contact-row:hover strong {
    color: var(--wearch-gold-light);
}

/* ==========================================================
   ROW 3 — OFFICES
========================================================== */

.wearch-footer-offices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-office {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    padding: 14px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.3s ease;
}

.footer-office:first-child {
    padding-left: 0;
}

.footer-office:last-child {
    padding-right: 0;
    border-right: 0;
}

.footer-office:hover {
    background: rgba(200, 149, 69, 0.03);
}

.footer-office-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 1px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.footer-office-divider {
    display: none;
}

.footer-office-icon {
    display: none;
}

.footer-office-content {
    width: 100%;
    min-width: 0;
}

.footer-office-content small {
    display: block;
    margin-bottom: 2px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-office-content h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.15;
}

.footer-office-content p {
    width: 100%;
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--body-font);
    font-size: 10px;
    line-height: 1.35;
    overflow-wrap: normal;
    word-break: normal;
}

/* ==========================================================
   ROW 4 — BOTTOM
========================================================== */

.wearch-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 42px;
    padding: 10px 0;
}

.wearch-footer-bottom p,
.wearch-footer-bottom>a {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--body-font);
    font-size: 10px;
    line-height: 1.35;
}

.wearch-footer-bottom a {
    color: var(--wearch-gold-light);
    transition: color 0.3s ease;
}

.wearch-footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom-divider {
    display: none;
}

.wearch-footer-background-word {
    display: none;
}

/* ==========================================================
   RESPONSIVE FOOTER
========================================================== */

@media only screen and (max-width: 991px) {
    .wearch-footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
    }

    .wearch-footer-social {
        width: 100%;
        justify-content: space-between;
    }

    .wearch-footer-main-row {
        grid-template-columns: 1fr;
    }

    .wearch-footer-column,
    .wearch-footer-column:first-child,
    .wearch-footer-column:last-child {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wearch-footer-column:last-child {
        border-bottom: 0;
    }

    .wearch-footer-offices {
        grid-template-columns: 1fr;
    }

    .footer-office,
    .footer-office:first-child,
    .footer-office:last-child {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-office:last-child {
        border-bottom: 0;
    }

    .wearch-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 16px 0;
    }
}

@media only screen and (max-width: 480px) {
    .wearch-footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .wearch-footer-brand-line {
        display: none;
    }

    .wearch-footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-social-line {
        display: none;
    }
}

/* ==========================================================
   RESPONSIVE LAYOUT CLEANUPS & BUG FIXES
========================================================== */

@media only screen and (max-width: 991px) {

    /* 1. Remove the black part of collapsed mobile navbar after the golden line */
    .wearch-header .slicknav_menu {
        padding: 0 !important;
        background: transparent !important;
        border-top: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    /* Restore open styling when the menu toggle button has the .slicknav_open class */
    .wearch-header .header-sticky:has(.slicknav_btn.slicknav_open) .slicknav_menu {
        padding: 10px 14px 16px !important;
        background: #FCFBF8 !important;
        background-color: #FCFBF8 !important;
        border-top: 1px solid #E6E2D8 !important;
        border-bottom: 1px solid #E6E2D8 !important;
        box-shadow: 0 10px 30px rgba(48, 37, 19, 0.08) !important;
    }

    /* 2. Correct visibility of wearch-hero-label by clearing sticky header */
    .wearch-hero .hero-slide {
        align-items: flex-start !important;
        padding-top: 105px !important;
    }

    /* 3. Reduce font-size and line height of section-title p in the hero slider */
    .hero-content .section-title p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-top: 20px !important;
    }
}

@media only screen and (max-width: 767px) {
    .wearch-hero .hero-slide {
        padding-top: 60px !important;
    }


}

/* ==========================================================
   MINIMAL LUXURIOUS ABOUT SECTION OVERRIDES
 ========================================================== */

/* Main section padding constraint for desktop viewports */
.wearch-about-compact {
    padding: clamp(24px, 3.8vh, 50px) 0 !important;
}

/* Visual column de-cluttering & premium frames */
.about-editorial-secondary-image {
    padding: 0 !important;
    background: transparent !important;
    border: 1px solid rgba(200, 149, 69, 0.2) !important;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

.about-image-caption {
    border: 1px solid rgba(200, 149, 69, 0.15) !important;
    border-left: 3px solid var(--wearch-gold) !important;
    background: rgba(8, 8, 8, 0.72) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(12px) !important;
}

/* Typography & luxury space adjustments */
.about-editorial-content> :is(h1, h2) {
    font-weight: 400 !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 18px !important;
    color: var(--wearch-gold-light, #c89545);
}

.about-editorial-content> :is(h1, h2) span {
    font-weight: 400 !important;
    font-style: italic !important;
    padding-left: 45px !important;
}

.about-editorial-label {
    margin-bottom: 12px !important;
}

.about-editorial-statement {
    border-left: 1px solid rgba(200, 149, 69, 0.25) !important;
    padding-left: 24px !important;
    margin-bottom: 18px !important;
}

.about-editorial-statement>span {
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
    color: var(--wearch-gold-light) !important;
    margin-bottom: 8px !important;
}

.about-editorial-statement h3 {
    font-size: clamp(22px, 2.2vw, 28px) !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

.about-editorial-statement h3 strong {
    display: block !important;
    font-style: italic !important;
    margin-top: 4px !important;
    font-weight: 400 !important;
}

.about-editorial-statement p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    margin-bottom: 8px !important;
}

/* Sub service item lists */
.about-editorial-services {
    margin-top: 18px !important;
    padding: 14px 0 !important;
    border-top: 1px solid rgba(200, 149, 69, 0.12) !important;
    border-bottom: 1px solid rgba(200, 149, 69, 0.12) !important;
    gap: 8px 24px !important;
}

.about-editorial-services span {
    font-size: 13px !important;
    letter-spacing: 0.06em !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.about-editorial-services span i {
    width: 4px !important;
    height: 4px !important;
    background: var(--wearch-gold) !important;
    box-shadow: 0 0 8px rgba(200, 149, 69, 0.35) !important;
}

/* Service Reach & Footer */
.about-editorial-footer {
    margin-top: 22px !important;
}

.about-editorial-reach {
    border-left: 1px solid rgba(200, 149, 69, 0.25) !important;
    padding-left: 20px !important;
}

.about-editorial-reach span {
    font-size: 9px !important;
    letter-spacing: 0.16em !important;
}

.about-editorial-reach strong {
    font-size: 16px !important;
    font-weight: 400 !important;
}

@media only screen and (max-width: 767px) {
    .about-editorial-content> :is(h1, h2) span {
        padding-left: 0 !important;
    }
}

/* ==========================================================
   PREMIUM GOLD CURSOR HOVER EFFECT
 ========================================================== */

.cb-cursor.-opaque {
    mix-blend-mode: normal !important;
}

.cb-cursor.-opaque:before {
    background: rgba(214, 176, 106, 0.18) !important;
    border: 1.5px solid #D6B06A !important;
}

.cb-cursor.-opaque:after {
    content: "" !important;
    position: absolute !important;
    top: -4px !important;
    left: -4px !important;
    width: 8px !important;
    height: 8px !important;
    background: #D6B06A !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    transform: scale(1) !important;
    transition: transform 0.3s ease-in-out !important;
}

/* ==========================================================
   FIX FOR MOBILE RESPONSIVE LAYOUT (BELOW 767px)
========================================================== */

@media only screen and (max-width: 767px) {

    /* --- RESPONSIVE RESET & LAYOUT CONTAINERS --- */
    .wearch-contact-cta,
    .wearch-contact-cta *,
    .wearch-footer,
    .wearch-footer * {
        box-sizing: border-box !important;
    }

    .contact-cta-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        gap: 36px !important;
    }

    .contact-cta-content,
    .contact-cta-details {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    /* --- CTA SECTION HEADING & TEXT --- */
    .contact-cta-heading {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        font-size: clamp(34px, 11vw, 46px) !important;
        line-height: 1.1 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
    }

    .contact-cta-heading span {
        display: block !important;
        margin-top: 4px !important;
        padding-left: 0 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
    }

    .contact-cta-heading *,
    .contact-cta-heading div,
    .contact-cta-heading span,
    .contact-cta-heading .split-line,
    .contact-cta-heading .split-word,
    .contact-cta-heading .split-char {
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .contact-cta-heading .split-word {
        display: inline-block !important;
        white-space: nowrap !important;
    }

    .contact-cta-heading .split-char {
        display: inline !important;
    }

    .contact-cta-description {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        padding-left: 0 !important;
        border-left: none !important;
        margin: 16px 0 24px 0 !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
    }

    /* --- CTA BUTTON --- */
    .contact-cta-btn {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: fit-content !important;
        max-width: 100% !important;
        min-width: 0 !important;
        white-space: nowrap !important;
        gap: 12px !important;
    }

    .contact-cta-btn span {
        white-space: nowrap !important;
        word-break: normal !important;
        flex-shrink: 0 !important;
    }

    /* --- CONTACT DETAILS STACK --- */
    .contact-cta-details {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-top: 12px !important;
    }

    .contact-cta-item {
        display: grid !important;
        grid-template-columns: 40px minmax(0, 1fr) auto !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        align-items: center !important;
        padding: 10px 4px !important;
        box-sizing: border-box !important;
    }

    .contact-cta-item-copy {
        width: 100% !important;
        min-width: 0 !important;
    }

    .contact-cta-item-copy strong {
        font-size: 14px !important;
        line-height: 1.3 !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    /* --- FOOTER OVERRIDES --- */
    .wearch-footer {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .wearch-footer>.container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    .wearch-footer-brand-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 0 !important;
    }

    .wearch-footer-brand {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: none !important;
    }

    .wearch-footer-logo {
        width: auto !important;
        flex: none !important;
    }

    .wearch-footer-social {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-social-icons {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
    }

    .footer-social-icons a {
        width: 34px !important;
        height: 34px !important;
    }

    .wearch-footer-main-row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        align-items: start !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        column-gap: 20px !important;
        row-gap: 24px !important;
        padding: 16px 0 !important;
    }

    .wearch-footer-column,
    .wearch-footer-column:first-child,
    .wearch-footer-column:nth-child(1),
    .wearch-footer-column:nth-child(2) {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border-right: none !important;
        border-bottom: none !important;
        box-sizing: border-box !important;
        align-self: start !important;
    }

    .wearch-footer-column:last-child {
        grid-column: 1 / -1 !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding-top: 16px !important;
        margin-top: 0 !important;
    }

    .footer-column-icon {
        display: none !important;
    }

    .wearch-footer-column h3 {
        font-size: 17px !important;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
        padding-top: 0 !important;
        line-height: 1.2 !important;
    }

    .footer-link-list {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .footer-link-list li {
        width: 100% !important;
    }

    .footer-link-list a {
        font-size: 13px !important;
        padding: 5px 0 !important;
    }

    .footer-contact-list {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    .footer-contact-row {
        display: grid !important;
        grid-template-columns: 70px minmax(0, 1fr) !important;
        column-gap: 20px !important;
        align-items: center !important;
        justify-content: start !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 6px 0 !important;
        box-sizing: border-box !important;
    }

    .footer-contact-row small {
        font-size: 11px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        flex-shrink: 0 !important;
    }

    .footer-contact-row strong {
        font-size: 13px !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        justify-self: start !important;
        text-align: left !important;
    }

    .wearch-footer-offices {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        gap: 12px !important;
        padding: 16px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .footer-office {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 10px 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-sizing: border-box !important;
        grid-template-columns: none !important;
    }

    .footer-office:last-child {
        border-bottom: none !important;
    }

    .footer-office-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }

    .footer-office-content h4 {
        font-size: 15px !important;
        margin: 2px 0 !important;
    }

    .footer-office-content p {
        font-size: 12px !important;
        line-height: 1.45 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        color: rgba(255, 255, 255, 0.65) !important;
    }

    .wearch-footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 6px !important;
        padding: 14px 0 !important;
        grid-template-columns: none !important;
    }
}

/* ==========================================================
   HIDE ALL DECORATIVE BACKGROUND WORDS ON RESPONSIVE (< 992px)
========================================================== */

@media only screen and (max-width: 991px) {

    .about-background-text,
    .philosophy-background-text,
    .services-background-word,
    .process-background-word,
    .projects-background-word,
    .wearch-voices-background,
    .faq-background-word,
    .build-background-word,
    .contact-cta-background-word,
    .location-background-word,
    .wearch-footer-background-word,
    [class*="-background-word"],
    [class*="-background-text"] {
        display: none !important;
    }
}

/* ==========================================================
   TEXT READABILITY & ALIGNMENT ENHANCEMENTS
========================================================== */

/* Desktop: Justify multi-line editorial body paragraphs for clean readability */
@media only screen and (min-width: 992px) {

    .about-editorial-statement p,
    .build-description p {
        text-align: justify;
    }
}

/* Mobile: Enforce natural left-alignment to prevent word gaps & rivers of whitespace */
@media only screen and (max-width: 991px) {

    p,
    .about-editorial-statement p,
    .philosophy-desc,
    .services-header-text,
    .process-header-text,
    .projects-description,
    .wearch-voices-intro,
    .wearch-voice-content p,
    .faq-description,
    .build-description p,
    .contact-cta-description,
    .location-description,
    .footer-office-content p {
        text-align: left !important;
    }
}

/* ==========================================================
   PREMIUM LUXURY ARCHITECTURE SPACING REFINEMENTS
========================================================== */

/* --- Desktop Spacing (>= 992px) --- */
@media only screen and (min-width: 992px) {

    /* Section padding tune (40px - 55px range for continuous editorial rhythm) */
    .wearch-about,
    .wearch-about-compact {
        padding: 48px 0 !important;
    }

    .wearch-philosophy {
        padding: 50px 0 !important;
    }

    .wearch-services {
        padding: 52px 0 44px 0 !important;
    }

    /* Services -> Process tighter transition */
    .wearch-process {
        padding: 40px 0 48px 0 !important;
    }

    .process-header {
        margin-bottom: 28px !important;
    }

    .process-journey {
        margin-bottom: 32px !important;
    }

    .process-footer {
        margin-top: 32px !important;
    }

    .wearch-projects {
        padding: 50px 0 !important;
    }

    .projects-header {
        margin-bottom: 32px !important;
    }

    .projects-footer {
        margin-top: 32px !important;
    }

    .wearch-voices {
        padding: 50px 0 40px 0 !important;
    }

    .wearch-voices-header {
        margin-bottom: 28px !important;
    }

    .wearch-voices-slider {
        margin-top: 24px !important;
    }

    /* Testimonials -> FAQ gap reduction */
    .wearch-faq {
        padding: 42px 0 48px 0 !important;
    }

    .faq-layout {
        gap: 40px !important;
    }

    /* FAQ -> Building Better Spaces balanced transition */
    .wearch-build {
        padding: 46px 0 48px 0 !important;
    }

    .build-layout {
        gap: 48px !important;
    }

    /* Building Better Spaces -> CTA connected flow */
    .wearch-contact-cta {
        padding: 44px 0 48px 0 !important;
    }

    .contact-cta-layout {
        gap: 48px !important;
    }

    .wearch-location {
        padding: 46px 0 48px 0 !important;
    }

    /* CTA -> Footer compact connection */
    .wearch-footer {
        padding-top: 0 !important;
    }

    .wearch-footer-brand-row {
        padding: 16px 0 !important;
    }

    .wearch-footer-main-row {
        padding: 20px 0 !important;
    }

    .wearch-footer-offices {
        padding: 18px 0 !important;
    }

    .wearch-footer-bottom {
        padding: 12px 0 !important;
    }
}

/* --- Tablet Spacing (768px - 991px) --- */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .wearch-about,
    .wearch-about-compact,
    .wearch-philosophy,
    .wearch-services,
    .wearch-process,
    .wearch-projects,
    .wearch-voices,
    .wearch-faq,
    .wearch-build,
    .wearch-contact-cta,
    .wearch-location {
        padding: 46px 0 !important;
    }

    .services-footer,
    .process-footer,
    .projects-footer {
        margin-top: 28px !important;
    }

    .wearch-footer-brand-row {
        padding: 16px 0 !important;
    }

    .wearch-footer-main-row,
    .wearch-footer-offices {
        padding: 18px 0 !important;
    }
}

/* --- Mobile Spacing (< 768px) --- */
@media only screen and (max-width: 767px) {

    .wearch-about,
    .wearch-about-compact,
    .wearch-philosophy,
    .wearch-services,
    .wearch-process,
    .wearch-projects,
    .wearch-voices,
    .wearch-faq,
    .wearch-build,
    .wearch-contact-cta,
    .wearch-location {
        padding: 45px 0 !important;
    }

    .services-footer,
    .process-footer,
    .projects-footer {
        margin-top: 24px !important;
    }

    .process-header,
    .projects-header,
    .wearch-voices-header,
    .location-header {
        margin-bottom: 24px !important;
    }

    .wearch-footer-brand-row {
        padding: 14px 0 !important;
        gap: 12px !important;
    }

    .wearch-footer-main-row {
        padding: 16px 0 !important;
        row-gap: 20px !important;
    }

    .wearch-footer-offices {
        padding: 14px 0 !important;
        gap: 10px !important;
    }

    .wearch-footer-bottom {
        padding: 12px 0 !important;
        gap: 4px !important;
    }
}

/* ==========================================================
   SECTION 1: REDESIGNED INTERNAL ABOUT HERO
========================================================== */

.wearch-page-hero {
    position: relative;
    padding: 38px 0 28px;
    background: #090909;
    overflow: hidden;
    isolation: isolate;
}

.wearch-page-hero::before,
.wearch-page-hero::after {
    display: none !important;
}

.wearch-page-hero>.container {
    position: relative;
    z-index: 2;
}

/* Top Meta & Breadcrumb Rail */
.page-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.page-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-hero-number {
    color: var(--wearch-gold-light, #c89545);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.page-hero-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--wearch-gold, #c89545);
    opacity: 0.6;
}

.page-hero-label {
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-hero-breadcrumb a,
.page-hero-breadcrumb span {
    /* color: rgba(255, 255, 255, 0.4);
    color: #95672d; */
    color: var(--wearch-gold-light, #c89545);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--wearch-gold-light, #c89545);
}

.page-hero-breadcrumb i {
    color: rgba(255, 255, 255, 0.25);
    font-size: 8px;
}

/* Asymmetric Main Row */
.page-hero-main-row {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(35px, 5vw, 80px);
    align-items: flex-end;
    margin-bottom: 24px;
}

.page-hero-heading {
    margin: 0;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(50px, 5vw, 76px);
    font-size: clamp(40px, 5vw, 76px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.page-hero-heading span {
    display: block;
    margin-top: 6px;
    padding-left: clamp(20px, 4vw, 54px);
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
    font-weight: 300;
}

.page-hero-intro {
    padding-left: 18px;
    border-left: 1px solid rgba(200, 149, 69, 0.35);
}

.page-hero-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', sans-serif;
    font-size: 13px !important;
    line-height: 1.7;
}

/* Panoramic Canvas Image */
.page-hero-canvas-wrap {
    position: relative;
    width: 100%;
}

.page-hero-canvas {
    position: relative;
    width: 100%;
    height: clamp(260px, 26vw, 360px);
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-canvas img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    filter: brightness(0.92) contrast(1.02);
    transition: transform 0.8s ease;
}

.page-hero-canvas-wrap:hover .page-hero-canvas img {
    transform: scale(1.02);
}

.page-hero-canvas-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 18px;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 6px 6px;
}

.page-hero-services-tags {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-hero-services-tags span {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-hero-services-tags i {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--wearch-gold, #c89545);
    opacity: 0.7;
}

.page-hero-location-tag {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-hero-location-tag small {
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-hero-location-tag span {
    color: var(--wearch-gold-light, #c89545);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

/* Footer Tagline Bar */
.page-hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    padding-top: 14px;
}

.page-hero-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-hero-tagline span {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-hero-dot {
    color: var(--wearch-gold, #c89545);
    font-size: 8px;
    opacity: 0.5;
}

.page-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease, gap 0.3s ease;
}

.page-hero-scroll i {
    color: var(--wearch-gold-light, #c89545);
    font-size: 9px;
}

.page-hero-scroll:hover {
    color: #ffffff;
    gap: 12px;
}


/* ==========================================================
   REDESIGNED ABOUT WEARCH STORY SECTION (DARK LUXURY)
========================================================== */

.about-story-section {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
    overflow: hidden;
}

.about-story-layout {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
    align-items: stretch;
    gap: 4%;
    width: 100%;
}

/* Left Content Column */
.about-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.about-story-heading {
    /* margin: 0 0 20px;
    color: #F5F3EF;
    color: var(--wearch-gold-light, #c89545);
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.01em; */

    font-family: Felidae, "Cormorant Garamond", serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: rgb(255, 255, 255);
    color: var(--wearch-gold-light, #c89545);

    letter-spacing: 0.14em;
    margin: 0px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 20px;
}

.about-story-copy {
    width: 100%;
}

.about-story-copy p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.76);
    font-family: 'Inter', sans-serif;
    font-size: 15.5px !important;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-align: justify;

}

.about-story-copy p:last-child {
    margin-bottom: 0;
}

.about-story-footer {
    margin-top: 26px;
}

/* .about-story-btn overridden by master CTA button styling */

/* Right Image Column - Height Matches Content Column Height */
.about-story-visual {
    width: 100%;
    height: 100%;
    display: flex;
}

.about-story-image-frame {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.about-story-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.6s ease;
}

.about-story-visual:hover .about-story-image-frame img {
    transform: scale(1.02);
}

/* Tablet & Mobile Responsive */
@media only screen and (max-width: 991px) {
    .wearch-page-hero {
        padding: 34px 0 24px;
    }

    .page-hero-main-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-hero-heading span {
        padding-left: 0;
    }

    .page-hero-intro {
        padding-left: 14px;
    }

    .about-story-section {
        padding: 50px 0;
    }

    .about-story-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* IMAGE APPEARS FIRST ON TABLET & MOBILE */
    .about-story-visual {
        order: 1;
        height: auto;
    }

    .about-story-image-frame {
        height: clamp(300px, 45vw, 400px);
        min-height: auto;
    }

    .about-story-content {
        order: 2;
    }

    .about-story-heading {
        font-size: clamp(28px, 5vw, 38px);
        margin-bottom: 16px;
    }

    .about-story-copy p {
        font-size: 15px !important;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .about-story-footer {
        margin-top: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .page-hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .page-hero-canvas-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .page-hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .about-story-section {
        padding: 40px 0;
    }

    .about-story-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .about-story-content {
        display: contents !important;
    }

    .about-story-heading {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        font-size: 26px !important;
    }

    .about-story-visual {
        order: 2 !important;
        width: 100% !important;
        height: auto !important;
    }

    .about-story-image-frame {
        height: 280px;
    }

    .about-story-copy {
        order: 3 !important;
        width: 100% !important;
    }

    .about-story-copy p {
        font-size: 14.5px !important;
        line-height: 1.7;
    }

    .about-story-footer {
        order: 4 !important;
        width: 100% !important;
    }

    .about-story-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}

.service-reach {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-left: 24px;
    border-left: 1px solid rgba(210, 170, 82, 0.35);
}

.service-reach small {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(210, 170, 82, 0.75);
    margin: 0;
}

.service-reach strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: #d6ab5a;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ==========================================================
   ABOUT PAGE — WHO WE ARE
========================================================== */

.wearch-who {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at 92% 10%,
            rgba(200, 149, 69, 0.075),
            transparent 27%),
        linear-gradient(135deg,
            #080808 0%,
            #0c0c0c 58%,
            #111111 100%);
    isolation: isolate;
    overflow: hidden;
}

.wearch-who-layout {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 56px;
    align-items: center;
}

.wearch-who-text-col {
    min-width: 0;
}

.wearch-who-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wearch-who-eyebrow span {
    color: var(--wearch-gold-light, #c89545);
    font-family: var(--body-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.wearch-who-eyebrow i {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--wearch-gold, #c89545);
}

.wearch-who-eyebrow p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wearch-who-heading {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.18;
    margin: 0 0 28px;
    letter-spacing: -0.01em;

}

.wearch-who-heading span {
    display: block;
    font-style: italic;
    color: var(--wearch-gold-light, #dfb66c);
    font-weight: 400;
    margin-top: 4px;
}

.wearch-who-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wearch-who-paragraphs p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--body-font, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(14px, 0.95vw, 15px);
    font-weight: 400;
    line-height: 1.75;
}

/* Right Media Column */
.wearch-who-media-col {
    min-width: 0;
    width: 100%;
}

.wearch-who-image-frame {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    background-color: #121212;
}

.wearch-who-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .wearch-who {
        padding: 64px 0;
    }

    .wearch-who-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .wearch-who-heading {
        font-size: clamp(30px, 6vw, 40px);
        margin-bottom: 20px;
    }

    .wearch-who-paragraphs {
        gap: 16px;
    }
}

@media (max-width: 767.98px) {
    .wearch-who {
        padding: 48px 0;
    }

    .wearch-who-layout {
        gap: 28px;
    }

    .wearch-who-eyebrow {
        margin-bottom: 18px;
    }

    .wearch-who-paragraphs p {
        font-size: 14px;
        line-height: 1.68;
    }

    .wearch-who-image-frame,
    .wearch-who-image-frame img {
        border-radius: 10px;
    }
}

.wearch-who-copy p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

.wearch-who-values {
    grid-template-columns: 1fr;
}

.wearch-who-value {
    padding: 12px 0;
}

.wearch-who-value+.wearch-who-value {
    padding-left: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
}


/* ==========================================================
   SMALL MOBILE (BELOW 480px)
========================================================== */

@media (max-width: 480px) {

    .wearch-who-image {
        height: 350px;
    }

    .wearch-who-image-caption strong {
        font-size: 16px;
    }
}

/* ==========================================================
   ABOUT PAGE — VISION & MISSION (FOUNDATION SECTION)
========================================================== */

.foundation-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    box-sizing: border-box;

    /* Reusing exact background color and border style from .about-story-section */
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    isolation: isolate;
}

.foundation-inner {
    width: 100%;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.foundation-box {
    position: relative;
    background: #121212;
    border: 1px solid rgba(200, 149, 69, 0.16);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    margin-top: 30px;
}

.foundation-box:hover {
    border-color: rgba(200, 149, 69, 0.28);
}

.foundation-box-title {
    font-family: 'Felidae', 'Cormorant Garamond', var(--heading-font, serif);
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 500;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin: 0 0 18px 0;
}

.foundation-box-text {
    font-family: 'Inter', var(--body-font, sans-serif);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.74);
    letter-spacing: 0.01em;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    /* margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.76);
    font-family: 'Inter', sans-serif;
    font-size: 15.5px !important;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-align: justify; */
}

.foundation-box.foundation-full-box {
    grid-column: 1 / -1;
    margin-top: 0;
}

.foundation-mission-box .foundation-box-title,
.foundation-vision-box .foundation-box-title {
    text-align: center;
}

/* ==========================================================
   MISSION NIYOG SECTION — CENTERED HEADER & 2-COLUMN CAROUSEL
========================================================== */
.niyog-header {
    text-align: center;
    margin-bottom: 18px;
    width: 100%;
}

.niyog-header .foundation-box-title {
    text-align: center;
    margin-bottom: 6px;
}

.niyog-header .foundation-box-subtitle {
    text-align: center;
    margin: 0 0 10px 0 !important;
}

.niyog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    width: 100%;
}

.niyog-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.niyog-media-col {
    width: 100%;
}

.niyog-carousel {
    position: relative;
    width: 100%;
    height: 270px;
    border-radius: 12px;
    overflow: hidden;
    background: #FCFBF8;
    border: 1px solid #DAD2C9;
    box-shadow: 0 4px 16px rgba(48, 37, 19, 0.06);
}

.niyog-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms ease-in-out, visibility 600ms ease-in-out;
}

.niyog-slide.active {
    opacity: 1;
    visibility: visible;
}

.niyog-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.foundation-box-subtitle {
    display: block;
    font-family: 'Inter', var(--body-font, sans-serif);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: -10px 0 14px 0;
}

.foundation-section .foundation-box-subtitle {
    color: #C89545 !important;
}

/* ==========================================================
   MISSION & VISION STACKED FULL-WIDTH BOXES
========================================================== */
.foundation-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    width: 100%;
}

.foundation-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.foundation-media-col {
    width: 100%;
}

.foundation-image-frame {
    position: relative;
    width: 100%;
    height: 270px;
    border-radius: 12px;
    overflow: hidden;
    background: #FCFBF8;
    border: 1px solid #DAD2C9;
    box-shadow: 0 4px 16px rgba(48, 37, 19, 0.06);
}

.foundation-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Desktop Split Ordering */
.mission-layout-grid .foundation-content-col {
    order: 1;
}

.mission-layout-grid .foundation-media-col {
    order: 2;
}

.vision-layout-grid .foundation-media-col {
    order: 1;
}

.vision-layout-grid .foundation-content-col {
    order: 2;
}

@media (max-width: 991.98px) {
    .niyog-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .niyog-carousel {
        height: auto;
    }

    .niyog-slide {
        position: relative;
        inset: auto;
        height: auto;
    }

    .niyog-slide:not(.active) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .niyog-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .foundation-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .foundation-layout-grid .foundation-content-col {
        order: 1 !important;
    }

    .foundation-layout-grid .foundation-media-col {
        order: 2 !important;
    }

    .foundation-image-frame {
        height: 240px;
    }
}

/* Tablet (keep 2 equal columns down to 768px) */
@media (max-width: 991.98px) {

    .foundation-section {
        padding: 48px 0;
    }

    .foundation-grid {
        gap: 20px;
    }

    .foundation-box {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .foundation-box-title {
        font-size: clamp(22px, 3.5vw, 26px);
        margin-bottom: 14px;
    }

    .foundation-box-text {
        font-size: 14.5px;
        line-height: 1.7;
    }
}

/* Mobile (stack vertically below 768px) */
@media (max-width: 767.98px) {

    .foundation-section {
        padding: 40px 0;
    }

    .foundation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .foundation-box {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .foundation-box-text {
        text-align: left;
        font-size: 14px;
        line-height: 1.65;
    }
}

/* ==========================================================
   RECOGNITION & AWARDS SECTION (DARK LUXURY GALLERY)
========================================================== */

.wearch-recognition {
    position: relative;
    width: 100%;
    padding: 85px 0 95px;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    overflow: hidden;
}

.recognition-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

.recognition-header {
    text-align: center;
    margin-bottom: 50px;
}

.recognition-main-heading {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}

/* Horizontal Auto-Scrolling Carousel Layout */
.recognition-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
    margin-top: -12px;
}

.recognition-carousel-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: recognitionTicker 25s linear infinite;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .recognition-carousel-wrapper:hover .recognition-carousel-track {
        animation-play-state: paused;
    }
}

.recognition-carousel-track .recognition-card {
    flex: 0 0 calc((min(92vw, 1280px) - 2 * 28px) / 3);
    width: calc((min(92vw, 1280px) - 2 * 28px) / 3);
    aspect-ratio: 16 / 10;
    box-sizing: border-box;
}

@keyframes recognitionTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--recognition-loop-distance, 50%)));
    }
}

/* Card Styling */
.recognition-card {
    position: relative;
    background: #111111;
    border: 1px solid rgba(200, 169, 106, 0.18);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.4s ease;
    box-sizing: border-box;
}

.recognition-card img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

/* Award Photographs: Cover */
.recognition-card-cover img {
    object-fit: cover;
    object-position: center;
}

/* Newspaper / Magazine Screenshots: Contain with Dark Background & Inner Padding */
.recognition-card-contain {
    padding: 12px;
    background: #111111;
}

.recognition-card-contain img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* Hover State & Click Indicator */
.recognition-card {
    cursor: pointer;
}

.recognition-card:hover {
    border-color: #C8A96A;
}

.recognition-card:hover img {
    transform: scale(1.03);
}

/* ==========================================================
   AWARDS & RECOGNITION IMAGE PREVIEW MODAL (LIGHT THEME)
========================================================== */
.award-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.award-modal.is-open {
    visibility: visible;
    opacity: 1;
}

/* Soft Translucent Warm Backdrop */
.award-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48, 37, 19, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Warm Light Surface (#F7F5F2 / #FCFBF8) with Gold Accent Border & Soft Shadow */
.award-modal-dialog {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F5F2;
    background: #F7F5F2;
    border: 1px solid rgba(200, 149, 69, 0.32);
    border-radius: 14px;
    padding: 18px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(48, 37, 19, 0.18);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.award-modal.is-open .award-modal-dialog {
    transform: scale(1);
}

/* Clean Ivory Close Button (#FCFBF8) with Gold Accent Border */
.award-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FCFBF8;
    background: #FCFBF8;
    border: 1px solid rgba(200, 149, 69, 0.38);
    color: #302513;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(48, 37, 19, 0.12);
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.award-modal-close:hover,
.award-modal-close:focus-visible {
    background-color: #C89545;
    background: #C89545;
    border-color: #C89545;
    color: #FFFFFF;
    transform: scale(1.08);
}

.award-modal-body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.award-modal-body img {
    display: block;
    max-width: 85vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Pause carousel track while modal is open */
.recognition-carousel-track.is-paused {
    animation-play-state: paused !important;
}

/* Body scroll lock */
body.award-modal-open {
    overflow: hidden !important;
}

/* Tablet Responsive */
@media only screen and (max-width: 991px) {
    .wearch-recognition {
        padding: 65px 0 75px;
    }

    .recognition-header {
        margin-bottom: 38px;
    }

    .recognition-carousel-track {
        gap: 20px;
        animation-duration: 20s;
    }

    .recognition-carousel-track .recognition-card {
        flex: 0 0 calc((min(92vw, 1280px) - 20px) / 2);
        width: calc((min(92vw, 1280px) - 20px) / 2);
    }
}

/* Mobile Responsive */
@media only screen and (max-width: 767px) {
    .wearch-recognition {
        padding: 50px 0 60px;
    }

    .recognition-header {
        margin-bottom: 30px;
    }

    .recognition-carousel-track {
        gap: 16px;
        animation-duration: 30s;
    }

    .recognition-carousel-track .recognition-card {
        flex: 0 0 min(92vw, 1280px);
        width: min(92vw, 1280px);
    }

    .recognition-card-contain {
        padding: 10px;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .recognition-media img,
    .recognition-media::before,
    .recognition-media figcaption {
        transition: none;
    }

    .recognition-media:hover img,
    .recognition-media:hover figcaption {
        transform: none;
    }
}

/* ==========================================================
   ABOUT PAGE - OUR SPECIALITY
========================================================== */

.wearch-speciality {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100svh - var(--wearch-header-height, 98px));
    padding: 52px 0;
    overflow: hidden;
    box-sizing: border-box;

    background:
        radial-gradient(circle at 12% 15%,
            rgba(200, 149, 69, 0.05),
            transparent 28%),
        linear-gradient(135deg,
            #080808 0%,
            #0c0c0c 55%,
            #101010 100%);

    isolation: isolate;
}

.wearch-speciality-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 44px;
}

.wearch-speciality-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.wearch-speciality-eyebrow span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.wearch-speciality-eyebrow i {
    display: block;
    width: 38px;
    height: 1px;
    background: var(--wearch-gold);
}

.wearch-speciality-eyebrow p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.wearch-speciality-header h2 {
    margin: 0;
    max-width: 680px;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(40px, 3.5vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.wearch-speciality-header h2 span {
    display: block;
    margin-top: 8px;
    color: var(--wearch-gold-light);
    font-family: var(--heading-font);
    font-size: clamp(30px, 2.6vw, 42px);
    font-style: italic;
    font-weight: 400;
}

.wearch-speciality-content {
    display: grid;
    grid-template-columns: minmax(0, 540px) 48px minmax(0, 540px);
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.speciality-intro,
.speciality-description {
    min-width: 0;
}

.speciality-label {
    display: block;
    margin-bottom: 14px;
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.speciality-intro p,
.speciality-description p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}

/* Vertical Divider */
.speciality-divider {
    position: relative;
    width: 100%;
    height: 140px;
    align-self: center;
    margin: auto;
}

.speciality-divider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(223, 182, 108, 0.35) 20%,
            rgba(223, 182, 108, 0.35) 80%,
            transparent 100%);
}

.speciality-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--wearch-gold-light);
    opacity: 0.85;
}

/* ==========================================================
   SHORT DESKTOP
========================================================== */

@media (min-width: 992px) and (max-height: 830px) {

    .wearch-speciality {
        padding: 42px 0;
    }

    .wearch-speciality-header {
        margin-bottom: 32px;
    }

    .wearch-speciality-header h2 {
        font-size: clamp(36px, 3.1vw, 48px);
    }

    .wearch-speciality-header h2 span {
        font-size: clamp(26px, 2.3vw, 36px);
    }

    .speciality-intro p,
    .speciality-description p {
        font-size: 13.5px;
        line-height: 1.75;
    }

    .speciality-divider {
        height: 120px;
    }
}

/* ==========================================================
   RESPONSIVE BELOW 991px
========================================================== */

@media (max-width: 991.98px) {

    .wearch-speciality {
        min-height: auto;
        padding: 52px 0;
    }

    .wearch-speciality-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .wearch-speciality-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .speciality-intro p,
    .speciality-description p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }

    .speciality-divider {
        width: 100%;
        height: 24px;
    }

    .speciality-divider::before {
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0;
        bottom: auto;
        transform: translateY(-50%);
        background: linear-gradient(to right,
                transparent 0%,
                rgba(223, 182, 108, 0.35) 20%,
                rgba(223, 182, 108, 0.35) 80%,
                transparent 100%);
    }

    .speciality-divider::after {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* ==========================================================
   MOBILE BELOW 576px
========================================================== */

@media (max-width: 575.98px) {

    .wearch-speciality-header h2 {
        font-size: clamp(34px, 8.5vw, 44px);
    }

    .wearch-speciality-header h2 span {
        font-size: clamp(24px, 6.5vw, 32px);
    }
}

/* ==========================================================
   VISIT OFFICE
========================================================== */

.visit-office {

    position: relative;

    padding: 70px 0 40px;

    background: #0b0b0b;

}

.visit-office-header {

    margin-bottom: 42px;

}

.visit-office-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

}

.visit-office-eyebrow span {

    color: var(--wearch-gold-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .15em;

}

.visit-office-eyebrow i {

    width: 40px;

    height: 1px;

    background: var(--wearch-gold);

}

.visit-office-eyebrow p {

    margin: 0;

    color: rgba(255, 255, 255, .5);

    text-transform: uppercase;

    font-size: 9px;

    letter-spacing: .17em;

}

.visit-office-header h2 {

    margin: 0;

    font-family: var(--heading-font);

    font-size: clamp(42px, 3.8vw, 60px);

    line-height: 1;

}

.visit-office-header h2 span {

    display: block;

    color: var(--wearch-gold-light);

    font-style: italic;

}

.visit-office-content {

    display: grid;

    grid-template-columns: 340px 1fr;

    gap: 60px;

    align-items: start;

}

.office-item {

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.office-item small {

    display: block;

    margin-bottom: 8px;

    color: var(--wearch-gold-light);

    font-size: 8px;

    letter-spacing: .15em;

    text-transform: uppercase;

}

.office-item p,

.office-item a {

    margin: 0;

    color: rgba(255, 255, 255, .75);

    font-size: 14px;

    line-height: 1.8;

    text-decoration: none;

    transition: .3s;

}

.office-item a:hover {

    color: var(--wearch-gold-light);

}

.visit-office-map {

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .08);

}

.visit-office-map iframe {

    width: 100%;

    height: 520px;

    border: 0;

    filter: grayscale(100%) contrast(1.05);

    transition: .5s;

}

.visit-office-map:hover iframe {

    filter: grayscale(20%);

}

/* Tablet */

@media(max-width:991px) {

    .visit-office-content {

        grid-template-columns: 1fr;

        gap: 35px;

    }

}

/* Mobile */

@media(max-width:767px) {

    .visit-office {

        padding: 56px 0;

    }

    .visit-office-header h2 {

        font-size: clamp(37px, 11vw, 48px);

    }

    .visit-office-map iframe {

        height: 380px;

    }

}

/* ==========================================================
   WEARCH LOCATION SECTION
========================================================== */

.wearch-location {
    position: relative;
    padding: 62px 0 70px;
    overflow: hidden;
    box-sizing: border-box;

    background:
        radial-gradient(circle at 88% 15%,
            rgba(200, 149, 69, 0.1),
            transparent 28%),
        linear-gradient(135deg,
            #090909 0%,
            #101010 52%,
            #171717 100%);

    isolation: isolate;
}

.wearch-location::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.16;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px);

    background-size: 100px 100px;
}

.wearch-location::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -220px;
    z-index: -1;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(200, 149, 69, 0.1);
    border-radius: 50%;
}

.wearch-location>.container {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   HEADER
========================================================== */

.location-header {
    margin-bottom: 32px;
}

.location-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.location-eyebrow>span {
    color: var(--wearch-gold-light);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.location-eyebrow>i {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--wearch-gold);
}

.location-eyebrow>p {
    margin: 0;

    color: rgba(255, 255, 255, 0.54);
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.location-heading {
    max-width: 840px;
    margin: 0;

    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(37px, 3.7vw, 53px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.location-heading span {
    display: block;
    margin-top: 4px;
    padding-left: 42px;

    color: var(--wearch-gold-light);
    font-weight: 500;
}

.location-description {
    max-width: 390px;
    margin: 0 0 3px auto;
    padding-left: 18px;

    border-left: 1px solid rgba(223, 182, 108, 0.47);

    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.72;
}

/* ==========================================================
   MAP LAYOUT
========================================================== */

.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
    gap: 24px;
    align-items: stretch;
}

.location-map {
    position: relative;
    min-height: 430px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px 6px 28px 6px;

    background: #151515;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.location-map::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 1px solid rgba(223, 182, 108, 0.08);
    border-radius: inherit;

    pointer-events: none;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;

    border: 0;

    filter:
        grayscale(0.7) invert(0.9) contrast(0.88) sepia(0.15);
}

/* ==========================================================
   LOCATION DETAILS
========================================================== */

.location-details {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 28px 26px;

    border: 1px solid rgba(200, 149, 69, 0.16);
    border-radius: 6px 26px 6px 26px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.018));

    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(12px);
}

.location-detail-item {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 14px;
    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.location-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(223, 182, 108, 0.34);
    border-radius: 50%;

    color: var(--wearch-gold-light);
    font-size: 11px;
}

.location-detail-item small {
    display: block;
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.42);
    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-detail-item strong,
.location-detail-item a {
    display: block;

    overflow-wrap: anywhere;

    color: #ffffff;
    font-family: var(--body-font), "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.28;

    transition: color 0.3s ease;
}

.location-detail-item a:hover {
    color: var(--wearch-gold-light);
}

/* ==========================================================
   DIRECTION BUTTON
========================================================== */

.location-direction-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-top: 25px;
    padding: 7px 7px 7px 19px;
    overflow: hidden;

    border: 1px solid rgba(223, 182, 108, 0.48);
    border-radius: 17px 4px 17px 4px;

    color: #ffffff;
    background: transparent;

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    isolation: isolate;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.location-direction-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background: var(--wearch-gold);

    clip-path: circle(0 at 88% 50%);

    transition:
        clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.location-direction-btn:hover::before {
    clip-path: circle(145% at 88% 50%);
}

.location-direction-btn:hover {
    color: #111111;
    transform: translateY(-3px);
}

.location-direction-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 50%;

    background: var(--wearch-gold);
    color: #111111;
}

.location-direction-icon i {
    font-size: 9px;
    transition: transform 0.35s ease;
}

.location-direction-btn:hover .location-direction-icon i {
    transform: rotate(45deg);
}

/* ==========================================================
   BACKGROUND WORD
========================================================== */

.location-background-word {
    position: absolute;
    right: -12px;
    bottom: -38px;
    z-index: -1;

    color: rgba(255, 255, 255, 0.016);

    font-family: var(--heading-font);
    font-size: clamp(105px, 15vw, 230px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 0.03em;

    pointer-events: none;
    user-select: none;
}

/* ==========================================================
   TABLET
========================================================== */

@media only screen and (max-width: 991px) {

    .wearch-location {
        padding: 72px 0;
    }

    .location-heading span {
        padding-left: 22px;
    }

    .location-description {
        max-width: 650px;
        margin: 22px 0 0;
    }

    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-map,
    .location-map iframe {
        min-height: 420px;
    }

    .location-details {
        max-width: 760px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media only screen and (max-width: 767px) {

    .wearch-location {
        padding: 62px 0;
    }

    .location-heading {
        font-size: clamp(34px, 9vw, 45px);
    }

    .location-heading span {
        padding-left: 0;
    }

    .location-description {
        padding-left: 14px;
        font-size: 14px;
    }

    .location-map,
    .location-map iframe {
        min-height: 350px;
    }

    .location-details {
        padding: 23px 20px;
    }

    .location-detail-item {
        padding: 17px 0;
    }

    .location-detail-item strong,
    .location-detail-item a {
        font-size: 14px;
    }

    .location-background-word {
        right: -8px;
        bottom: -12px;
        font-size: 82px;
    }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media only screen and (max-width: 480px) {

    .location-map,
    .location-map iframe {
        min-height: 300px;
    }

    .location-details {
        padding: 20px 17px;
    }

    .location-detail-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 11px;
    }

    .location-detail-icon {
        width: 36px;
        height: 36px;
    }

    .location-direction-btn {
        width: 100%;
    }

    .location-background-word {
        font-size: 64px;
    }
}

/* ==========================================================
   UNIFIED PARAGRAPH TYPOGRAPHY (INDEX & ABOUT PAGE)
========================================================== */

/* Desktop (992px and above) */
@media (min-width: 992px) {

    .hero-content .section-title p,
    .about-editorial-statement p,
    .philosophy-header-intro,
    .philosophy-desc,
    .philosophy-principle-row p,
    .services-header-text,
    .page-hero-intro,
    .about-story-copy p,
    .wearch-who-summary,
    .wearch-who-copy p,
    .wearch-who-note p,
    .foundation-box-text,
    .speciality-intro p,
    .speciality-description p,
    .recognition-intro,
    .location-description,
    .process-header-text,
    .process-card-content p,
    .wearch-voices-intro,
    .wearch-voice-content p,
    .build-description p,
    .architecture-overview-intro,
    .architecture-overview-left p,
    .architecture-sustainability-intro,
    .architecture-sustainability-content p,
    .wearch-chat-message p,
    .service-name p {
        font-family: 'Inter', sans-serif !important;
        font-size: 15px !important;
        line-height: 1.68 !important;
        color: rgba(255, 255, 255, 0.65) !important;
    }
}

/* Tablet & Mobile (below 992px) */
@media (max-width: 991.98px) {

    .hero-content .section-title p,
    .about-editorial-statement p,
    .philosophy-header-intro,
    .philosophy-desc,
    .philosophy-principle-row p,
    .services-header-text,
    .page-hero-intro,
    .about-story-copy p,
    .wearch-who-summary,
    .wearch-who-copy p,
    .wearch-who-note p,
    .foundation-box-text,
    .speciality-intro p,
    .speciality-description p,
    .recognition-intro,
    .location-description,
    .architecture-excellence-copy p,
    .architecture-personalized-content p,
    .architecture-sustainability-intro,
    .architecture-sustainability-content p,
    .wearch-chat-message p,
    .service-name p {
        font-family: 'Inter', sans-serif !important;
        font-size: 13.5px !important;
        line-height: 1.62 !important;
        color: rgba(255, 255, 255, 0.65) !important;
    }
}

/* ==========================================================
   WEARCH FOOTER
========================================================== */

.wearch-footer {
    position: relative;
    padding: 56px 0 20px;
    background: #080808;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font, 'Inter', sans-serif);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.wearch-footer-container {
    position: relative;
}

/* Top Social Bar Area (Positioned Top Right on Desktop) */
.footer-social-wrapper {
    /* position: absolute;
    top: 0;
    right: 0; */
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
}

.footer-social-label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    color: var(--wearch-gold-light, #c89545);
    border-color: var(--wearch-gold-light, #c89545);
    transform: translateY(-2px);
}

/* Main Top Row (3 Columns: Brand, Quick Links, Contact) */
.wearch-footer-main-row {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.5fr) minmax(250px, 1fr);
    gap: 50px;
    align-items: start;
    margin-top: 36px;
    padding-bottom: 36px;
    max-width: 1200px;
}

.footer-col {
    min-width: 0;
}

.footer-col-title {
    margin: 0 0 16px;
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.02em;
}

/* 1. Brand Column */
.wearch-footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.wearch-footer-logo img {
    width: 145px;
    height: auto;
    display: block;
}

.footer-brand-desc {
    margin: 0;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    max-width: 300px;
    text-align: left !important;
}

/* 2. Quick Links Column (5 Links in Single Vertical Column) */
.footer-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-quick-links li a {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-quick-links li a:hover {
    color: var(--wearch-gold-light, #c89545);
}

.footer-contact-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-block {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
}

.contact-values {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-values a {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-values a:hover {
    color: var(--wearch-gold-light, #c89545);
}

.contact-email {
    white-space: nowrap;
    overflow-wrap: anywhere;
    word-break: normal;
}

/* ==========================================================
   TABLET RESPONSIVE (768px TO 991px)
========================================================== */

@media (min-width: 768px) and (max-width: 991.98px) {
    .wearch-footer {
        padding: 56px 0 32px;
    }

    .wearch-footer-main-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 48px;
        margin-top: 24px;
        padding-bottom: 32px;
    }

    .footer-col-brand {
        grid-column: 1;
    }

    .footer-col-links {
        grid-column: 2;
    }

    .footer-col-contact {
        grid-column: 1;
    }

    .footer-social-wrapper {
        position: static;
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-social-label {
        font-family: var(--heading-font, 'Cormorant Garamond', serif);
        font-size: 19px;
        font-weight: 600;
        color: var(--wearch-gold-light, #c89545);
        letter-spacing: 0.02em;
    }

    .footer-social-icons {
        display: flex;
        gap: 10px;
    }

    .wearch-footer-offices {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-office-col {
        padding: 0 0 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-office-col:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* Office Locations Row (Single subtle top divider, 3 vertical columns) */
.wearch-footer-offices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-office-col {
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-office-col:first-child {
    padding-left: 0;
}

.footer-office-col:last-child {
    padding-right: 0;
    border-right: none;
}

.office-col-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.office-num {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.1em;
}

.office-col-head small {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.office-col-head h4 {
    margin: 0 0 0 auto;
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.office-addr {
    margin: 0;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    text-align: left !important;
}

/* Bottom Bar */
.wearch-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy-text {
    margin: 0;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover {
    color: var(--wearch-gold-light, #c89545);
}

.footer-powered {
    margin: 0;
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-powered a:hover {
    color: var(--wearch-gold-light, #c89545);
}

/* ==========================================================
   MOBILE RESPONSIVE (BELOW 768px)
========================================================== */

@media (max-width: 767.98px) {
    .wearch-footer {
        padding: 40px 0 24px;
    }

    .wearch-footer-container {
        display: flex;
        flex-direction: column;
        gap: 26px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .wearch-footer-main-row {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 24px 14px;
        margin-top: 0;
        padding-bottom: 0;
        order: 1;
        width: 100%;
    }

    /* ROW 1: BRAND (Full Width Row) */
    .footer-col-brand {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 18px;
        width: 100%;
    }

    .wearch-footer-logo {
        display: inline-block;
        margin-bottom: 12px;
    }

    .wearch-footer-logo img {
        width: 135px;
        height: auto;
        display: block;
    }

    .footer-brand-desc {
        width: 100%;
        max-width: 240px;
        font-size: 12px !important;
        line-height: 1.58 !important;
        color: rgba(255, 255, 255, 0.65) !important;
        text-align: left !important;
        margin: 0;
    }

    /* ROW 2 - LEFT COL: QUICK LINKS */
    .footer-col-links {
        grid-column: 1;
        width: 100%;
    }

    .footer-col-links .footer-col-title {
        font-size: 17px;
        margin-bottom: 12px;
        text-align: left;
    }

    .footer-quick-links {
        display: flex;
        flex-direction: column;
        gap: 9px;
        padding: 0;
        margin: 0;
    }

    .footer-quick-links li a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
    }

    /* ROW 2 - RIGHT COL: CONTACT */
    .footer-col-contact {
        grid-column: 2;
        width: 100%;
        min-width: 0;
        padding-right: 8px;
    }

    .footer-col-contact .footer-col-title {
        font-size: 17px;
        margin-bottom: 12px;
        text-align: left;
    }

    .footer-contact-rows {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .contact-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        padding-bottom: 0;
        border-bottom: none;
    }

    .contact-label {
        display: block;
        color: var(--wearch-gold-light, #c89545);
        font-family: var(--body-font, 'Inter', sans-serif);
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .contact-values {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 100%;
    }

    .contact-values a {
        font-family: var(--body-font, 'Inter', sans-serif);
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
        white-space: nowrap;
    }

    .contact-email {
        display: inline-block;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        font-size: 11.5px !important;
        letter-spacing: -0.02em;
    }

    /* ROW 3: CONNECT WITH US */
    .footer-social-wrapper {
        position: static;
        order: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 0;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-social-label {
        font-family: var(--heading-font, 'Cormorant Garamond', serif);
        font-size: 17px;
        font-weight: 600;
        color: var(--wearch-gold-light, #c89545);
        letter-spacing: 0.02em;
        text-transform: none;
        margin: 0;
    }

    .footer-social-icons {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-social-icons a {
        width: 34px;
        height: 34px;
        font-size: 11.5px;
    }

    /* 5. Existing Office Locations section unchanged */
    .wearch-footer-offices {
        order: 3;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-office-col {
        padding: 0 0 16px 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-office-col:last-child {
        padding-bottom: 0 !important;
        border-bottom: none;
    }

    /* 6. Existing bottom bar unchanged */
    .wearch-footer-bottom {
        order: 4;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 11.5px;
    }
}

/* Small Screens (Below 576px) */
@media (max-width: 575.98px) {
    .wearch-footer-main-row {
        grid-template-columns: 0.8fr 1.2fr;
        column-gap: 14px;
    }

    .footer-col-contact {
        min-width: 0;
        padding-right: 8px;
    }

    .contact-email {
        display: inline-block;
        white-space: nowrap !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        font-size: 11px !important;
        letter-spacing: -0.02em;
    }
}

/* Extra Small Screens (Below 390px) */
@media (max-width: 390px) {
    .wearch-footer-main-row {
        grid-template-columns: 0.75fr 1.25fr;
        column-gap: 60px !important;
    }

    .footer-col-contact {
        padding-right: 6px;
    }

    .contact-email {
        font-size: 10.5px !important;
        letter-spacing: -0.02em;
    }
}

/* ==========================================================
   WEARCH LUXURY ARCHITECTURAL SERVICES DROPDOWN
========================================================== */

/* Dropdown Container */
.main-menu ul li.dropdown,
.nav-item.dropdown {
    position: relative !important;
}

.main-menu ul li.dropdown>a,
.nav-item.dropdown>.nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer !important;
}

.main-menu ul li.dropdown>a i,
.nav-item.dropdown>.nav-link i {
    font-size: 10px !important;
    transition: transform 220ms ease !important;
}

/* Desktop Dropdown Menu (992px and above) */
@media (min-width: 992px) {

    .main-menu ul ul.services-dropdown,
    .wearch-header .main-menu ul ul.services-dropdown,
    ul.services-dropdown {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 260px !important;
        background: #111111 !important;
        background-color: #111111 !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 6px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        z-index: 1000 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;

        /* Restrained Smooth Animation */
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(8px) !important;
        transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease !important;
    }

    /* Invisible hover bridge to prevent menu from closing when moving cursor */
    .main-menu ul ul.services-dropdown::before,
    ul.services-dropdown::before {
        content: "" !important;
        position: absolute !important;
        top: -14px !important;
        left: 0 !important;
        width: 100% !important;
        height: 14px !important;
        background: transparent !important;
    }

    /* Open trigger via hover or focus */
    .main-menu ul li.dropdown:hover>ul.services-dropdown,
    .main-menu ul li:hover>ul.services-dropdown,
    .nav-item.dropdown:hover .services-dropdown,
    .nav-item.dropdown:focus-within .services-dropdown,
    .nav-item.dropdown.show .services-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    /* Rotate chevron when dropdown is open */
    .main-menu ul li.dropdown:hover>a i,
    .nav-item.dropdown:hover>.nav-link i,
    .nav-item.dropdown:focus-within>.nav-link i,
    .nav-item.dropdown.show>.nav-link i {
        transform: rotate(180deg) !important;
    }

    /* Dropdown List Items - Full Row Coverage */
    .main-menu ul ul.services-dropdown li,
    ul.services-dropdown li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        background: transparent !important;
        box-sizing: border-box !important;
    }

    .main-menu ul ul.services-dropdown li:last-child,
    ul.services-dropdown li:last-child {
        border-bottom: none !important;
    }

    /* Anchor Links - Full Row Active Target */
    .main-menu ul ul.services-dropdown li a,
    ul.services-dropdown li a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 52px !important;
        padding: 12px 20px 12px 18px !important;
        box-sizing: border-box !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        text-decoration: none !important;
        background: transparent !important;
        background-color: transparent !important;
        position: relative !important;
        transition: padding-left 220ms ease, background-color 220ms ease, color 220ms ease !important;
    }

    /* Thin 2px Accent Line on Left Edge */
    .main-menu ul ul.services-dropdown li a::before,
    ul.services-dropdown li a::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 2px !important;
        height: 100% !important;
        background: #c89545 !important;
        transform: scaleY(0) !important;
        transform-origin: center !important;
        transition: transform 220ms ease !important;
    }

    /* Hover & Keyboard Focus - Full Width Background & Accent */
    .main-menu ul ul.services-dropdown li a:hover,
    .main-menu ul ul.services-dropdown li a:focus-visible,
    ul.services-dropdown li a:hover,
    ul.services-dropdown li a:focus-visible {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.04) !important;
        background-color: rgba(255, 255, 255, 0.04) !important;
        padding-left: 26px !important;
        /* Slight 8px right shift */
        outline: none !important;
        width: 100% !important;
    }

    .main-menu ul ul.services-dropdown li a:hover::before,
    .main-menu ul ul.services-dropdown li a:focus-visible::before,
    ul.services-dropdown li a:hover::before,
    ul.services-dropdown li a:focus-visible::before {
        transform: scaleY(1) !important;
    }
}

/* Mobile & Tablet Responsive Submenu (below 991.98px) */
@media (max-width: 991.98px) {

    /* Main Mobile Panel Container */
    .responsive-menu,
    .slicknav_menu {
        background: #FCFBF8 !important;
        background-color: #FCFBF8 !important;
        padding: 8px 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: 0 10px 30px rgba(48, 37, 19, 0.08) !important;
        border: none !important;
        border-top: 1px solid #E6E2D8 !important;
    }

    .slicknav_nav {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* Remove All Bulk, Boxed Cards, & Dark Backgrounds Around Individual Items */
    .slicknav_nav li,
    .slicknav_nav ul,
    .slicknav_nav a,
    .slicknav_item,
    .slicknav_row {
        background: transparent !important;
        background-color: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
        outline: none !important;
    }

    /* Remove Duplicate Left Dashes & Decorative Pseudo Lines */
    .slicknav_nav a::before,
    .slicknav_nav .slicknav_row::before,
    .slicknav_nav a::after,
    .slicknav_nav .slicknav_row::after {
        content: none !important;
        display: none !important;
    }

    /* Reset padding, margins, and borders on SlickNav row wrappers */
    .slicknav_nav .slicknav_row,
    .slicknav_nav .slicknav_item,
    .slicknav_nav .slicknav_txt,
    .slicknav_nav .slicknav_parent {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    /* Top-level navigation list items get ONLY ONE subtle warm bottom divider line */
    .slicknav_nav>li {
        width: 100% !important;
        border-bottom: 1px solid #E6E2D8 !important;
        box-sizing: border-box !important;
    }

    .slicknav_nav>li:last-child {
        border-bottom: none !important;
    }

    /* Top-level menu row container (HOME, ABOUT US, SERVICES, PROJECTS, etc.) - Identical 48px height & 14px left padding */
    .slicknav_nav>li>a,
    .slicknav_nav>li>.slicknav_row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 14px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 12.5px !important;
        font-weight: 600 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        color: #302513 !important;
        text-decoration: none !important;
    }

    /* Inner links inside .slicknav_row get ZERO padding to prevent double padding on Services */
    .slicknav_nav>li>.slicknav_row a,
    .slicknav_nav>li>.slicknav_row .slicknav_txt,
    .slicknav_nav>li>.slicknav_row .slicknav_item {
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
        color: #302513 !important;
        font: inherit !important;
        letter-spacing: inherit !important;
        text-transform: inherit !important;
        text-decoration: none !important;
    }

    /* Active / Hover Row Highlight */
    .slicknav_nav>li:hover>a,
    .slicknav_nav>li:hover>.slicknav_row,
    .slicknav_nav>li.slicknav_open>a,
    .slicknav_nav>li.slicknav_open>.slicknav_row {
        background: rgba(200, 149, 69, 0.06) !important;
        color: #C89545 !important;
    }

    /* Hide SlickNav default duplicate generated arrows completely */
    .slicknav_arrow,
    .slicknav_arrow::before,
    .slicknav_arrow::after {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        opacity: 0 !important;
    }

    /* Single Minimal Chevron Arrow */
    .nav-item.dropdown>a i,
    .slicknav_nav a i,
    .slicknav_row i {
        display: inline-block !important;
        margin-left: auto !important;
        font-size: 10px !important;
        color: #846D55 !important;
        transition: transform 0.25s ease !important;
    }

    .nav-item.dropdown.is-open>a i,
    .nav-item.dropdown.slicknav_open>a i,
    .slicknav_open>a i,
    .slicknav_open>.slicknav_row i {
        transform: rotate(180deg) !important;
        color: #C89545 !important;
    }

    /* Services Submenu Accordion Panel */
    .services-dropdown,
    .slicknav_nav ul,
    .slicknav_nav .services-dropdown {
        display: none !important;
        position: static !important;
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
        background: #F3F0EC !important;
        background-color: #F3F0EC !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-top: 1px solid #E6E2D8 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-sizing: border-box !important;
    }

    /* Open Submenu State */
    .nav-item.dropdown.is-open .services-dropdown,
    .nav-item.dropdown.slicknav_open .services-dropdown,
    .slicknav_nav .slicknav_open>ul,
    .slicknav_nav .slicknav_open>.services-dropdown {
        display: block !important;
    }

    /* Submenu Items */
    .services-dropdown li,
    .slicknav_nav ul li {
        width: 100% !important;
        border-bottom: 1px solid #E6E2D8 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .services-dropdown li:last-child,
    .slicknav_nav ul li:last-child {
        border-bottom: none !important;
    }

    /* Submenu Links - Clean Touch Target */
    .services-dropdown li a,
    .slicknav_nav ul li a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 46px !important;
        padding: 12px 14px 12px 28px !important;
        box-sizing: border-box !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        letter-spacing: 0.01em !important;
        text-transform: none !important;
        color: #5C5243 !important;
        text-decoration: none !important;
        background: transparent !important;
        transition: padding-left 220ms ease, background-color 220ms ease, color 220ms ease !important;
    }

    .services-dropdown li a:hover,
    .services-dropdown li a:active,
    .slicknav_nav ul li a:hover,
    .slicknav_nav ul li a:active {
        color: #C89545 !important;
        background: rgba(200, 149, 69, 0.08) !important;
        padding-left: 32px !important;
    }

    /* Mobile Lets Talk Button Styling - Gold Background & White Text */
    .mobile-contact-item,
    .slicknav_nav .mobile-contact-item {
        border-bottom: none !important;
        margin-top: 14px !important;
        padding: 0 10px 10px !important;
        display: block !important;
    }

    .mobile-contact-link,
    .slicknav_nav .mobile-contact-link,
    .slicknav_nav .mobile-contact-item a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        background: #C89545 !important;
        background-color: #C89545 !important;
        color: #FFFFFF !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
        border: none !important;
        text-decoration: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        transition: background-color 0.3s ease, color 0.3s ease !important;
    }

    .mobile-contact-link span,
    .slicknav_nav .mobile-contact-link span,
    .mobile-contact-link i,
    .slicknav_nav .mobile-contact-link i {
        color: #FFFFFF !important;
    }

    .mobile-contact-link:hover,
    .mobile-contact-link:active,
    .slicknav_nav .mobile-contact-link:hover,
    .slicknav_nav .mobile-contact-link:active {
        background: #A77A3B !important;
        background-color: #A77A3B !important;
        color: #FFFFFF !important;
    }
}

/* Desktop Hide Mobile Contact Button */
@media (min-width: 992px) {
    .mobile-contact-item {
        display: none !important;
    }
}

/*====================================
/*====================================
Architecture Overview (Shared Service Page Section)
====================================*/

.architecture-overview {
    position: relative;
    display: block;
    min-height: auto;
    padding: 85px 0;
    background: linear-gradient(180deg, rgba(200, 169, 106, 0.025) 0%, rgba(13, 12, 10, 0) 140px), #0d0c0a;
    border-top: 1px solid rgba(200, 169, 106, 0.16);
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

/* Centered Section Heading (Styled like index.html Services & Projects headings) */
.architecture-overview h2 {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto 50px auto;
    padding: 0;
    max-width: 100%;
    white-space: normal;
}

.architecture-overview-label,
.overview-divider,
.architecture-overview-intro,
.overview-principles {
    display: none !important;
}

/* Desktop Two-Column Layout */
.architecture-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 43%) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* Left Column: Content */
.architecture-overview-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.testimonial-modal-text p,
.architecture-overview-left p {
    margin: 0 0 16px 0 !important;
    max-width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    text-align: justify !important;
}

.testimonial-text-preview,
.faq-description {
    margin: 0 0 16px 0 !important;
    max-width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    text-align: left !important;
}

.architecture-overview-left p:last-child,
.architecture-overview-left p:last-of-type {
    margin-bottom: 0 !important;
}

/* Right Column: Image */
.architecture-overview-right {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.overview-image {
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 24px;
    border: none;
    box-shadow: none;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
}

/* ----------------------------------------------------------
   Tablet Responsive Adjustments (768px - 1024px)
---------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {
    .wearch-internal-hero {
        height: 220px;
        padding: 24px 0;
    }

    .wearch-internal-hero-title {
        font-size: 34px;
        margin-bottom: 6px;
    }

    .architecture-overview {
        padding: 50px 0;
    }

    .architecture-overview-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .architecture-overview-left {
        display: contents;
    }

    .architecture-overview-left h2 {
        order: 1;
        font-size: 36px;
        text-align: center !important;
        margin: 0 0 24px 0 !important;
        width: 100%;
        color: var(--wearch-gold-light, #c89545);
    }

    .architecture-overview-right {
        order: 2;
        width: 100%;
        margin-bottom: 8px;
    }

    .architecture-overview-left p {
        order: 3;
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: left !important;
        margin: 0 0 16px 0 !important;
    }

    .overview-image {
        width: 100%;
        height: 550px;
        border-radius: 18px;
        overflow: hidden;
    }

    .overview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 18px;
    }
}

/* ----------------------------------------------------------
   Mobile Responsive Adjustments (< 768px)
   Order: Heading "Purposeful Architecture" -> Image -> Paragraphs
---------------------------------------------------------- */
@media (max-width: 767.98px) {
    .architecture-overview {
        padding: 48px 0;
    }

    .architecture-overview-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .architecture-overview-left {
        display: contents;
    }

    .architecture-overview-left h2 {
        order: 1;
        font-size: 28px;
        line-height: 1.25;
        text-align: center;
        margin: 0 0 20px 0 !important;
        width: 100%;
        color: var(--wearch-gold-light, #c89545);
    }

    .architecture-overview-right {
        order: 2;
        width: 100%;
        margin-bottom: 22px;
    }

    .architecture-overview-left p {
        order: 3;
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: left !important;
        margin: 0 0 16px 0 !important;
    }

    .architecture-overview-left p:last-child {
        margin-bottom: 0 !important;
    }

    .overview-image {
        height: 260px;
        border-radius: 16px;
    }

    .overview-image img {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .overview-principles {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }
}

/*==========================================================
   ARCHITECTURE PAGE — FOUR-IMAGE SHOWCASE (FEATURED PROJECTS)
========================================================== */

.architecture-excellence {
    position: relative;
    display: block;
    min-height: auto;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(200, 169, 106, 0.025) 0%, rgba(13, 12, 10, 0) 140px), #0d0c0a;
    border-top: 1px solid rgba(200, 169, 106, 0.16);
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

/* Centered Container Max-Width */
.architecture-excellence>.container {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
}

/* Centered Section Heading Header */
.architecture-excellence-header {
    text-align: center;
    margin-bottom: 48px;
    display: block;
}

.architecture-excellence-meta,
.architecture-excellence-copy {
    display: none !important;
}

.architecture-excellence-title {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    white-space: normal;
}

/* 4-Image Grid (2x2 Desktop, Equal Dimensions) */
.architecture-excellence-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

/* Image Card Wrap */
.architecture-excellence-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(200, 169, 106, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    background: #0d0c0a;
    box-sizing: border-box;
    transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.architecture-excellence-image img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    filter: brightness(1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

/* Desktop Hover Transition */
.architecture-excellence-image:hover {
    border-color: rgba(200, 169, 106, 0.45);
}

.architecture-excellence-image:hover img {
    transform: scale(1.035);
    filter: brightness(1.06);
}

/* ----------------------------------------------------------
   Tablet Responsive Adjustments (768px - 991px)
---------------------------------------------------------- */
@media (max-width: 991.98px) {
    .architecture-excellence {
        padding: 65px 0;
    }

    .architecture-excellence-header {
        margin-bottom: 38px;
    }

    .architecture-excellence-title {
        font-size: 42px;
    }

    .architecture-excellence-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .architecture-excellence-image,
    .architecture-excellence-image img {
        border-radius: 20px;
    }
}

/* ----------------------------------------------------------
   Mobile Responsive Adjustments (< 768px)
---------------------------------------------------------- */
@media (max-width: 767.98px) {
    .architecture-excellence {
        padding: 50px 0;
    }

    .architecture-excellence-header {
        margin-bottom: 26px;
    }

    .architecture-excellence-title {
        font-size: 30px;
    }

    .architecture-excellence-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .architecture-excellence-image,
    .architecture-excellence-image img {
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .architecture-excellence-image img {
        transition: none;
    }

    .architecture-excellence-image:hover img {
        transform: none;
    }
}

/* ==========================================================
   ARCHITECTURE PAGE — PERSONALIZED SERVICES (SECTION 2)
========================================================== */

.architecture-personalized {
    position: relative;
    display: block;
    min-height: auto;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(200, 169, 106, 0.025) 0%, rgba(13, 12, 10, 0) 140px), #0d0c0a;
    border-top: 1px solid rgba(200, 169, 106, 0.16);
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

/* Centered Section Heading */
.architecture-personalized h2 {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto 45px auto;
    padding: 0;
    max-width: 100%;
    white-space: normal;
}

.architecture-personalized-header,
.architecture-personalized-meta,
.architecture-personalized-caption {
    display: none !important;
}

/* Desktop Two-Column Layout (Image Left, Content Right) */
.architecture-personalized-layout {
    display: grid;
    grid-template-columns: minmax(0, 43%) minmax(0, 1fr);
    gap: 64px;
    align-items: stretch;
    width: 100%;
}

/* Left Column: Image Visual */
.architecture-personalized-visual {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
}

.architecture-personalized-image {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.architecture-personalized-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
}

/* Right Column: Content & CTA */
.architecture-personalized-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.architecture-personalized-content p {
    margin: 0 0 16px 0 !important;
    max-width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    text-align: justify !important;
}

.architecture-personalized-content p:last-of-type {
    margin-bottom: 0 !important;
}

/* Compact CTA Link */
.architecture-personalized-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 24px;
    padding-top: 0;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(198, 157, 83, 0.45);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.architecture-personalized-link i {
    color: #c69d53;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.architecture-personalized-link:hover {
    color: #c69d53;
    border-color: #c69d53;
    gap: 12px;
}

.architecture-personalized-link:hover i {
    transform: translateX(4px);
}

/* ----------------------------------------------------------
   Tablet Responsive Adjustments (768px - 1024px)
---------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {
    .architecture-personalized {
        padding: 50px 0;
    }

    .architecture-personalized h2 {
        font-size: 36px;
        text-align: center !important;
        margin-bottom: 28px;
        width: 100%;
    }

    .architecture-personalized-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }

    .architecture-personalized-visual {
        order: 1;
        width: 100%;
        height: auto;
    }

    .architecture-personalized-content {
        order: 2;
        width: 100%;
        height: auto;
    }

    .architecture-personalized-content p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: left !important;
    }

    .architecture-personalized-image {
        width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: auto;
        border-radius: 18px;
        overflow: hidden;
        background: transparent;
    }

    .architecture-personalized-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        border-radius: 18px;
    }

    .architecture-personalized-link {
        margin-top: 20px;
    }
}

/* ----------------------------------------------------------
   Mobile Responsive Adjustments (< 768px)
   Order: Heading (above) -> Image -> Content -> CTA
---------------------------------------------------------- */
@media (max-width: 767.98px) {
    .architecture-personalized {
        padding: 50px 0;
    }

    .architecture-personalized h2 {
        font-size: 30px;
        margin-bottom: 26px;
    }

    .architecture-personalized-layout {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    /* Mobile order: Image second (order: 1), Content third (order: 2) */
    .architecture-personalized-visual {
        order: 1;
        width: 100%;
        height: auto;
    }

    .architecture-personalized-image {
        width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: auto;
        border-radius: 16px;
        overflow: hidden;
        background: transparent;
    }

    .architecture-personalized-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        border-radius: 16px;
    }

    .architecture-personalized-content {
        order: 2;
        width: 100%;
    }

    .architecture-personalized-content p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .architecture-personalized-link {
        margin-top: 20px;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .architecture-personalized-image img {
        transition: none;
    }

    .architecture-personalized-visual:hover .architecture-personalized-image img {
        transform: none;
    }
}

/* ==========================================================
   WEARCH CONTACT PAGE REDESIGN
========================================================== */

/* Section 01: Contact Intro */
.contact-intro-section {
    padding: clamp(80px, 8vh, 120px) 0;
    background: #090909;
}

.contact-intro-left h2 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
}

.contact-intro-left h2 span {
    display: block;
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
}

.contact-intro-text {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-card-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-card-item small {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
}

.contact-info-card-item span,
.contact-info-card-item a {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card-item a:hover {
    color: var(--wearch-gold-light, #c89545);
}

/* Section 02: Contact Form */
.contact-form-section {
    padding: clamp(80px, 8vh, 120px) 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-left h2 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 18px;
}

.contact-form-left h2 span {
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
}

.contact-form-desc {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.65);
    max-width: 440px;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 14px 18px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-form-control:focus {
    outline: none;
    border-color: var(--wearch-gold-light, #c89545);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(200, 149, 69, 0.15);
}

.contact-submit-btn {
    align-self: flex-start;
    /* margin-top: 10px; */
    cursor: pointer;
}

/* Section 03: Our Offices */
.contact-offices-section {
    padding: clamp(80px, 8vh, 120px) 0;
    background: #090909;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-offices-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.contact-offices-header h2 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 14px;
}

.contact-offices-header h2 span {
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
}

.contact-offices-intro {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.65);
}




.office-card-top h3 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.office-card-top h3 span {
    font-size: 12px;
    font-family: var(--body-font, 'Inter', sans-serif);
    color: var(--wearch-gold-light, #c89545);
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.office-card-addr {
    /* font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px; */
    margin: 0 0 16px 0 !important;
    max-width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    /* text-align: justify !important; */

}

.office-card-phone {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    color: var(--wearch-gold-light, #c89545);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.office-card-phone:hover {
    color: #ffffff;
}

.office-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-map-btn:hover {
    color: var(--wearch-gold-light, #c89545);
}

/* Section 04: Maps */
.contact-maps-section {
    padding: 0 0 clamp(80px, 8vh, 120px);
    background: #090909;
}

.contact-maps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-map-item {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map-item iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%) contrast(120%);
    transition: filter 0.3s ease;
}

.contact-map-item iframe:hover {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* Section 05: Social CTA */
.contact-social-cta {
    padding: clamp(80px, 8vh, 120px) 0;
    background: #0d0d0d;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-social-cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.contact-social-cta h3 {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.contact-social-cta h2 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-social-cta h2 span {
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
}

.contact-social-cta p {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    text-align: center !important;
}

.contact-social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.contact-social-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-buttons a:hover {
    color: var(--wearch-gold-light, #c89545);
    border-color: var(--wearch-gold-light, #c89545);
    transform: translateY(-3px);
}

/* Section 06: Service Coverage */
.contact-coverage-section {
    padding: clamp(60px, 6vh, 90px) 0;
    background: #090909;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.contact-coverage-header h3 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 32px;
}

.contact-coverage-header h3 span {
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
}

.contact-coverage-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.contact-coverage-chip {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

.contact-coverage-chip:hover {
    color: var(--wearch-gold-light, #c89545);
    border-color: var(--wearch-gold-light, #c89545);
    background: rgba(200, 149, 69, 0.05);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {

    .contact-maps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {

    .contact-intro-section,
    .contact-form-section,
    .contact-offices-section,
    .contact-social-cta,
    .contact-coverage-section {
        padding: 50px 0;
    }

    .contact-maps-section {
        padding-bottom: 50px;
    }


    .contact-maps-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro-text,
    .contact-form-desc,
    .contact-offices-intro,
    .contact-social-cta p {
        font-size: 13.5px !important;
        line-height: 1.62 !important;

    }
}

/* ==========================================================
   WEARCH BLOG & JOURNAL EDITORIAL REDESIGN
========================================================== */

.blog-articles-section {
    padding: clamp(80px, 8vh, 120px) 0;
    background: #090909;
}

.blog-articles-header {
    margin-bottom: 64px;
}

.blog-articles-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-articles-meta span {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
}

.blog-articles-meta i {
    width: 32px;
    height: 1px;
    background: rgba(200, 149, 69, 0.5);
    display: inline-block;
}

.blog-articles-meta p {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.blog-articles-title {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.blog-articles-title span {
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
}

.blog-articles-list {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.blog-article-item {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease;
}

.blog-article-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.blog-article-item:hover {
    transform: translateY(-4px);
}

.blog-article-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-article-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-article-item:hover .blog-article-image-wrap img {
    transform: scale(1.05);
}

.blog-article-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-article-date {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
    margin-bottom: 14px;
}

.blog-article-heading {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.blog-article-item:hover .blog-article-heading {
    color: var(--wearch-gold-light, #c89545);
}

.blog-article-excerpt {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(200, 149, 69, 0.4);
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-read-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.blog-read-btn:hover {
    color: var(--wearch-gold-light, #c89545);
    border-bottom-color: var(--wearch-gold-light, #c89545);
}

.blog-read-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================
   FULLSCREEN CUSTOM MODAL STYLES
========================================================== */

.blog-custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(9, 9, 9, 0.96);
    backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.blog-custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.blog-modal-container {
    width: 100%;
    max-width: 900px;
    height: 100%;
    overflow-y: auto;
    padding: clamp(60px, 8vh, 100px) 24px 80px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 149, 69, 0.5) transparent;
}

.blog-modal-close {
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 100000;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.85);
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-modal-close:hover {
    border-color: var(--wearch-gold-light, #c89545);
    color: var(--wearch-gold-light, #c89545);
    transform: rotate(90deg);
}

.blog-modal-hero-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
    display: block;
}

.blog-modal-date {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
    margin-bottom: 16px;
}

.blog-modal-title {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 28px;
}

.blog-modal-body {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.blog-modal-body p {
    font-family: var(--body-font, 'Inter', sans-serif) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    margin-bottom: 24px;
}

/* Tablet & Mobile Adjustments */
@media (max-width: 991.98px) {
    .blog-article-item {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 767.98px) {
    .blog-articles-section {
        padding: 50px 0;
    }

    .blog-articles-list {
        gap: 48px;
    }

    .blog-article-item {
        padding-bottom: 48px;
    }

    .blog-article-excerpt {
        font-size: 13.5px !important;
        line-height: 1.62 !important;
    }

    .blog-modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .blog-modal-container {
        padding: 70px 16px 50px;
    }

    .blog-modal-body p {
        font-size: 13.5px !important;
        line-height: 1.68 !important;
    }
}

/* ==========================================================
   WEARCH BLOG & ARTICLE STYLES (BESPOKE ARCHITECTURAL EDITORIAL)
========================================================== */

/* ----------------------------------------------------------
   1. BLOG LISTING PAGE (blog.html) - REFINED .wearch-blog-*
---------------------------------------------------------- */
.wearch-blog-section {
    position: relative;
    padding: 80px 0 80px !important;
    background: linear-gradient(180deg, rgba(200, 169, 106, 0.025) 0%, rgba(13, 12, 10, 0) 140px), #0d0c0a !important;
    border-top: 1px solid rgba(200, 169, 106, 0.16) !important;
    color: #ffffff;
    box-sizing: border-box;
}

.blog-container {
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
}

.wearch-blog-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wearch-blog-title {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Blog Grid (3 Columns Desktop, Centered Last Row, 2 Tablet, 1 Mobile) */
.wearch-blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    width: 100%;
    margin-bottom: 0;
}

.wearch-blog-card {
    position: relative;
    background: #0d0c0a;
    border: 1px solid rgba(200, 169, 106, 0.13);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: calc((100% - 64px) / 3);
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.wearch-blog-card:hover {
    border-color: rgba(200, 169, 106, 0.45);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.wearch-blog-card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Image Wrap with 16:10 Landscape Ratio */
.wearch-blog-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #141414;
    display: block;
}

.wearch-blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1) !important;
    opacity: 1 !important;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

.wearch-blog-card:hover .wearch-blog-card-img-wrap img {
    filter: brightness(1.06) !important;
    transform: scale(1.035);
}

.wearch-blog-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.wearch-blog-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.wearch-blog-category-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #C89545;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wearch-blog-card-heading {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 500;
    line-height: 1.25;
    color: #F5F3EF;
    margin-top: 4px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.wearch-blog-card:hover .wearch-blog-card-heading {
    color: #C89545;
}

.wearch-blog-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(245, 243, 239, 0.65);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wearch-blog-card-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C89545;
    transition: color 0.3s ease;
}

.wearch-blog-card-action span {
    border-bottom: none;
    text-decoration: none;
}

.wearch-blog-card-action i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.wearch-blog-card:hover .wearch-blog-card-action i {
    transform: translateX(4px);
}

/* ==========================================================
   BLOG PAGINATION STYLES (MATCHING GALLERY & PROJECTS PAGES)
========================================================== */

.blog-pagination-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 48px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

ul.blog-pagination {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-wrap: wrap !important;
}

ul.blog-pagination li {
    display: inline-block !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

ul.blog-pagination a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #302513 !important;
    text-decoration: none !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(200, 149, 69, 0.45) !important;
    background-color: #FCFBF8 !important;
    background: #FCFBF8 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
}

ul.blog-pagination a.active,
ul.blog-pagination a.pagination-num.active {
    color: #C89545 !important;
    border-color: #C89545 !important;
    background-color: #FCF6EC !important;
    background: #FCF6EC !important;
    font-weight: 600 !important;
}

ul.blog-pagination a:hover:not(.disabled) {
    color: #FFFFFF !important;
    border-color: #C89545 !important;
    background-color: #C89545 !important;
    background: #C89545 !important;
    text-decoration: none !important;
}

ul.blog-pagination a.disabled {
    color: rgba(48, 37, 19, 0.35) !important;
    border-color: rgba(200, 149, 69, 0.14) !important;
    background-color: rgba(252, 251, 248, 0.75) !important;
    background: rgba(252, 251, 248, 0.75) !important;
    opacity: 0.85 !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* Responsive Media Queries for Blog Section & Grid */
@media (max-width: 991.98px) {
    .wearch-blog-section {
        padding: 65px 0 70px !important;
    }

    .wearch-blog-header {
        margin-bottom: 38px;
    }

    .wearch-blog-grid {
        gap: 24px;
    }

    .wearch-blog-card {
        width: calc((100% - 24px) / 2);
        max-width: 100%;
    }

    .wearch-blog-card-heading {
        font-size: 22px;
    }

    .blog-pagination-wrap {
        margin-top: 40px !important;
    }
}

@media (max-width: 767.98px) {
    .wearch-blog-section {
        padding: 58px 0 62px !important;
    }

    .wearch-blog-header {
        margin-bottom: 28px;
    }

    .wearch-blog-grid {
        gap: 22px;
    }

    .wearch-blog-card {
        width: 100%;
        max-width: 100%;
    }

    .wearch-blog-card-body {
        padding: 18px 20px 20px;
    }

    .wearch-blog-card-heading {
        font-size: 20px;
    }

    .blog-pagination-wrap {
        margin-top: 32px !important;
    }
}

/* ----------------------------------------------------------
   2. BLOG DETAIL PAGE (blog-detail.html) - REFINED CLEAN LIGHT LAYOUT
---------------------------------------------------------- */
body.wearch-blog-detail {
    background-color: #F7F5F2 !important;
    color: #302513 !important;
}

.wearch-detail-section {
    padding: 64px 0 80px;
    background-color: #F7F5F2;
    color: #302513;
}

.wearch-detail-container {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Back Button */
.wearch-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C89545;
    text-decoration: none;
    background: transparent;
    border: none;
    padding-bottom: 2px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.wearch-back-btn i {
    transition: transform 0.25s ease;
}

.wearch-back-btn:hover,
.wearch-back-btn:focus {
    color: #A77A3B;
    outline: none;
}

.wearch-back-btn:hover i {
    transform: translateX(-3px);
}

/* Category & Date Meta Bar */
.wearch-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.wearch-detail-category,
.wearch-detail-meta .wearch-blog-category-text {
    color: #C89545;
    font-weight: 600;
}

.wearch-detail-divider {
    color: #846D55;
}

.wearch-detail-date {
    color: #C89545;
}

/* Main Heading */
.wearch-detail-heading {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(40px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    color: #302513;
    max-width: 100%;
    margin-bottom: 24px;
    text-align: left;
}

/* Feature Image */
.wearch-detail-feature-img {
    width: 100%;
    max-height: 460px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    border: 1px solid #E8E2DD;
    margin: 0 auto 32px;
    display: block;
    box-shadow: 0 8px 24px rgba(74, 58, 42, 0.06);
}

/* Article Body Content Container */
.wearch-detail-body {
    max-width: 100%;
    font-family: var(--body-font, 'Inter', sans-serif);
    text-align: left;
}

/* Single Typography Block for All Paragraph Content */
.article-content,
.wearch-detail-body p,
.wearch-detail-body h2,
.wearch-detail-body h3 {
    font-family: var(--body-font, 'Inter', sans-serif) !important;
    font-size: 17px !important;
    line-height: 1.9 !important;
    font-weight: 400 !important;
    color: #5C5243 !important;
    text-align: left !important;
    margin-bottom: 18px !important;
    margin-top: 0 !important;
    border: none !important;
    padding: 0 !important;
}

/* Responsive Media Queries for Article Detail */
@media (max-width: 991.98px) {
    .wearch-detail-section {
        padding: 48px 0 60px;
    }

    .wearch-detail-container {
        width: 92%;
        max-width: 100%;
        padding: 0;
    }

    .wearch-detail-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .wearch-detail-feature-img {
        max-height: 340px;
        margin: 0 auto 28px;
        border-radius: 16px;
    }

    .article-content,
    .wearch-detail-body p,
    .wearch-detail-body h2,
    .wearch-detail-body h3 {
        font-size: 16px !important;
        line-height: 1.85 !important;
    }
}

@media (max-width: 767.98px) {
    .wearch-detail-section {
        padding: 40px 0 48px;
    }

    .wearch-detail-container {
        width: 92%;
        padding: 0;
    }

    .wearch-detail-heading {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .wearch-detail-feature-img {
        max-height: 260px;
        margin: 0 auto 22px;
        border-radius: 14px;
    }

    .article-content,
    .wearch-detail-body p,
    .wearch-detail-body h2,
    .wearch-detail-body h3 {
        font-size: 15px !important;
        line-height: 1.8 !important;
        margin-bottom: 16px !important;
    }
}


/* ==========================================================
   WEARCH PROJECTS LISTING SECTION
========================================================== */

/* ==========================================================
   WEARCH PROJECTS LISTING SECTION (DARK LUXURY PORTFOLIO)
========================================================== */

.wearch-projects-section {
    padding: 85px 0 95px;
    background-color: #080808;
    border-top: 1px solid rgba(200, 169, 106, 0.14);
    color: #ffffff;
    box-sizing: border-box;
}

.projects-container {
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
}

.projects-section-header {
    text-align: center;
    margin-bottom: 54px;
}

.projects-main-heading {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* 3-Column Desktop Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 36px;
    width: 100%;
    margin-bottom: 0;
}

.project-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: transparent;
    border-radius: 22px;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.project-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(200, 169, 106, 0.12);
    background-color: #111111;
    box-sizing: border-box;
    transition: border-color 0.6s ease;
}

.project-image-wrap::before,
.project-image-wrap::after,
.project-card::before,
.project-card::after {
    display: none !important;
    content: none !important;
}

.project-card:hover .project-image-wrap {
    border-color: rgba(200, 169, 106, 0.45);
}

.project-image-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1) !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

.project-card:hover .project-image-wrap img {
    transform: scale(1.035);
    filter: brightness(1.06) !important;
}

/* Status Pill Badge inside top-right of image */
.project-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 5px 13px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.project-status-badge.status-completed {
    background: #C89545;
    color: #080808;
}

.project-status-badge.status-ongoing {
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid #C89545;
    color: #FFFFFF;
}

/* Hover Gold Circle Arrow Icon inside bottom-right of image */
.project-hover-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, 0.8);
    background: rgba(10, 10, 10, 0.65);
    color: #C89545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.project-card:hover .project-hover-icon {
    opacity: 1;
    transform: scale(1);
}

/* Client Name Below Image */
.project-customer-name {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 500;
    line-height: 1.2;
    color: #F5F3EF;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.project-card:hover .project-customer-name {
    color: #C89545;
}

/* Pagination UI */
.project-pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 0;
}

.project-pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.project-pagination li {
    display: inline-block;
}

.project-pagination a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #302513 !important;
    text-decoration: none !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(200, 149, 69, 0.45) !important;
    background-color: #FCFBF8 !important;
    background: #FCFBF8 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.project-pagination a.active,
.project-pagination a.pagination-num.active {
    color: #C89545 !important;
    border-color: #C89545 !important;
    background-color: #FCF6EC !important;
    background: #FCF6EC !important;
    font-weight: 600 !important;
}

.project-pagination a:hover:not(.disabled) {
    color: #FFFFFF !important;
    border-color: #C89545 !important;
    background-color: #C89545 !important;
    background: #C89545 !important;
    text-decoration: none !important;
}

.project-pagination a.disabled {
    color: rgba(48, 37, 19, 0.35) !important;
    border-color: rgba(200, 149, 69, 0.14) !important;
    background-color: rgba(252, 251, 248, 0.75) !important;
    background: rgba(252, 251, 248, 0.75) !important;
    opacity: 0.85 !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* Responsive Media Queries for Projects */
@media (max-width: 991.98px) {
    .wearch-projects-section {
        padding: 65px 0 75px;
    }

    .projects-section-header {
        margin-bottom: 40px;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 28px;
    }

    .project-image-wrap {
        border-radius: 18px;
    }

    .project-customer-name {
        font-size: 24px;
        margin-top: 14px;
    }

    .project-pagination-wrap {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .wearch-projects-section {
        padding: 48px 0 58px;
    }

    .projects-section-header {
        margin-bottom: 28px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 22px;
    }

    .project-image-wrap {
        border-radius: 16px;
    }

    .project-customer-name {
        font-size: 22px;
        margin-top: 12px;
    }

    .project-pagination-wrap {
        margin-top: 32px;
    }
}

/* ==========================================================
   WEARCH PROJECT DETAIL PAGE STYLES (project-detail.html)
========================================================== */

body.wearch-project-detail {
    background-color: #090909 !important;
    color: #ffffff !important;
}

.wearch-project-info-section {
    padding: 56px 0 40px;
    background-color: #090909;
    color: #ffffff;
}

.wearch-project-info-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.wearch-project-info-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.project-detail-title {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 18px;
}

.project-detail-desc {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
    max-width: 540px;
}

.project-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
}

.spec-value {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

/* Gallery Section */
.wearch-project-gallery-section {
    padding: 20px 0 80px;
    background-color: #090909;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.project-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
    background-color: #161616;
    transition: border-color 0.3s ease;
}

.project-gallery-item:hover {
    border-color: rgba(200, 149, 69, 0.4);
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.03);
}

/* Responsive Media Queries for Project Detail */
@media (max-width: 991.98px) {
    .wearch-project-info-section {
        padding: 44px 0 32px;
    }

    .wearch-project-info-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .project-specs-grid {
        padding: 20px 24px;
        gap: 24px 28px;
    }

    .wearch-project-gallery-section {
        padding: 16px 0 60px;
    }

    .project-gallery-grid {
        gap: 24px;
    }
}

@media (max-width: 767.98px) {
    .wearch-project-info-section {
        padding: 36px 0 28px;
    }

    .project-detail-title {
        font-size: 34px;
    }

    .project-detail-desc {
        font-size: 14.5px;
    }

    .project-specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 18px 20px;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================
   WEARCH GALLERY PAGE STYLES (gallery.html)
========================================================== */

.wearch-gallery-section {
    padding: 80px 0 80px;
    background: linear-gradient(180deg, rgba(200, 169, 106, 0.025) 0%, rgba(13, 12, 10, 0) 140px), #0d0c0a;
    border-top: 1px solid rgba(200, 169, 106, 0.16);
    color: #ffffff;
    box-sizing: border-box;
}

.gallery-container {
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
}

.gallery-section-header {
    text-align: center;
    margin-bottom: 54px;
}

.gallery-title {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Image Gallery Grid (3 Columns Desktop, 2 Tablet, 1 Mobile) */
.wearch-image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 34px;
    width: 100%;
    margin-bottom: 0;
}

.gallery-image-item {
    display: block;
    width: 100%;
}

.gallery-image-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(200, 169, 106, 0.12);
    box-sizing: border-box;
    transition: border-color 0.6s ease;
}

.gallery-image-wrap:hover {
    border-color: rgba(200, 169, 106, 0.45);
}

.gallery-image-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

.gallery-image-wrap:hover img {
    transform: scale(1.035);
    filter: brightness(1.06);
}

/* Hover Gold Circle Arrow Icon */
.gallery-hover-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, 0.8);
    background: rgba(10, 10, 10, 0.65);
    color: #C89545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-image-wrap:hover .gallery-hover-icon {
    opacity: 1;
    transform: scale(1);
}

/* Gallery Pagination UI */
.gallery-pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 0;
}

.gallery-pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-pagination li {
    display: inline-block;
}

.gallery-pagination a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #302513 !important;
    text-decoration: none !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(200, 149, 69, 0.45) !important;
    background-color: #FCFBF8 !important;
    background: #FCFBF8 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.gallery-pagination a.active,
.gallery-pagination a.pagination-num.active {
    color: #C89545 !important;
    border-color: #C89545 !important;
    background-color: #FCF6EC !important;
    background: #FCF6EC !important;
    font-weight: 600 !important;
}

.gallery-pagination a:hover:not(.disabled) {
    color: #FFFFFF !important;
    border-color: #C89545 !important;
    background-color: #C89545 !important;
    background: #C89545 !important;
    text-decoration: none !important;
}

.gallery-pagination a.disabled {
    color: rgba(48, 37, 19, 0.35) !important;
    border-color: rgba(200, 149, 69, 0.14) !important;
    background-color: rgba(252, 251, 248, 0.75) !important;
    background: rgba(252, 251, 248, 0.75) !important;
    opacity: 0.85 !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* Responsive Media Queries for Gallery */
@media (max-width: 991.98px) {
    .wearch-gallery-section {
        padding: 65px 0 65px;
    }

    .gallery-container {
        width: 92%;
    }

    .gallery-section-header {
        margin-bottom: 40px;
    }

    .wearch-image-gallery {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 26px;
    }

    .gallery-image-wrap {
        border-radius: 18px;
    }

    .gallery-pagination-wrap {
        margin-top: 40px;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .wearch-gallery-section {
        padding: 58px 0 50px;
    }

    .gallery-section-header {
        margin-bottom: 28px;
    }

    .wearch-image-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 100%;
    }

    .gallery-image-wrap {
        border-radius: 16px;
    }

    .gallery-pagination-wrap {
        margin-top: 32px;
        margin-bottom: 0;
    }
}

.gallery-video-play {
    width: 50px;
    height: 50px;
    font-size: 14px;
}

.gallery-pagination-wrap {
    margin-top: 24px;
    margin-bottom: 40px;
}

.gallery-pagination {
    gap: 8px;
}

.wearch-video-gallery {
    padding-top: 36px;
}

/* ==========================================================
   REFINED SINGLE-LINE HEADER QUOTE BUTTON & MODAL STYLES
========================================================== */

/* Single-Line Desktop Header Quote Button */
.wearch-talk-btn,
.quote-modal-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    min-height: 54px !important;
    height: 54px !important;
    padding: 0 26px !important;
    width: auto !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    background-color: #0d0d0d !important;
    border: 1px solid rgba(200, 149, 69, 0.45) !important;
    border-radius: 10px !important;
    font-family: var(--body-font, 'Inter', sans-serif) !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

.wearch-talk-btn span,
.quote-modal-trigger span {
    white-space: nowrap !important;
}

.wearch-talk-btn i,
.quote-modal-trigger i {
    font-size: 11px !important;
    transition: transform 0.3s ease !important;
}

.wearch-talk-btn:hover,
.quote-modal-trigger:hover {
    background-color: var(--wearch-gold-light, #c89545) !important;
    border-color: var(--wearch-gold-light, #c89545) !important;
    color: #000000 !important;
}

.wearch-talk-btn:hover i,
.quote-modal-trigger:hover i {
    transform: translateX(4px) !important;
}

/* Outer Modal Backdrop Container */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 16px;
    box-sizing: border-box;
}

.quote-modal.is-open {
    visibility: visible;
    opacity: 1;
}

/* Full Viewport Overlay - Soft Translucent Warm Backdrop */
.quote-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48, 37, 19, 0.38) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Dialog Container Box - Warm Ivory (#F7F5F2) Surface */
.quote-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - 32px));
    max-height: calc(100svh - 32px);
    overflow-y: auto;
    background-color: #F7F5F2 !important;
    background: #F7F5F2 !important;
    border: 1px solid rgba(200, 149, 69, 0.25) !important;
    border-radius: 12px;
    padding: 22px 28px;
    box-sizing: border-box;
    box-shadow: 0 18px 50px rgba(48, 37, 19, 0.14) !important;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.quote-modal.is-open .quote-modal-dialog {
    transform: translateY(0);
}

/* Close X Button - Clean Ivory Button (#FCFBF8) */
.quote-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.30) !important;
    color: #302513 !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    line-height: 1 !important;
    padding: 0 !important;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.quote-modal-close:hover,
.quote-modal-close:focus-visible {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
    outline: none;
}

/* Modal Header - Dark Warm Brown Title & Subtitle */
.quote-modal-header {
    margin-bottom: 14px;
    padding-right: 30px;
}

.quote-modal-title {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 500;
    line-height: 1.1;
    color: #302513 !important;
    margin-bottom: 4px;
}

.quote-modal-subtitle {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    line-height: 1.4;
    color: #5C5243 !important;
    margin-bottom: 0;
}

/* Form Layout - Compact Grid */
.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin-bottom: 0;
}

.quote-form-field {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quote-form-field.full-width {
    grid-column: 1 / -1;
}

.quote-form-field label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #5C5243 !important;
    margin-bottom: 4px;
}

.quote-form-input {
    width: 100%;
    height: 40px;
    background-color: #FCFBF8 !important;
    background: #FCFBF8 !important;
    border: 1px solid #DDD5CC !important;
    border-radius: 6px;
    padding: 0 14px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    color: #302513 !important;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.quote-form-input::placeholder {
    color: #958B7F !important;
    opacity: 0.9 !important;
}

.quote-form-input:focus {
    border-color: #C89545 !important;
    box-shadow: 0 0 0 2px rgba(200, 149, 69, 0.10) !important;
    outline: none;
}

textarea.quote-form-input {
    height: auto;
    min-height: 64px;
    padding: 8px 12px;
    resize: vertical;
}

/* Submit Action & Success Notice */
.quote-form-actions {
    text-align: center;
    margin-top: 14px;
}

.quote-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 30px;
    background: #C89545 !important;
    background-color: #C89545 !important;
    border: 1px solid #C89545 !important;
    border-radius: 6px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF !important;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}

.quote-submit-btn:hover,
.quote-submit-btn:focus-visible {
    background: #A77A3B !important;
    background-color: #A77A3B !important;
    border-color: #A77A3B !important;
    color: #FFFFFF !important;
    outline: none;
}

.quote-form-success {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 14px;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 14px;
    text-align: center;
}

/* Short-Height Desktop Screens */
@media (max-height: 760px) and (min-width: 768px) {
    .quote-modal-dialog {
        padding: 18px 24px;
    }

    .quote-modal-header {
        margin-bottom: 12px;
    }

    .quote-modal-title {
        font-size: 28px;
        margin-bottom: 3px;
    }

    .quote-modal-subtitle {
        font-size: 12.5px;
    }

    .quote-form-grid {
        gap: 8px 14px;
    }

    .quote-form-input {
        height: 38px;
    }

    textarea.quote-form-input {
        min-height: 56px;
    }

    .quote-form-actions {
        margin-top: 12px;
    }

    .quote-submit-btn {
        min-height: 38px;
    }
}

/* Responsive Media Queries */
@media (max-width: 767.98px) {
    .quote-modal {
        padding: 12px;
    }

    .quote-modal-dialog {
        width: 100%;
        max-height: calc(100svh - 24px);
        padding: 18px 16px;
        border-radius: 12px;
    }

    .quote-modal-header {
        margin-bottom: 12px;
        padding-right: 28px;
    }

    .quote-modal-title {
        font-size: 26px;
        margin-bottom: 3px;
    }

    .quote-modal-subtitle {
        font-size: 12px;
        line-height: 1.35;
    }

    .quote-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
    }

    .quote-form-input {
        height: 38px;
        font-size: 13px;
        padding: 0 10px;
    }

    textarea.quote-form-input {
        min-height: 56px;
        padding: 8px 10px;
    }

    .quote-form-actions {
        margin-top: 12px;
    }

    .quote-submit-btn {
        width: 100%;
        min-height: 40px;
        font-size: 12px;
    }
}

/* ==========================================================
   WEARCH DEVELOPERS FLOATING CONTACT CHAT WIDGET
========================================================== */

/* Floating Trigger Button - Warm Light Ivory (#FCFBF8) Pill */
.wearch-chat-toggle {
    position: fixed;
    bottom: 56px;
    right: 20px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 16px;
    background-color: #FCFBF8 !important;
    background: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.35) !important;
    border-radius: 999px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #302513 !important;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.12) !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

.wearch-chat-toggle i {
    font-size: 13px;
    color: #C89545 !important;
    transition: color 0.3s ease;
}

.wearch-chat-toggle:hover,
.wearch-chat-toggle.active {
    background-color: #FCFBF8 !important;
    border-color: #C89545 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(48, 37, 19, 0.16) !important;
}

.wearch-chat-toggle:hover i,
.wearch-chat-toggle.active i {
    color: #A77A3B !important;
}

/* Chat Widget Window Container - Warm Ivory (#F7F5F2) Surface (295px Compact Width) */
.wearch-chat-widget {
    position: fixed;
    bottom: 108px;
    right: 20px;
    z-index: 99999;
    width: 295px !important;
    max-height: calc(100svh - 105px);
    overflow-y: auto;
    background-color: #F7F5F2 !important;
    background: #F7F5F2 !important;
    border: 1px solid rgba(200, 149, 69, 0.22) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 50px rgba(48, 37, 19, 0.14) !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-sizing: border-box;
}

.wearch-chat-widget.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Chat Header - Compact Warm Header */
.wearch-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px !important;
    min-height: auto;
    background-color: #F7F5F2 !important;
    border-bottom: 1px solid rgba(74, 58, 42, 0.10) !important;
}

.wearch-chat-brand {
    display: flex;
    align-items: center;
    gap: 9px;
}

.wearch-chat-brand img {
    width: 30px;
    height: auto;
    max-height: 30px;
    object-fit: contain;
}

.wearch-chat-brand strong {
    display: block;
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 19px !important;
    font-weight: 500;
    color: #302513 !important;
    line-height: 1.1;
}

.wearch-chat-status {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 10.5px;
    color: #846D55 !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 1px;
}

.wearch-chat-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #28a745 !important;
    display: inline-block;
}

.wearch-chat-close {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.25) !important;
    color: #302513 !important;
    font-size: 11px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    line-height: 1 !important;
    padding: 0 !important;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.wearch-chat-close:hover {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

/* Chat Body */
.wearch-chat-body {
    padding: 12px !important;
}

/* Timestamp Removed from UI */
.wearch-chat-time {
    display: none !important;
}

.wearch-chat-message {
    background-color: #FCFBF8 !important;
    background: #FCFBF8 !important;
    border: 1px solid #E5DDD4 !important;
    border-radius: 11px !important;
    padding: 10px 12px !important;
    margin-bottom: 11px !important;
}

.wearch-chat-message p {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #5C5243 !important;
    margin: 0;
}

.wearch-chat-connect-title {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #302513 !important;
    margin-bottom: 8px !important;
    line-height: 1.2;
}

/* Action Buttons Grid - 2x2 Layout */
.wearch-chat-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.wearch-chat-action {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 38px !important;
    padding: 7px 9px !important;
    background-color: #FCFBF8 !important;
    background: #FCFBF8 !important;
    border: 1px solid #E5DDD4 !important;
    border-radius: 10px !important;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
    box-sizing: border-box;
}

.wearch-chat-action i {
    font-size: 13px !important;
    color: #C89545 !important;
    transition: color 0.25s ease;
    flex-shrink: 0;
}

.wearch-chat-action span {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11.5px !important;
    font-weight: 500;
    color: #302513 !important;
    line-height: 1.2;
}

.wearch-chat-action:hover {
    background-color: #FCFBF8 !important;
    border-color: rgba(200, 149, 69, 0.45) !important;
    transform: translateY(-2px) !important;
}

/* Chat Responsive Overrides */
@media (max-width: 767.98px) {
    .wearch-chat-toggle {
        bottom: 12px;
        right: 12px;
        min-height: 40px;
        padding: 0 13px;
        font-size: 10.5px;
    }

    .wearch-chat-widget {
        left: auto;
        right: 12px;
        bottom: 64px;
        width: min(290px, calc(100% - 24px)) !important;
        max-height: calc(100svh - 78px);
        border-radius: 16px !important;
    }

    .wearch-chat-header {
        padding: 9px 11px !important;
    }

    .wearch-chat-brand img {
        width: 28px;
        max-height: 28px;
    }

    .wearch-chat-brand strong {
        font-size: 18px !important;
    }

    .wearch-chat-close {
        width: 28px !important;
        height: 28px !important;
    }

    .wearch-chat-body {
        padding: 10px !important;
    }

    .wearch-chat-message {
        padding: 9px 11px !important;
    }

    .wearch-chat-message p {
        font-size: 12.5px !important;
    }

    .wearch-chat-action {
        min-height: 36px !important;
        padding: 6px 8px !important;
    }

    .wearch-chat-action i {
        font-size: 12.5px !important;
    }

    .wearch-chat-action span {
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .wearch-chat-toggle {
        min-height: 38px;
        font-size: 10px;
    }

    .wearch-chat-widget {
        left: 10px;
        right: 10px;
        bottom: 60px;
        width: calc(100% - 20px) !important;
        max-height: calc(100svh - 72px);
    }

    .wearch-chat-header {
        padding: 8px 10px !important;
    }

    .wearch-chat-brand img {
        width: 26px;
        max-height: 26px;
    }

    .wearch-chat-brand strong {
        font-size: 17px !important;
    }

    .wearch-chat-status {
        font-size: 10px !important;
    }

    .wearch-chat-body {
        padding: 9px !important;
    }

    .wearch-chat-message p {
        font-size: 12px !important;
    }

    .wearch-chat-connect-title {
        font-size: 10.5px !important;
    }

    .wearch-chat-action {
        min-height: 36px !important;
    }

    .wearch-chat-action span {
        font-size: 10.5px !important;
    }
}

/* ==========================================================
   WEARCH DEVELOPERS MAGNIFIC POPUP LIGHTBOX THEME
========================================================== */

/* Warm Greige Backdrop Overlay - Refined Architectural Tone (#E7E1D8) */
.mfp-bg.mfp-wearch-theme,
.mfp-bg {
    background: rgba(231, 225, 216, 0.94) !important;
    background-color: rgba(231, 225, 216, 0.94) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mfp-bg.mfp-ready {
    opacity: 1 !important;
}

.mfp-bg.mfp-removing {
    opacity: 0 !important;
}


/* Lightbox Outer Container & Alignment - Positioned strictly below navbar with 25px breathing room */
.mfp-container {
    padding: 115px 60px 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Lightbox Content Container - Moderately Reduced Size (76vw x 100vh-150px) */
.mfp-wrap.mfp-wearch-theme .mfp-content,
.mfp-wrap .mfp-content {
    width: auto !important;
    max-width: 76vw !important;
    max-height: calc(100vh - 150px) !important;
    position: relative !important;
    margin: 0 auto !important;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}

.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.96);
}

/* Lightbox Figure Structure - Premium 20px Rounded Corners & Minimal Border */
.mfp-figure {
    position: relative !important;
    max-width: 76vw !important;
    max-height: calc(100vh - 150px) !important;
    display: flex !important;
    flex-direction: column !important;
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.18) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 16px 40px rgba(74, 58, 42, 0.14) !important;
}

.mfp-figure figure {
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Lightbox Image - Fit Inside Viewport Below Navbar Without Cropping */
img.mfp-img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 76vw !important;
    max-height: calc(100vh - 150px) !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: none !important;
}

/* Remove / Hide Caption Title, Counter & Bottom Bar */
.mfp-bottom-bar,
.mfp-title,
.mfp-counter {
    display: none !important;
}

/* Close (X) Button - Positioned Top-Right of Modal Container with Perfect Flex Centering */
.mfp-wearch-theme .mfp-close,
.mfp-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    border-radius: 50% !important;
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.40) !important;
    color: #302513 !important;
    font-size: 18px !important;
    font-family: var(--body-font, 'Inter', sans-serif) !important;
    text-align: center !important;
    opacity: 1 !important;
    cursor: pointer !important;
    z-index: 10007 !important;
    box-shadow: 0 4px 12px rgba(74, 58, 42, 0.08) !important;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}

.mfp-wearch-theme .mfp-close:hover,
.mfp-close:hover {
    background: #C89545 !important;
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

/* Prev / Next Navigation Controls - Hidden from UI */
.mfp-arrow,
.mfp-arrow-left,
.mfp-arrow-right {
    display: none !important;
}

/* Lightbox Mobile Responsive Overrides (<768px) */
@media (max-width: 767.98px) {
    .mfp-container {
        padding: 95px 16px 20px !important;
    }

    .mfp-wrap.mfp-wearch-theme .mfp-content,
    .mfp-wrap .mfp-content,
    .mfp-figure {
        max-width: 90vw !important;
        max-height: calc(100vh - 120px) !important;
    }

    img.mfp-img {
        max-width: 90vw !important;
        max-height: calc(100vh - 120px) !important;
    }

    .mfp-close {
        top: 8px !important;
        right: 8px !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        line-height: 1 !important;
        font-size: 16px !important;
    }
}


/* Lightbox Small Mobile Overrides (<480px) */
@media (max-width: 480px) {
    .mfp-container {
        padding: 85px 12px 16px !important;
    }

    .mfp-wrap.mfp-wearch-theme .mfp-content,
    .mfp-wrap .mfp-content,
    .mfp-figure {
        max-width: 92vw !important;
        max-height: calc(100vh - 110px) !important;
    }

    img.mfp-img {
        max-width: 92vw !important;
        max-height: calc(100vh - 110px) !important;
    }

    .mfp-close {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        line-height: 1 !important;
        font-size: 15px !important;
    }
}




/* ==========================================================
   WEARCH DEVELOPERS REWORKED CONTACT PAGE STYLING
========================================================== */

body.contact-page {
    background-color: #080808 !important;
    color: #ffffff;
}

/* Shared Section Subtitles & Titles */
.wearch-contact-subtitle {
    display: block;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
    margin-bottom: 8px;
}

.wearch-contact-title {
    /* font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 52px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 28px; */

    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    /* color: #FFFFFF; */
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    /* text-transform: uppercase; */
    margin: 0 0 16px 0;
    line-height: 1.1;
    text-align: center;
}

.wearch-contact-title span {
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
    font-weight: 400;
}

/* ==========================================================
   UNIFIED PREMIUM CONTACT SECTION (DARK LUXURY)
========================================================== */

.wearch-unified-contact {
    position: relative;
    width: 100%;
    padding: 85px 0 95px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    overflow: hidden;
}

.contact-unified-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-unified-grid {
    display: grid;
    grid-template-columns: 44% 52%;
    justify-content: space-between;
    align-items: start;
    gap: 4%;
    width: 100%;
}

/* Headings Alignment */
.contact-col-heading {

    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    /* color: #FFFFFF; */
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    /* text-transform: uppercase; */
    margin: 0 0 16px 0;
    line-height: 1.1;
    /* text-align: center; */
}

/* Left Column: Contact Details */
.contact-details-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}

.contact-detail-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-detail-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail-label {
    color: #C89545;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
}

.contact-detail-values {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail-values a,
.contact-detail-values span {
    color: #F5F3EF;
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: break-word;
    transition: color 0.3s ease;
}

.contact-detail-values a:hover {
    color: #C89545;
}

/* Right Column: Contact Form */
.contact-form-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.wearch-contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Form Row Grid (Desktop: 2 columns per row) */
.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.wearch-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.wearch-form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Form Inputs & Textarea */
.wearch-form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

textarea.wearch-form-control {
    min-height: 110px;
    resize: vertical;
}

.wearch-form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.wearch-form-control:focus {
    outline: none;
    border-color: #C89545;
    background: #141414;
}

/* Submit Button Wrap */
.wearch-form-submit-wrap {
    margin-top: 8px;
}

/* .contact-submit-btn overridden by master CTA button styling */

/* Tablet Responsive */
@media only screen and (max-width: 991px) {
    .wearch-unified-contact {
        padding: 65px 0 75px;
    }

    .contact-unified-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .contact-col-heading {
        font-size: clamp(24px, 3vw, 34px);
        margin-bottom: 24px;
    }
}

/* Mobile Responsive */
@media only screen and (max-width: 767px) {
    .wearch-unified-contact {
        padding: 48px 0 58px;
    }

    .contact-unified-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .form-row-two {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-col-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contact-details-list {
        gap: 16px;
    }

    .contact-detail-group {
        padding-bottom: 14px;
    }

    .contact-detail-values a,
    .contact-detail-values span {
        font-size: 14.5px;
    }

    .wearch-form-control {
        min-height: 46px;
        font-size: 14px;
    }

    .contact-submit-btn {
        width: auto !important;
        max-width: 100% !important;
        display: inline-flex !important;
        min-height: 48px !important;
    }
}

/* 3. Visit Our Offices Section */
.wearch-contact-offices-section {
    padding: 78px 0 88px !important;
    background-color: #0a0a0a !important;
}

.wearch-offices-header {
    text-align: center;
    margin-bottom: 36px;
}

.wearch-offices-header .wearch-contact-subtitle {
    text-align: center;
}

.wearch-offices-header .wearch-contact-title {
    font-size: 52px;
    text-align: center;
    margin-bottom: 12px;
}

.wearch-contact-title {

    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    /* color: #FFFFFF; */
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    /* text-transform: uppercase; */
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.wearch-offices-intro {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.wearch-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.wearch-office-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.wearch-office-card:hover {
    border-color: rgba(200, 149, 69, 0.45);
    transform: translateY(-3px);
}

.office-card-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #000000;
}

.office-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.wearch-office-card:hover .office-card-media img {
    transform: scale(1.04);
}

.office-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.office-card-type {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
    margin-bottom: 6px;
    display: block;
}

.office-card-city {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 12px;
}

.office-card-addr {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 10px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.office-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.office-card-phone {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.office-card-phone:hover {
    color: var(--wearch-gold-light, #c89545);
}

.office-map-link {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--wearch-gold-light, #c89545);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.office-map-link:hover {
    color: #ffffff;
    transform: translateX(2px);
}

/* Contact Page Responsive Overrides */
@media (max-width: 991.98px) {
    .wearch-contact-intro-section {
        padding: 60px 0 !important;
    }

    .wearch-contact-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wearch-contact-form-section {
        padding: 58px 0 !important;
    }

    .wearch-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wearch-contact-title {
        font-size: 48px;
    }

    .wearch-contact-main-heading {
        font-size: 48px;
    }

    .wearch-contact-offices-section {
        padding: 68px 0 !important;
    }

    .wearch-offices-header .wearch-contact-title {
        font-size: 44px;
    }

    .wearch-offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .office-card-media {
        height: 210px;
    }
}

@media (max-width: 767.98px) {
    .wearch-contact-intro-section {
        padding: 50px 0 !important;
    }

    .wearch-contact-form-section {
        padding: 48px 0 !important;
    }

    .wearch-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wearch-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wearch-contact-title {
        font-size: 44px;
    }

    .wearch-contact-main-heading {
        font-size: 46px;
    }

    .wearch-contact-main-desc {
        font-size: 14px;
        line-height: 1.62;
    }

    .contact-item-values {
        font-size: 15px;
    }

    .wearch-contact-offices-section {
        padding: 56px 0 !important;
    }

    .wearch-offices-header .wearch-contact-title {
        font-size: 40px;
    }

    .wearch-offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .office-card-media {
        height: 210px;
    }

    .office-card-body {
        padding: 20px;
    }

    .office-card-city {
        font-size: 26px;
    }

    .office-card-addr {
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    .wearch-contact-title {
        font-size: 38px;
    }

    .wearch-contact-main-heading {
        font-size: 38px;
    }

    .wearch-offices-header .wearch-contact-title {
        font-size: 38px;
    }

    .office-card-media {
        height: 195px;
    }

    .office-card-city {
        font-size: 24px;
    }

    .office-card-footer {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ==========================================================
   WEARCH ABOUT PAGE - DIRECTOR / LEADERSHIP SECTION
========================================================== */

.wearch-director {
    padding: 80px 0;
    background-color: #080808;
    position: relative;
    min-height: 0;
    height: auto;
}

.wearch-director-grid {
    display: grid;
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    gap: 80px;
    align-items: start;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .wearch-director-grid {
        gap: 50px;
    }
}

/* Left Column: Visual Media */
.director-media {
    width: 100%;
    height: 440px;
    background-color: #121212;
    border-radius: 16px;
    border: none;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    margin: 0;
    position: relative;
}

.director-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.director-caption {
    display: none;
}

/* Right Column: Editorial & Leadership Message */
.wearch-director-content {
    padding-top: 0;
}

.wearch-director-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.wearch-director-eyebrow span {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: var(--wearch-gold-light, #c89545);
}

.wearch-director-eyebrow i {
    width: 24px;
    height: 1px;
    background: rgba(200, 149, 69, 0.4);
    display: inline-block;
}

.wearch-director-eyebrow p {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
    margin: 0;
}

.wearch-director-title {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 58px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.03;
    margin-bottom: 24px;
}

.wearch-director-title span {
    color: var(--wearch-gold-light, #c89545);
    font-style: italic;
    font-weight: 400;
    display: block;
}

.wearch-director-meta {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.director-name {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.1;
}

.director-role {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
    display: block;
}

.wearch-director-message p {


    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.76);
    font-family: 'Inter', sans-serif;
    font-size: 15.5px !important;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    text-align: justify;
}

.wearch-director-signature {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 21px;
    font-style: italic;
    color: var(--wearch-gold-light, #c89545);
    margin-top: 24px;
    margin-bottom: 0;
}

/* Director Section Responsive Overrides */
@media (max-width: 991.98px) {
    .wearch-director {
        padding: 65px 0;
    }

    .wearch-director-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .director-media {
        height: 420px;
        border-radius: 14px;
    }

    .wearch-director-title {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .wearch-director {
        padding: 52px 0;
    }

    .wearch-director-grid {
        gap: 32px;
    }

    .director-media {
        height: 390px;
        border-radius: 12px;
    }

    .wearch-director-title {
        font-size: 44px;
    }

    .director-name {
        font-size: 28px;
    }

    .wearch-director-message p {
        font-size: 13.5px;
        line-height: 1.62;
        /* text-align: justify; */

    }

    .wearch-director-signature {
        font-size: 19px;
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .director-media {
        height: 360px;
        border-radius: 12px;
    }

    .wearch-director-title {
        font-size: 38px;
    }
}

/* Tablet Director Image Framing Fix (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .director-media {
        height: 520px;
    }

    .director-media img {
        object-fit: cover;
        object-position: center 12%;
    }
}

/* ==========================================================
   WEARCH CAREERS PAGE STYLING
========================================================== */

body.careers-page {
    background-color: #080808 !important;
    color: #ffffff;
}

/* 1. Careers Introduction Section */
.wearch-careers-intro {
    padding: 75px 0 !important;
    background-color: #080808 !important;
}

.careers-intro-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 80px;
    align-items: start;
}

.careers-intro-text {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.careers-intro-sub {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 18px;
    font-style: italic;
    color: var(--wearch-gold-light, #c89545);
    margin-top: 20px;
    margin-bottom: 0;
}

.careers-contact-link {
    color: var(--wearch-gold-light, #c89545);
    text-decoration: none;
    transition: color 0.25s ease;
}

.careers-contact-link:hover {
    color: #ffffff;
}

/* 2. Current Openings Section */
.wearch-openings-section {
    padding: 80px 0 !important;
    background-color: #0a0a0a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.careers-openings-header {
    margin-bottom: 36px;
}

.career-list-wrapper {
    width: 100%;
}

.career-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.career-header-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1fr 1.3fr 0.9fr;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wearch-gold-light, #c89545);
}

.career-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1fr 1.3fr 0.9fr;
    gap: 16px;
    align-items: center;
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.career-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(200, 149, 69, 0.3);
}

.career-cell {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
}

.vacancy-title {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.career-field-label {
    display: none;
}

.career-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: var(--wearch-gold-light, #c89545);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.career-apply-btn:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* 3. Careers Application Form Section (Centered Compact Panel) */
.wearch-cv-section {
    position: relative;
    width: 100%;
    padding: 70px 0 75px !important;
    background-image: url('../images/wearch-images/cta-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #080808 !important;
    box-sizing: border-box;
    overflow: hidden;
}

.careers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 7, 0.88);
    z-index: 1;
}

.careers-single-container {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 940px;
    margin: 0 auto;
}

/* Centered Header Above Form */
.careers-section-header {
    text-align: center;
    margin-bottom: 26px;
}

.careers-main-title {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    /* color: #FFFFFF; */
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    /* text-transform: uppercase; */
    margin: 0 0 16px 0;
    line-height: 1.1;

}

/* Visually Hidden Class for Accessible Form Labels */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Centered Translucent Form Card */
.careers-panel-card {
    background: rgba(7, 7, 7, 0.88);
    border: 1px solid rgba(200, 169, 106, 0.16);
    border-radius: 18px;
    padding: 30px 36px;
    box-sizing: border-box;
    width: 100%;
}

.wearch-careers-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

/* 2-Column Grid Row */
.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}

.wearch-form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.compact-field-label {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

/* Compact Inputs (52px Height, 8px Radius) */
.wearch-form-control {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

textarea.wearch-form-control {
    height: 110px;
    min-height: 105px;
    max-height: 140px;
    padding: 12px 16px;
    resize: vertical;
}

.wearch-form-control::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.wearch-form-control:focus {
    outline: none;
    border-color: #C89545;
    background: rgba(255, 255, 255, 0.05);
}

/* File Upload Field */
.career-file-field {
    position: relative;
    width: 100%;
}

.career-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.career-file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px dashed rgba(200, 169, 106, 0.3);
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.career-file-label:hover,
.career-file-input:focus+.career-file-label {
    border-color: #C89545;
    background: rgba(200, 169, 106, 0.06);
}

.career-file-label i {
    color: #C89545;
    font-size: 16px;
}

.file-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.file-name.has-file {
    color: #dfb66c;
    font-weight: 600;
}

.wearch-cv-remove-btn {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 5px 12px;
    background: rgba(223, 182, 108, 0.12);
    border: 1px solid rgba(223, 182, 108, 0.35);
    border-radius: 6px;
    color: #dfb66c;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wearch-cv-remove-btn:hover {
    background: rgba(223, 182, 108, 0.25);
    color: #ffffff;
    border-color: #dfb66c;
}

/* Centered Compact Submit Button */
.wearch-form-submit-wrap.centered {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

/* .contact-submit-btn overridden by master CTA button styling */

/* Tablet & Mobile Responsive */
@media (max-width: 991.98px) {
    .wearch-careers-intro {
        padding: 60px 0 !important;
    }

    .careers-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .wearch-openings-section {
        padding: 65px 0 !important;
    }

    .career-header-row {
        display: none;
    }

    .career-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        border-top: none;
    }

    .career-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 22px;
        background: #121212;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 6px;
    }

    .career-field-label {
        display: block;
        font-size: 10.5px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--wearch-gold-light, #c89545);
        margin-bottom: 4px;
    }

    .career-cell {
        width: 100%;
    }

    .career-apply-btn {
        margin-top: 8px;
        width: 100%;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wearch-cv-section {
        padding: 55px 0 60px !important;
    }

    .careers-single-container {
        width: 94%;
    }

    .careers-section-header {
        margin-bottom: 22px;
    }

    .form-grid-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wearch-careers-form-wrapper {
        gap: 14px;
    }

    .careers-panel-card {
        padding: 24px 22px;
        border-radius: 16px;
    }
}

@media (max-width: 767.98px) {
    .wearch-careers-intro {
        padding: 52px 0 !important;
    }

    .careers-intro-text {
        font-size: 14px;
        line-height: 1.62;
    }

    .wearch-openings-section {
        padding: 52px 0 !important;
    }

    .career-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wearch-cv-section {
        padding: 48px 0 52px !important;
    }

    .careers-overlay {
        background: rgba(6, 6, 6, 0.94);
    }

    .careers-section-header {
        margin-bottom: 20px;
    }

    .wearch-form-control,
    .career-file-label {
        height: 48px;
        min-height: 48px;
        font-size: 13.5px;
    }

    .careers-panel-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .contact-submit-btn {
        width: auto !important;
        max-width: 100% !important;
        display: inline-flex !important;
        height: 48px !important;
    }
}

@media (max-width: 480px) {

    .wearch-careers-intro,
    .wearch-openings-section,
    .wearch-cv-section {
        padding: 44px 0 !important;
    }
}

/* ==========================================================
   WEARCH INDEPENDENT IMAGE GRID (.wearch-image-grid)
========================================================== */

.wearch-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 48px;
    margin-bottom: 0;
}

.wearch-image-item {
    position: relative;
    display: block;
    width: 100%;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wearch-image-item:hover {
    border-color: var(--wearch-gold-light, #c89545);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.wearch-image-media {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.wearch-image-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wearch-image-item:hover .wearch-image-media img {
    transform: scale(1.04);
}

/* Image Caption & Overlay Styling */
.wearch-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 65%, transparent 100%);
    z-index: 2;
}

.wearch-image-tag {
    display: block;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
    margin-bottom: 6px;
}

.wearch-image-title {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.15;
}

.wearch-image-action {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    z-index: 3;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.wearch-image-item:hover .wearch-image-action {
    background: var(--wearch-gold-light, #c89545);
    border-color: var(--wearch-gold-light, #c89545);
    color: #080808;
    transform: rotate(-45deg);
}

/* Responsive Grid Behavior */
@media (max-width: 991.98px) {
    .wearch-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 36px;
    }

    .wearch-image-title {
        font-size: 23px;
    }
}

@media (max-width: 767.98px) {
    .wearch-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 28px;
    }

    .wearch-image-title {
        font-size: 22px;
    }

    .wearch-image-caption {
        padding: 18px;
    }
}

/* ==========================================================
   WEARCH FRONTEND FORMS & TOAST NOTIFICATION STYLES
   ========================================================== */

/* Body Lock when Modal is Open */
body.wearch-modal-open {
    overflow: hidden !important;
}

/* Inline Field Validation Error Styles */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.25) !important;
}

.field-error-msg {
    display: block;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11.5px;
    color: #dc3545;
    margin-top: 4px;
    min-height: 16px;
    line-height: 1.3;
}

/* Form Level Error Summary Box */
.wearch-form-error-summary {
    display: none;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    line-height: 1.45;
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.35);
    color: #dc3545;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 14px;
    margin-bottom: 14px;
}

/* Career CV Remove Button */
.wearch-cv-remove-btn {
    background: transparent;
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #dc3545;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.wearch-cv-remove-btn:hover {
    background-color: #dc3545;
    color: #ffffff;
}

/* WeArch Toast Notification Container */
.wearch-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: min(420px, calc(100vw - 32px));
}

/* Toast Base Element - Warm Light Surface (#F7F5F2 / #FCFBF8) */
.wearch-toast {
    pointer-events: auto;
    background-color: #F7F5F2;
    background: #F7F5F2;
    border: 1px solid rgba(200, 149, 69, 0.35);
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(48, 37, 19, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wearch-toast.is-show {
    opacity: 1;
    transform: translateY(0);
}

.wearch-toast.is-hiding {
    opacity: 0;
    transform: translateY(10px);
}

.wearch-toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Success Toast Styling */
.wearch-toast.toast-success {
    background-color: #F7F5F2;
    border-color: rgba(200, 149, 69, 0.38);
}

.wearch-toast.toast-success .wearch-toast-icon {
    color: #C89545;
}

/* Error Toast Styling */
.wearch-toast.toast-error {
    background-color: #FFF8F6;
    border-color: rgba(198, 40, 40, 0.3);
}

.wearch-toast.toast-error .wearch-toast-icon {
    color: #C62828;
}

.wearch-toast-icon {
    font-size: 20px;
    color: var(--wearch-gold-light, #c89545);
    flex-shrink: 0;
}

.wearch-toast-msg {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    line-height: 1.45;
    color: #302513;
    font-weight: 500;
}

.wearch-toast-close {
    background: none;
    border: none;
    color: rgba(48, 37, 19, 0.45);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.wearch-toast-close:hover,
.wearch-toast-close:focus-visible {
    color: #302513;
}

@media (max-width: 575.98px) {
    .wearch-toast-container {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

/* ==========================================================
   WEARCH DEVELOPERS FLOATING SCROLL TO TOP BUTTON
   ========================================================== */

.wearch-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 110px;
    /* Positioned directly above the chat toggle (bottom: 56px + 42px height + 12px gap) */
    z-index: 99998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #161616;
    border: 1px solid rgba(200, 149, 69, 0.4);
    color: #f5f5f5;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    padding: 0;
    outline: none;
}

.wearch-scroll-top i {
    color: var(--wearch-gold-light, #c89545);
    transition: color 0.3s ease;
}

/* Visible State */
.wearch-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover & Active State */
.wearch-scroll-top:hover {
    background-color: #1f1f1f;
    border-color: rgba(200, 149, 69, 0.85);
    color: #ffffff;
    transform: translateY(-2px);
}

.wearch-scroll-top:hover i {
    color: #e5b365;
}

/* Focus State for Accessibility */
.wearch-scroll-top:focus-visible {
    outline: 2px solid var(--wearch-gold-light, #c89545);
    outline-offset: 3px;
    border-color: rgba(200, 149, 69, 0.9);
}

/* Responsive Positioning */
@media (max-width: 767.98px) {
    .wearch-scroll-top {
        right: 14px;
        bottom: 64px;
        /* Directly above mobile chat toggle (bottom: 12px + 41px height + 11px gap) */
        width: 41px;
        height: 41px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wearch-scroll-top {
        right: 12px;
        bottom: 62px;
        /* Directly above small mobile chat toggle (bottom: 12px + 40px height + 10px gap) */
        width: 39px;
        height: 39px;
        font-size: 12px;
    }
}

/* .recognition-media {
    width: 100%;
    aspect-ratio: 332.76 / 208;
    overflow: hidden;
}

.recognition-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: none;
} */

/* ==========================================================
   SELECTED PROJECTS — LUXURY 2x2 ARCHITECTURAL GRID
========================================================== */

.wearch-projects {
    position: relative;
    background-color: #0e0e0e;
    background-image:
        /* Faint vertical architectural guide lines */
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        /* Subtle horizontal grid lines */
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        /* Layered transparent depth gradients */
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(26, 26, 26, 0.7) 0%, rgba(14, 14, 14, 1) 100%);
    background-size: 280px 100%, 100% 180px, 100% 100%;
    padding: 85px 0 90px;
    z-index: 10;
    overflow: hidden;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-main-heading {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    color: var(--wearch-gold-light, #c89545);

    letter-spacing: 0.14em;
    /* text-transform: uppercase; */
    margin: 0;
    line-height: 1.1;
}

/* 2x2 Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    width: 95%;
    max-width: 1240px;
    margin: 0 auto;
}

/* Card Specifications */
.wearch-project-card {
    display: block;
    width: 100%;
    height: 350px;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.wearch-project-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #121212;
}

.wearch-project-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Premium Hover Interactions */
@media (min-width: 992px) {
    .wearch-project-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
    }

    .wearch-project-card:hover .wearch-project-media img {
        transform: scale(1.04);
    }
}

/* Responsive Grid Rules */
@media (max-width: 991px) {
    .wearch-projects {
        padding: 70px 0 75px;
    }

    .projects-header {
        margin-bottom: 45px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .wearch-project-card {
        height: 280px;
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    .wearch-projects {
        padding: 56px 0 60px;
    }

    .projects-header {
        margin-bottom: 36px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wearch-project-card {
        height: 250px;
        border-radius: 16px;
    }
}


/* ==========================================================
   PREMIUM TRUST COUNTER SECTION
========================================================== */

.wearch-trust-counter {
    position: relative;
    background-color: #111111;
    padding: 26px 0;
    /* Compact desktop height: ~170px total */
    z-index: 10;
    width: 100%;
    overflow: hidden;
}

/* Alternating Soft Side Glows */
.wearch-trust-counter::before,
.wearch-trust-counter::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 1;
}

.wearch-trust-counter::before {
    left: 0;
    background: radial-gradient(ellipse 75% 100% at 0% 50%, rgba(200, 149, 69, 0.11) 0%, rgba(200, 149, 69, 0.035) 50%, transparent 80%);
    animation: glowAlternateLeft 10s infinite ease-in-out;
}

.wearch-trust-counter::after {
    right: 0;
    background: radial-gradient(ellipse 75% 100% at 100% 50%, rgba(200, 149, 69, 0.11) 0%, rgba(200, 149, 69, 0.035) 50%, transparent 80%);
    animation: glowAlternateRight 10s infinite ease-in-out;
}

@keyframes glowAlternateLeft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.12;
    }
}

@keyframes glowAlternateRight {

    0%,
    100% {
        opacity: 0.12;
    }

    50% {
        opacity: 1;
    }
}

.wearch-trust-counter .container {
    position: relative;
    z-index: 2;
}

.trust-counter-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.trust-counter-item {
    flex: 1 1 33.333%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    transition: transform 0.3s ease;
}

@media (min-width: 992px) {
    .trust-counter-item:hover {
        transform: translateY(-3px);
    }
}

.trust-counter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7.5px;
    color: var(--primary-color, #C89545);
    font-size: 27.3px;
}

.trust-counter-icon i {
    font-size: 27.3px;
    line-height: 1;
}

.trust-counter-icon svg {
    width: 35.02px;
    height: 35.02px;
    stroke: var(--primary-color, #C89545);
}

.trust-counter-number {
    font-family: var(--default-font, 'Inter', sans-serif);
    font-size: 50px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    white-space: nowrap;
}

.trust-counter-label {
    font-family: var(--default-font, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.3;
    white-space: nowrap;
}

/* Mobile & Tablet Trust Counter styles (max-width: 991px) */
@media (max-width: 991px) {
    .wearch-trust-counter {
        padding: 30px 0;
    }

    .wearch-trust-counter .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .trust-counter-row {
        gap: 4px;
    }

    .trust-counter-item {
        padding: 0 5px !important;
    }

    .trust-counter-icon {
        margin-bottom: 6px;
        font-size: 22px;
    }

    .trust-counter-icon i {
        font-size: 22px;
        line-height: 1;
    }

    .trust-counter-icon svg {
        width: 28px;
        height: 28px;
    }

    .trust-counter-number {
        font-size: clamp(26px, 4vw, 36px);
        margin-bottom: 3px;
    }

    .trust-counter-label {
        font-size: clamp(10.5px, 1.6vw, 12px);
        letter-spacing: 0.04em;
    }
}

/* Mobile styles (max-width: 767px) */
@media (max-width: 767px) {
    .wearch-trust-counter {
        padding: 24px 0;
    }

    .wearch-trust-counter .container {
        padding-left: 6px;
        padding-right: 6px;
    }

    .trust-counter-item {
        padding: 0 4px !important;
    }

    .trust-counter-icon {
        margin-bottom: 5px;
        font-size: 19px;
    }

    .trust-counter-icon i {
        font-size: 19px;
        line-height: 1;
    }

    .trust-counter-icon svg {
        width: 23px;
        height: 23px;
    }

    .trust-counter-number {
        font-size: clamp(22px, 5.5vw, 28px);
        margin-bottom: 3px;
    }

    .trust-counter-label {
        font-size: clamp(9px, 2.5vw, 10.5px);
        letter-spacing: 0.02em;
    }
}

@media (max-width: 420px) {
    .trust-counter-item {
        padding: 0 2px !important;
    }

    .trust-counter-icon {
        margin-bottom: 4px;
        font-size: 17px;
    }

    .trust-counter-icon i {
        font-size: 17px;
    }

    .trust-counter-icon svg {
        width: 20px;
        height: 20px;
    }

    .trust-counter-number {
        font-size: clamp(19px, 5.2vw, 24px);
    }

    .trust-counter-label {
        font-size: clamp(8.5px, 2.3vw, 9.5px);
        letter-spacing: 0.01em;
    }
}

/* ==========================================================
   REDESIGNED ARCHITECTURAL SERVICES CAROUSEL SECTION
========================================================== */

.wearch-services {
    position: relative;
    background-color: #111111;
    background-image:
        /* Architectural Drafting Lines & Panels */
        linear-gradient(to right, rgba(200, 149, 69, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 149, 69, 0.07) 1px, transparent 1px),
        /* Offsets & Grid Divisions */
        linear-gradient(to right, transparent 25%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 25.5%, transparent 25.5%),
        linear-gradient(to right, transparent 75%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02) 75.5%, transparent 75.5%),
        /* Deep Radial Vignette & Depth */
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(23, 23, 23, 0.7) 0%, rgba(17, 17, 17, 1) 100%);
    background-size: 320px 320px, 320px 320px, 100% 100%, 100% 100%, 100% 100%;
    padding: 64px 0 54px;
    z-index: 10;
    overflow: hidden;
}

/* Background Circular Construction Arc */
.wearch-services::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(200, 149, 69, 0.08);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 992px) {
    .wearch-services {
        min-height: calc(100vh - 85px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px 0 28px;
        box-sizing: border-box;
    }
}

.wearch-services-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.wearch-services-header {
    text-align: center;
    margin-bottom: 32px;
}

.services-main-heading {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    /* color: #FFFFFF; */
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    /* text-transform: uppercase; */
    margin: 0 0 16px 0;
    line-height: 1.1;
}

/* .about-editorial-content > :is(h1, h2){
        font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.14em;
   
    margin: 0 0 16px 0;
    line-height: 1.1;
} */
.faq-heading {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.14em;
    color: var(--wearch-gold-light, #c89545);
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.faq-description {}

/* Decorative Golden Underline below heading */
/* .wearch-services-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #C89545;
    margin: 14px auto 0;
    border-radius: 2px;
} */

/* Swiper Outer Stage with Side Navigation */
.wearch-services-stage {
    position: relative;
    width: 100%;
}

.wearch-services-swiper {
    width: 100%;
    position: relative;
    overflow: hidden !important;
}

.wearch-services-swiper .swiper-wrapper {
    align-items: stretch;
}

.wearch-services-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Card Design Specifications */
.wearch-service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 330px;
    height: 380px;
    background-color: #171717;
    border: 1px solid rgba(200, 149, 69, 0.25);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card-media {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.service-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.service-card-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 24px;
    background-color: #171717;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

.service-card-title {
    font-family: 'Felidae', 'Cormorant Garamond', 'Inter', serif;
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.service-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C89545;
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Card Hover Interaction */
@media (min-width: 992px) {
    .wearch-service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 149, 69, 0.7);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 149, 69, 0.15);
    }

    .wearch-service-card:hover .service-card-media img {
        transform: scale(1.05);
    }

    .wearch-service-card:hover .service-card-arrow {
        transform: translateX(5px);
    }
}

/* Circular Side Navigation Arrows (60px x 60px outside cards) */
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(200, 149, 69, 0.35);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.services-prev {
    left: -70px;
}

.services-next {
    right: -70px;
}

.services-nav-btn:hover {
    background-color: rgba(30, 30, 30, 0.95);
    border-color: #C89545;
    color: #C89545;
}

/* Minimal Pill Style Pagination Indicators (Centered below cards) */
.services-pagination {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.services-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
    background-color: #C89545;
    width: 36px;
}

/* Tablet Responsive Adjustments */
@media (max-width: 1199px) {
    .wearch-services-container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .services-prev {
        left: -50px;
    }

    .services-next {
        right: -50px;
    }
}

@media (max-width: 991px) {
    .wearch-services {
        min-height: auto;
        padding: 56px 0 44px;
    }

    .wearch-services-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .services-main-heading {
        font-size: 42px;
    }

    .services-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .services-prev {
        left: -35px;
    }

    .services-next {
        right: -35px;
    }

    .wearch-service-card {
        max-width: 100%;
        height: 380px;
    }

    .service-card-media {
        height: 310px;
    }

    .service-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: center bottom !important;
    }

    .service-card-bottom {
        height: 70px;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    .wearch-services {
        padding: 48px 0 36px;
    }

    .wearch-services-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-main-heading {
        font-size: 30px;
    }

    .wearch-services-header::after {
        margin-top: 10px;
    }

    .services-nav-btn {
        display: none;
        /* Hide side arrows on mobile touch swipe */
    }

    .wearch-service-card {
        max-width: 100%;
        height: 360px;
    }

    .service-card-media {
        height: 290px;
    }

    .service-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: center bottom !important;
    }

    .service-card-bottom {
        height: 70px;
        padding: 0 18px;
    }

    .service-card-title {
        font-size: 18px;
    }
}

/* ==========================================================
   COMPACT PREMIUM TESTIMONIAL SECTION
========================================================== */

.wearch-voices {
    position: relative;
    background-image:
        linear-gradient(rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.78)),
        url('../images/wearch-images/testimonial-bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 50px;
    z-index: 10;
    overflow: hidden;
}

.wearch-voices-header {

    text-align: center;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wearch-voices-heading {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.14em;
    /* text-transform: uppercase; */
    color: var(--wearch-gold-light, #c89545);

    margin: 0;
    line-height: 1.1;
}

/* Swiper Outer Wrapper */
.wearch-voices-carousel-wrapper {
    width: 100%;
    position: relative;
}

.wearch-voices-swiper {
    width: 100%;
    position: relative;
    overflow: hidden !important;
}

.wearch-voices-swiper .swiper-wrapper {
    align-items: stretch;
}

.wearch-voices-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Swiper Carousel Wrapper for Testimonials */
.wearch-voices-carousel-wrapper {
    position: relative;
    padding: 0 46px;
    width: 100%;
    box-sizing: border-box;
}

/* Compact Equal Card Styling (Natural content height with sensible shared height) */
.wearch-testimonial-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 330px;
    height: 100%;
    background: rgba(20, 20, 20, 0.84);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wearch-testimonial-card:hover,
.wearch-testimonial-card:focus-visible {
    border-color: rgba(200, 149, 69, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 18px rgba(200, 149, 69, 0.12);
}

/* Review Image (Height ~165px, object-fit: cover, radius: 14px) */
.testimonial-card-media {
    width: 100%;
    height: 165px;
    overflow: hidden;
    background-color: #121212;
    padding: 10px 10px 0 10px;
    box-sizing: border-box;
}

.testimonial-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    transform: none !important;
    transition: none !important;
}

/* Card Body Layout with Compact Internal Spacing */
.testimonial-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 18px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Five Gold Stars (Image to rating: ~12px) */
.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #C89545;
    font-size: 13px;
    margin-bottom: 12px;
}

/* 3-Line Clamped Preview Text (Rating to excerpt: ~10px) */
.testimonial-text-preview {
    font-family: var(--default-font, 'Inter', sans-serif);
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Read More Visual Link (Excerpt to Read More: ~16px) */
.testimonial-read-link {
    background: none;
    border: none;
    color: #C89545;
    font-family: var(--default-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    margin-bottom: 16px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.wearch-testimonial-card:hover .testimonial-read-link {
    color: #e0ac59;
    text-decoration: underline;
}

/* Client Footer Details (Read More to divider: ~24px, removing excessive margin-top auto) */
.testimonial-client-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(200, 149, 69, 0.3);
    flex-shrink: 0;
}

.testimonial-client-meta {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-client-name {
    font-family: var(--default-font, 'Inter', sans-serif);
    font-size: 14.5px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-project-tag {
    font-family: var(--default-font, 'Inter', sans-serif);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation Controls (Side circular buttons with gold border & chevron matching video showcase) */
.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #121212;
    border: 1px solid rgba(200, 149, 69, 0.4);
    color: var(--wearch-gold-light, #c89545);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    opacity: 0.85;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    padding: 0;
    outline: none;
}

.testimonial-nav-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background-color: var(--wearch-gold-light, #c89545);
    color: #000000;
    border-color: var(--wearch-gold-light, #c89545);
    box-shadow: 0 6px 20px rgba(200, 149, 69, 0.35);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Tablet Responsive Spacing (max-width: 991px) */
@media (max-width: 991px) {
    .wearch-voices {
        padding: 48px 0 40px;
    }

    .wearch-voices-header {
        margin-bottom: 26px;
    }

    .wearch-testimonial-card {
        max-width: 100%;
        height: 100%;
    }
}

/* Mobile Responsive Spacing (max-width: 767px) */
@media (max-width: 767px) {
    .wearch-voices {
        padding: 40px 0 36px;
    }

    .wearch-voices-header {
        margin-bottom: 22px;
    }

    .testimonial-nav-controls {
        margin-top: 20px;
    }

    .testimonial-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
}

/* ==========================================================
   WEARCH FOUR-COLUMN FOOTER SYSTEM
========================================================== */

.wearch-footer {
    position: relative !important;
    padding: 48px 0 24px !important;
    background: #080808 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: var(--body-font, 'Inter', sans-serif);
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.wearch-footer-container {
    width: 100% !important;
    max-width: 1360px !important;
    margin-inline: auto !important;
    padding-inline: clamp(24px, 5vw, 72px) !important;
    box-sizing: border-box;
}

/* 4-Column Grid Row (Desktop) */
.wearch-footer-main-row {
    display: grid !important;
    grid-template-columns: minmax(240px, 1.3fr) minmax(140px, 0.8fr) minmax(160px, 0.9fr) minmax(210px, 1.2fr) !important;
    gap: clamp(32px, 3.5vw, 68px) !important;
    align-items: start !important;
    margin-top: 0 !important;
    padding-bottom: 36px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-col {
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-col-title {
    margin: 0 0 16px;
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.02em;
}

/* 1. Brand Column */
.wearch-footer-logo {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
    margin-bottom: 14px !important;
}

.wearch-footer-logo img {
    width: 120px !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
}

.footer-brand-desc {
    margin: 0 0 18px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    max-width: 350px !important;
    text-align: left !important;
}

.footer-brand-social {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: nowrap;
}

.footer-social-label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
    white-space: nowrap !important;
}

.footer-social-icons {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    color: var(--wearch-gold-light, #c89545);
    border-color: var(--wearch-gold-light, #c89545);
    transform: translateY(-2px);
}

/* 2. Quick Links Column */
.footer-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-quick-links li a {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-quick-links li a:hover {
    color: var(--wearch-gold-light, #c89545);
}

/* 3. Contact Column */
.footer-contact-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-block {
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    align-items: start !important;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wearch-gold-light, #c89545);
}

.contact-values {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-city-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    white-space: nowrap !important;
}

.contact-city-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.contact-detail-values .contact-city-line {
    font-size: 14px;
    gap: 8px;
    margin-bottom: 2px;
}

.contact-detail-values .contact-city-name {
    font-size: 13px;
    font-weight: 600;
    color: #302513;
    min-width: 90px;
    display: inline-block;
}

.contact-values a {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap !important;
}

.contact-values a:hover {
    color: var(--wearch-gold-light, #c89545);
}

.contact-email {
    white-space: nowrap !important;
}

/* 4. Office Locations Column */
.footer-office-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-office-links li {
    margin: 0;
    padding: 0;
    min-height: 31px;
    display: flex;
    align-items: flex-start;
}

.footer-office-static-item .footer-office-link-text {
    min-height: 31px;
    justify-content: flex-end;
}

.footer-office-links a,
.footer-office-static-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-office-static-item {
    cursor: default;
}

.footer-office-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-office-links i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--wearch-gold-light, #c89545);
    font-size: 13px;
}

.footer-office-link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.footer-office-link-text small {
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-office-link-text strong {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.footer-office-links a:hover strong {
    color: var(--wearch-gold-light, #c89545);
}

/* 3. Contact Column Numbers & Alignment */
.footer-contact-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-numbers li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 2px;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    line-height: 1.35;
}

.footer-contact-numbers a,
.contact-email {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    line-height: 1.35;
    letter-spacing: normal;
}

.contact-location {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 4px;
    white-space: nowrap;
}

.footer-contact-numbers a:hover,
.contact-email:hover {
    color: var(--wearch-gold-light, #c89545);
}

.footer-email-block {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-email-label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: var(--wearch-gold-light, #c89545);
    line-height: 1.35;
    display: block;
}

/* Bottom Bar */
.wearch-footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 18px !important;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy-text,
.footer-powered {
    margin: 0;
}

.footer-privacy-link,
.footer-powered a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover,
.footer-powered a:hover {
    color: var(--wearch-gold-light, #c89545);
}

/* ==========================================================
   BREAKPOINTS
========================================================== */

/* Tablet (768px to 1199.98px): 2-Column Grid (Row 1: Brand | Links, Row 2: Offices | Contact) */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .wearch-footer-main-row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 32px 48px !important;
        align-items: start !important;
    }

    .footer-col-brand {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .footer-col-links {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    .footer-col-offices {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .footer-col-contact {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    .footer-brand-desc {
        max-width: 100% !important;
    }
}

/* Mobile (< 768px): Single-Column Stacked (Order: 1. Brand, 2. Links, 3. Offices, 4. Contact) */
@media (max-width: 767.98px) {
    .wearch-footer {
        padding: 36px 0 32px !important;
    }

    .wearch-footer-container {
        padding-inline: 20px !important;
    }

    .wearch-footer-main-row {
        display: grid !important;
        grid-template-columns: 1fr 1.35fr !important;
        gap: 24px 16px !important;
        align-items: start !important;
        padding-bottom: 20px !important;
    }

    /* Top: Brand & Social */
    .footer-col-brand {
        grid-column: 1 / -1 !important;
        order: 1 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .wearch-footer-logo {
        margin-bottom: 4px !important;
        display: inline-block !important;
        width: auto !important;
    }

    .wearch-footer-logo img {
        width: 130px !important;
        height: auto !important;
    }

    .footer-brand-desc {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .footer-brand-social {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        margin-top: 4px !important;
        white-space: nowrap !important;
    }

    /* Middle Row: 2 Columns (Quick Links Left, Office Locations Right) */
    .footer-col-links {
        grid-column: 1 !important;
        order: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .footer-col-offices {
        grid-column: 2 !important;
        order: 3 !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Bottom Row: Contact (Full Width) */
    .footer-col-contact {
        grid-column: 1 / -1 !important;
        order: 4 !important;
        width: 100% !important;
        min-width: 0 !important;
        margin-top: 4px !important;
    }

    .footer-col-title {
        margin-bottom: 12px !important;
    }

    /* Office Locations Styling */
    .footer-office-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .footer-office-links li a {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .footer-office-link-text {
        min-width: 0 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .footer-office-link-text strong {
        display: block !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    /* Contact Details Alignment */
    .contact-block {
        grid-template-columns: 60px minmax(0, 1fr) !important;
        column-gap: 12px !important;
        padding-bottom: 8px !important;
    }

    .contact-values a,
    .contact-email {
        white-space: normal !important;
        word-break: break-word !important;
        font-size: 13px !important;
    }

    /* Bottom Copyright Section */
    .wearch-footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 8px !important;
        padding-top: 20px !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .footer-copy-text,
    .footer-privacy-link,
    .footer-powered {
        font-size: 11.5px !important;
        color: rgba(255, 255, 255, 0.65) !important;
        margin: 0 !important;
        text-align: left !important;
    }

    /* Floating Buttons Overlap Prevention */
    .wearch-chat-toggle {
        right: 16px !important;
        bottom: 16px !important;
    }

    .wearch-scroll-top {
        right: 16px !important;
        bottom: 68px !important;
    }
}

/* Extremely Narrow Screen (< 340px): Single-Column Fallback */
@media (max-width: 340px) {
    .wearch-footer-main-row {
        grid-template-columns: 1fr !important;
        row-gap: 20px !important;
    }

    .footer-col-brand {
        grid-column: 1 !important;
        order: 1 !important;
    }

    .footer-col-links {
        grid-column: 1 !important;
        order: 2 !important;
    }

    .footer-col-offices {
        grid-column: 1 !important;
        order: 3 !important;
    }

    .footer-col-contact {
        grid-column: 1 !important;
        order: 4 !important;
    }

    .footer-brand-social {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
}

/* ==========================================================
   WEARCH VIDEO SHOWCASE SECTION (PREMIUM DARK THEME)
========================================================== */

.wearch-video-showcase {
    position: relative;
    padding: 75px 0 85px;
    background:
        radial-gradient(circle at 50% 25%, rgba(200, 149, 69, 0.08), transparent 55%),
        linear-gradient(180deg, #090909 0%, #101010 50%, #090909 100%);
    border-top: 1px solid rgba(200, 149, 69, 0.14);
    border-bottom: 1px solid rgba(200, 149, 69, 0.14);
    overflow: hidden;
    isolation: isolate;
}

.wearch-video-showcase .container {
    max-width: 1380px !important;
    width: 92% !important;
    margin: 0 auto !important;
}

.video-showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Heading style EXACTLY matching Projects and Services sections */
.video-showcase-title {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: #FFFFFF;
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    margin: 0;
    line-height: 1.1;
}

.video-showcase-carousel-wrapper {
    position: relative;
    padding: 0 46px;
    width: 100%;
    box-sizing: border-box;
}

/* Swiper Slide Container - Strictly clipped within container */
.wearch-video-swiper {
    overflow: hidden !important;
    padding: 12px 4px 20px;
}

/* Video Card Link (Soft shadow, subtle translucent border, light gold glow on hover) */
.video-showcase-card {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 300ms cubic-bezier(0.165, 0.84, 0.44, 1), border-color 300ms ease;
    text-decoration: none;
}

.video-showcase-card:hover {
    transform: scale(1.03);
    border-color: rgba(200, 149, 69, 0.35);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(200, 149, 69, 0.1);
}

/* 16:9 Aspect Ratio Media Container Base */
.video-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #161616;
}

/* Desktop height increase (~10%) */
@media (min-width: 992px) {
    .video-card-media {
        aspect-ratio: 16 / 10.1;
    }
}

.video-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none !important;
    transition: none;
}

/* Centered Play Button Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background 300ms ease;
}

.play-button-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding-left: 3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 300ms ease, color 300ms ease;
}

.video-showcase-card:hover .play-button-icon {
    transform: scale(1.12);
    background-color: var(--wearch-gold-light, #c89545);
    color: #ffffff;
}

/* Navigation Arrow Buttons (Dark circular buttons, gold border, gold icons) */
.video-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #121212;
    border: 1px solid rgba(200, 149, 69, 0.4);
    color: var(--wearch-gold-light, #c89545);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    opacity: 0.85;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    padding: 0;
    outline: none;
}

.video-carousel-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background-color: var(--wearch-gold-light, #c89545);
    color: #000000;
    border-color: var(--wearch-gold-light, #c89545);
    box-shadow: 0 6px 20px rgba(200, 149, 69, 0.35);
}

.video-carousel-prev {
    left: 0;
}

.video-carousel-next {
    right: 0;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .video-showcase-carousel-wrapper {
        padding: 0 36px;
    }
}

@media (max-width: 767.98px) {
    .wearch-video-showcase {
        padding: 55px 0 60px;
    }

    .video-showcase-header {
        margin-bottom: 36px;
    }

    .video-showcase-carousel-wrapper {
        padding: 0 30px;
    }

    .video-carousel-nav {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .play-button-icon {
        width: 48px;
        height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 519.98px) {
    .video-showcase-carousel-wrapper {
        padding: 0 24px;
    }
}

/* ==========================================================
   FULL-WIDTH PREMIUM CTA BANNER
========================================================== */

.wearch-contact-cta {
    position: relative;
    width: 100%;
    height: 300px;
    /* min-height: 300px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #080808;
    isolation: isolate;
}

/* Full-section background image */
.cta-full-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* Dark left-to-right overlay */
.cta-full-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.94) 38%,
            rgba(5, 5, 5, 0.76) 58%,
            rgba(5, 5, 5, 0.32) 82%,
            rgba(5, 5, 5, 0.16) 100%);
}

/* Proper centred website container */
.cta-full-container {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 1400px);
    margin-inline: auto;
    /* padding-bottom: 10px; */
}

/* Left-side content */
.cta-full-content {
    width: 100%;
    max-width: 690px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 60px;
    /* padding-bottom: 40px; */
}

/* Eyebrow (eyebrow to heading: ~16px) */
.cta-eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-eyebrow-line {
    width: 28px;
    height: 1px;
    flex-shrink: 0;
    background: #c8a96a;
}

.cta-eyebrow-text {
    margin: 0;
    color: #c8a96a;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

/* Heading (heading to description: ~20px) */
.cta-main-heading {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 500;
    line-height: 1.05;
}

.cta-heading-gold-italic {
    color: #c8a96a;
    font-family: inherit;
    font-style: italic;
    font-weight: 400;
}

/* Description (description to button: ~26px) */
.cta-description {
    max-width: 620px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.55;
}

/* CTA button (button to contact row: ~22px) */
.cta-button-wrapper {
    margin: 0 0 22px;
}

/* .cta-gold-accent-btn overridden by master CTA button styling */

/* Horizontal contact strip */
.cta-contact-strip {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
}

.cta-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.86) !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.cta-strip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    border: 1px solid rgba(200, 169, 106, 0.55);
    border-radius: 50%;
    color: #c8a96a;
    font-size: 11px;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.cta-strip-text {
    color: inherit;
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.cta-strip-divider {
    width: 1px;
    height: 20px;
    flex-shrink: 0;
    background: rgba(200, 169, 106, 0.42);
}

.cta-strip-item:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}

.cta-strip-item:hover .cta-strip-icon {
    border-color: #c8a96a;
    background: #c8a96a;
    color: #090909;
}

/* Tablet */
@media (max-width: 991.98px) {
    .wearch-contact-cta {
        height: 300px;
        min-height: 300px;
    }

    .cta-full-container {
        width: min(100% - 40px, 1400px);
    }

    .cta-full-bg {
        background-position: 62% center;
    }

    .cta-full-overlay {
        background: linear-gradient(90deg,
                rgba(5, 5, 5, 0.98) 0%,
                rgba(5, 5, 5, 0.92) 55%,
                rgba(5, 5, 5, 0.58) 100%);
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .wearch-contact-cta {
        height: auto;
        min-height: 430px;
        padding: 44px 0;
    }

    .cta-full-container {
        width: calc(100% - 32px);
    }

    .cta-full-bg {
        background-position: 66% center;
    }

    .cta-full-overlay {
        background: linear-gradient(90deg,
                rgba(5, 5, 5, 0.97) 0%,
                rgba(5, 5, 5, 0.9) 100%);
    }

    .cta-full-content {
        max-width: 100%;
        margin: 0;
    }

    .cta-eyebrow-wrapper {
        margin-bottom: 10px;
    }

    .cta-main-heading {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .cta-description {
        max-width: 100%;
        font-size: 13.5px;
        margin-bottom: 18px;
    }

    .cta-button-wrapper {
        margin-bottom: 16px;
    }

    .cta-contact-strip {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .cta-strip-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .wearch-contact-cta {
        min-height: 460px;
        padding: 40px 0;
    }

    .cta-eyebrow-text {
        font-size: 9px;
        letter-spacing: 0.13em;
    }

    .cta-main-heading {
        font-size: 31px;
    }

    .cta-contact-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================================
   REDESIGNED WHO WE ARE SECTION (DARK LUXURY EDITORIAL)
========================================================== */

.wearch-who-clean {
    position: relative;
    width: 100%;
    padding: 60px 0 65px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.wearch-who-clean-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    /* max-width: 950px; */
    margin: 0 auto;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Number and Label stacked vertically */
.wearch-who-clean-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.wearch-who-number {
    color: #c89545;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.22em;
}

.wearch-who-label-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

/* Main Luxury Serif Heading */
.wearch-who-clean-heading {
    /* max-width: 900px; */
    margin: 0 auto;
    color: #F5F3EF;
    color: var(--wearch-gold-light, #c89545);
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-align: center;
}

/* Single Thin Gold Accent Line */
.wearch-who-gold-divider {
    width: 70px;
    height: 1px;
    margin: 28px auto;
    background: #c89545;
    border: none;
}

/* Full-Width Centered Paragraph Layout */
.wearch-who-content {
    width: 100%;
    /* max-width: 880px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wearch-who-paragraph {
    width: 100%;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Inter", sans-serif;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.01em;
    text-align: justify;
}

/* Thin Subtle Divider between Paragraph 1 and 2 */
.wearch-who-subtle-divider {
    width: 100%;
    max-width: 650px;
    height: 1px;
    margin: 26px auto;
    background: rgba(255, 255, 255, 0.08);
    border: none;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
    .wearch-who-clean {
        padding: 50px 0 55px;
    }

    .wearch-who-clean-heading {
        font-size: clamp(30px, 4.5vw, 44px);
    }

    .wearch-who-paragraph {
        font-size: 15.5px;
        line-height: 1.8;

    }

    .wearch-who-subtle-divider {
        max-width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    .wearch-who-clean {
        padding: 40px 0 45px;
    }

    .wearch-who-clean-label {
        gap: 5px;
        margin-bottom: 18px;
    }

    .wearch-who-number {
        font-size: 12px;
    }

    .wearch-who-label-text {
        font-size: 10px;
        letter-spacing: 0.22em;
    }

    .wearch-who-clean-heading {
        font-size: clamp(26px, 6.5vw, 36px);
        line-height: 1.2;
    }

    .wearch-who-gold-divider {
        width: 50px;
        margin: 22px auto;
    }

    .wearch-who-paragraph {
        font-size: 15px;
        line-height: 1.75;
    }

    .wearch-who-subtle-divider {
        margin: 22px auto;
        max-width: 85%;
    }
}

/* ==========================================================
   REUSABLE INTERNAL PAGE HERO (LUXURY ARCHITECTURAL BANNER)
========================================================== */

.wearch-internal-hero {
    position: relative;
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.wearch-internal-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(9, 9, 9, 0.55) 0%, rgba(9, 9, 9, 0.25) 50%, rgba(9, 9, 9, 0) 100%);
    pointer-events: none;
}

.wearch-internal-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
}

.wearch-internal-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.wearch-internal-hero-title {
    font-family: 'Felidae', 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    padding: 0;
    letter-spacing: 0.02em;
}

.wearch-internal-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.72);
}

.wearch-internal-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wearch-internal-hero-breadcrumb a:hover {
    color: #FFFFFF;
}

.wearch-internal-hero-breadcrumb .breadcrumb-sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.wearch-internal-hero-breadcrumb .active {
    color: #C89545;
    font-weight: 500;
}

/* Tablet (768px - 991px) */
@media (max-width: 991.98px) {
    .wearch-internal-hero {
        height: 280px;
    }

    .wearch-internal-hero-title {
        font-size: clamp(28px, 4.5vw, 40px);
    }
}

/* Mobile (< 768px) */
@media (max-width: 767.98px) {
    .wearch-internal-hero {
        height: 230px;
        background-position: center center;
    }

    .wearch-internal-hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .wearch-internal-hero-breadcrumb {
        font-size: 12px;
    }

    .wearch-internal-hero-breadcrumb .breadcrumb-sep {
        margin: 0 8px;
    }
}

/* ==========================================================
   SCROLL ANIMATIONS & INTERNAL HERO BANNER ZOOM (NON-BLOCKING)
   ========================================================== */

/* Animated elements default speed & timing */
.animated {
    -webkit-animation-duration: 0.8s !important;
    animation-duration: 0.8s !important;
    -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
    -webkit-animation-fill-mode: both !important;
    animation-fill-mode: both !important;
    pointer-events: auto !important;
}

/* Ensure interactive controls, header, navbar, dropdowns, modals, lightboxes, and links are NEVER blocked */
header,
.main-header,
.header-sticky,
nav,
.navbar,
.wearch-navbar-shell,
.services-dropdown,
.dropdown-menu,
.responsive-menu,
.quote-modal,
.testimonial-modal,
.mfp-bg,
.mfp-wrap,
.mfp-container,
.mfp-content,
a,
button,
input,
textarea,
select,
.services-nav-btn,
.video-carousel-nav,
.testimonial-nav-btn,
.swiper-button-prev,
.swiper-button-next {
    pointer-events: auto !important;
}

header,
.main-header,
.header-sticky,
.navbar {
    z-index: 9999 !important;
}

/* Reusable Internal Page Hero Image Zoom (1.0 -> 1.04 scale over 7s ease-out) */
@-webkit-keyframes internalBannerZoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
    }
}

@keyframes internalBannerZoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
    }
}

.wearch-internal-hero {
    position: relative;
    overflow: hidden;
}

.wearch-internal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
    -webkit-animation: internalBannerZoom 7s ease-out forwards;
    animation: internalBannerZoom 7s ease-out forwards;
    z-index: 0;
    pointer-events: none !important;
}

.wearch-internal-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none !important;
}

.wearch-internal-hero-content,
.wearch-internal-hero .container {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
}

/* Subtle entrance keyframe adjustments (28px distance) */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 28px, 0);
        transform: translate3d(0, 28px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 28px, 0);
        transform: translate3d(0, 28px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-28px, 0, 0);
        transform: translate3d(-28px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-28px, 0, 0);
        transform: translate3d(-28px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(28px, 0, 0);
        transform: translate3d(28px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(28px, 0, 0);
        transform: translate3d(28px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Mobile Responsiveness (<768px) */
@media (max-width: 768px) {
    .animated {
        -webkit-animation-duration: 0.65s !important;
        animation-duration: 0.65s !important;
    }

    @-webkit-keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @-webkit-keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @-webkit-keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        -webkit-animation: none !important;
        animation: none !important;
        -webkit-transition: none !important;
        transition: none !important;
    }

    .wow {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ==========================================================
   REDESIGNED VISIT OUR OFFICES SECTION & UAE CALLOUT STRIP
========================================================== */

.wearch-contact-offices-section {
    position: relative;
    padding: 72px 0 80px;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
    overflow: hidden;
}

/* Centered Wearch Section Header */
.wearch-offices-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px;
}

.wearch-offices-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.wearch-offices-eyebrow .eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--wearch-gold, #c89545);
    display: inline-block;
}

.wearch-offices-eyebrow .eyebrow-text {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--wearch-gold-light, #c89545);
    text-transform: uppercase;
}

.wearch-offices-title {
    /* font-family: var(--heading-font, 'Felidae', 'Cormorant Garamond', serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: 0.01em; */

    font-family: Felidae, "Cormorant Garamond", serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    color: rgb(255, 255, 255);
    color: var(--wearch-gold-light, #c89545);
    letter-spacing: 0.14em;
    margin: 0px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 20px
}

.wearch-offices-divider {
    width: 36px;
    height: 1px;
    background: var(--wearch-gold, #c89545);
    opacity: 0.6;
    margin: 0 auto;
}

/* 3 Equal-Height Office Cards Grid */
.wearch-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.wearch-office-card {
    background: #121212;
    border: 1px solid rgba(200, 149, 69, 0.14);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-sizing: border-box;
}

.wearch-office-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 149, 69, 0.32);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.office-card-media {
    width: 100%;
    height: 175px;
    overflow: hidden;
    position: relative;
    background: #090909;
}

.office-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}

.wearch-office-card:hover .office-card-media img {
    transform: scale(1.04);
}

.office-card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.office-card-top {
    flex: 1;
}

.office-card-type {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--wearch-gold-light, #c89545);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.office-card-city {
    font-family: var(--heading-font, 'Felidae', 'Cormorant Garamond', serif);
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.office-card-addr {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 16px 0;
}

.office-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.office-card-phone {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.office-card-phone:hover {
    color: var(--wearch-gold-light, #c89545);
}

.office-map-link {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 500;
    color: var(--wearch-gold-light, #c89545);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.office-map-link:hover {
    opacity: 0.82;
    color: #FFFFFF;
}

.office-map-link i {
    font-size: 10px;
}

/* Minimal Horizontal UAE Service Callout Strip */
.wearch-uae-service-strip {
    max-width: 820px;
    margin: 36px auto 0;
    padding: 16px 26px;
    background: #121212;
    border: 1px solid rgba(200, 149, 69, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.wearch-uae-service-strip:hover {
    border-color: rgba(200, 149, 69, 0.38);
}

.uae-strip-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.uae-strip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 149, 69, 0.1);
    border: 1px solid rgba(200, 149, 69, 0.22);
    padding: 5px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.uae-strip-badge .uae-icon {
    font-size: 13px;
    color: var(--wearch-gold-light, #c89545);
}

.uae-strip-badge .uae-strip-label {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--wearch-gold-light, #c89545);
    text-transform: uppercase;
}

.uae-strip-text {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    white-space: nowrap;
}

.uae-strip-right {
    flex-shrink: 0;
}

.uae-strip-phone {
    font-family: var(--body-font, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--wearch-gold-light, #c89545);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.uae-strip-phone:hover {
    color: #FFFFFF;
    background: var(--wearch-gold, #c89545);
    border-color: var(--wearch-gold, #c89545);
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .wearch-contact-offices-section {
        padding: 56px 0 64px;
    }

    .wearch-offices-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .office-card-media {
        height: 155px;
    }

    .office-card-body {
        padding: 18px 16px 16px;
    }

    .office-card-city {
        font-size: 20px;
    }

    .office-card-addr {
        font-size: 13px;
    }

    .wearch-uae-service-strip {
        max-width: 100%;
        margin-top: 28px;
        padding: 14px 20px;
    }

    .uae-strip-text {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .wearch-contact-offices-section {
        padding: 44px 0 52px;
    }

    .wearch-offices-header {
        margin-bottom: 32px;
    }

    .wearch-offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wearch-office-card {
        border-radius: 14px;
    }

    .office-card-media {
        height: 165px;
    }

    .office-card-body {
        padding: 20px 18px 18px;
    }

    .wearch-uae-service-strip {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px 16px;
        border-radius: 12px;
        margin-top: 24px;
    }

    .uae-strip-left {
        flex-direction: column;
        gap: 8px;
    }

    .uae-strip-text {
        white-space: normal;
    }
}

/* ==========================================================
   MASTER BUTTON STYLING (MATCHES DISCOVER OUR STORY EXACTLY)
   Targeted 4 Buttons Only:
   1. START YOUR PROJECT (.cta-gold-accent-btn)
   2. EXPLORE OUR EXPERTISE (.about-story-btn)
   3. SUBMIT APPLICATION (.contact-submit-btn in careers.html)
   4. SEND MESSAGE (.contact-submit-btn in contact.html)
========================================================== */

.cta-gold-accent-btn,
.about-story-btn,
.contact-submit-btn,
.wearch-primary-btn.contact-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 7px 8px 7px 20px;
    overflow: hidden;
    border: 1px solid rgba(223, 182, 108, 0.55);
    border-radius: 18px 4px 18px 4px;
    background: transparent;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    isolation: isolate;
    cursor: pointer;
    box-shadow: none;
    line-height: normal;
    transition:
        color 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease;
}

.cta-gold-accent-btn::before,
.about-story-btn::before,
.contact-submit-btn::before,
.wearch-primary-btn.contact-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg,
            var(--wearch-gold-dark),
            var(--wearch-gold));
    clip-path: circle(0 at 85% 50%);
    transform: none;
    transition: clip-path 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.cta-gold-accent-btn:hover::before,
.about-story-btn:hover::before,
.contact-submit-btn:hover::before,
.wearch-primary-btn.contact-submit-btn:hover::before {
    clip-path: circle(150% at 85% 50%);
    transform: none;
}

.cta-gold-accent-btn:hover,
.about-story-btn:hover,
.contact-submit-btn:hover,
.wearch-primary-btn.contact-submit-btn:hover {
    border-color: var(--wearch-gold);
    color: #111111;
    transform: translateY(-3px);
}

.cta-gold-accent-btn span,
.about-story-btn span,
.contact-submit-btn span,
.wearch-primary-btn.contact-submit-btn span {
    position: relative;
    z-index: 2;
}

.cta-gold-accent-btn .about-btn-icon,
.about-story-btn .about-btn-icon,
.contact-submit-btn .about-btn-icon,
.wearch-primary-btn.contact-submit-btn .about-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--wearch-gold);
    color: #111111;
    position: relative;
    z-index: 2;
    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.cta-gold-accent-btn .about-btn-icon i,
.about-story-btn .about-btn-icon i,
.contact-submit-btn .about-btn-icon i,
.wearch-primary-btn.contact-submit-btn .about-btn-icon i {
    background: transparent;
    font-size: 10px;
    transition: transform 0.35s ease;
}

.cta-gold-accent-btn:hover .about-btn-icon,
.about-story-btn:hover .about-btn-icon,
.contact-submit-btn:hover .about-btn-icon,
.wearch-primary-btn.contact-submit-btn:hover .about-btn-icon {
    background: #111111;
    color: var(--wearch-gold);
}

.cta-gold-accent-btn:hover .about-btn-icon i,
.about-story-btn:hover .about-btn-icon i,
.contact-submit-btn:hover .about-btn-icon i,
.wearch-primary-btn.contact-submit-btn:hover .about-btn-icon i {
    background: transparent;
    color: var(--wearch-gold);
    transform: translateX(4px);
}

/* ==========================================================================
   WEARCH HOME PAGE — LIGHT THEME CORRECTION ENGINE (INDEX.HTML ONLY)
   ========================================================================== */

/* 1. Global Home Base & Typography */
body {
    background-color: #F7F5F2 !important;
    color: #5C5243 !important;
}

/* 2. Header & Navbar (Single 1px Subtle Light Separator, Zero Stacking) */
header.main-header.wearch-header {
    background: #F7F5F2 !important;
    border: none !important;
    border-bottom: 1px solid rgba(132, 109, 85, 0.10) !important;
    box-shadow: none !important;
}

header.main-header .header-sticky,
header.main-header .header-sticky.active,
header.main-header .header-sticky.hide,
.wearch-navbar-shell,
.wearch-header .navbar {
    background: #F7F5F2 !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

@media only screen and (min-width: 992px) {
    .wearch-header .navbar {
        min-height: 88px !important;
    }
}

.wearch-navbar-shell::after,
.wearch-navbar-shell::before {
    display: none !important;
    content: none !important;
}

@media only screen and (max-width: 991px) {
    header.main-header.wearch-header {
        background: #F7F5F2 !important;
        border: none !important;
        border-bottom: 1px solid rgba(132, 109, 85, 0.10) !important;
        box-shadow: none !important;
    }

    header.main-header .header-sticky,
    header.main-header .header-sticky.active,
    header.main-header .header-sticky.hide,
    .wearch-navbar-shell,
    .wearch-header .navbar {
        background: #F7F5F2 !important;
        border: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .wearch-header .slicknav_menu,
    .wearch-header .responsive-menu {
        background: transparent !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Nav links default color */
.wearch-header .main-menu ul li a.nav-link,
.wearch-header .main-menu ul li a.nav-link span {
    color: #302513 !important;
    transition: color 0.3s ease !important;
}

/* Nav links hover color */
.wearch-header .main-menu ul li a.nav-link:hover,
.wearch-header .main-menu ul li a.nav-link:hover span {
    color: #C89545 !important;
}

/* Disable box on hover for non-active items */
.wearch-header .main-menu ul li a.nav-link:not(.active):hover::before,
.wearch-header .main-menu ul li:not(.active) a.nav-link:hover::before {
    opacity: 0 !important;
    background: transparent !important;
    border-color: transparent !important;
}

/* Active Nav Link — Softened Frame & Text */
.wearch-header .main-menu ul li.active a.nav-link,
.wearch-header .main-menu ul li a.nav-link.active,
.wearch-header .main-menu ul li.active a.nav-link span,
.wearch-header .main-menu ul li a.nav-link.active span {
    color: #302513 !important;
}

.wearch-header .main-menu ul li.active a.nav-link::before,
.wearch-header .main-menu ul li a.nav-link.active::before {
    background: rgba(200, 149, 69, 0.035) !important;
    border-color: rgba(200, 149, 69, 0.18) !important;
    opacity: 1 !important;
    transform: scaleY(1) !important;
}

.wearch-header .main-menu ul li.active a.nav-link::after,
.wearch-header .main-menu ul li a.nav-link.active::after {
    background: #C89545 !important;
    opacity: 1 !important;
    transform: translate(-50%, 0) !important;
}

.main-menu ul ul.services-dropdown,
.wearch-header .main-menu ul ul.services-dropdown,
ul.services-dropdown,
.services-dropdown {
    background: #F7F5F2 !important;
    border: 1px solid #DAD2C9 !important;
    box-shadow: 0 10px 30px rgba(48, 37, 19, 0.08) !important;
}

.main-menu ul ul.services-dropdown li a,
ul.services-dropdown li a,
.services-dropdown li a {
    color: #302513 !important;
}

.main-menu ul ul.services-dropdown li a:hover,
.main-menu ul ul.services-dropdown li a:focus-visible,
ul.services-dropdown li a:hover,
ul.services-dropdown li a:focus-visible,
.services-dropdown li a:hover {
    background: #F3F0EC !important;
    background-color: #F3F0EC !important;
    color: #C89545 !important;
}

.wearch-talk-btn,
.wearch-header-btn {
    background: linear-gradient(135deg, #C89545 0%, #95672D 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #C89545 !important;
}

.wearch-talk-btn:hover,
.wearch-header-btn:hover {
    background: #302513 !important;
    color: #FFFFFF !important;
    border-color: #302513 !important;
}

.slicknav_menu,
.slicknav_nav {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
}

.slicknav_nav {
    border-top: 1px solid #E6E2D8 !important;
}

.slicknav_nav a,
.slicknav_nav .slicknav_row {
    color: #302513 !important;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    background: rgba(200, 149, 69, 0.06) !important;
    color: #C89545 !important;
}

.slicknav_btn,
.wearch-header .slicknav_btn {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.28) !important;
    border-radius: 8px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.slicknav_btn:hover,
.wearch-header .slicknav_btn:hover,
.slicknav_btn:active,
.wearch-header .slicknav_btn:active,
.slicknav_btn.slicknav_open,
.wearch-header .slicknav_btn.slicknav_open {
    background: #C89545 !important;
    background-color: #C89545 !important;
    border-color: #C89545 !important;
}

.slicknav_btn:focus,
.slicknav_btn:focus-visible,
.wearch-header .slicknav_btn:focus,
.wearch-header .slicknav_btn:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200, 149, 69, 0.14) !important;
}

.slicknav_icon-bar,
.wearch-header .slicknav_icon .slicknav_icon-bar {
    background-color: #302513 !important;
    background: #302513 !important;
    transition: background-color 0.3s ease !important;
}

.slicknav_btn:hover .slicknav_icon-bar,
.wearch-header .slicknav_btn:hover .slicknav_icon .slicknav_icon-bar,
.slicknav_btn:active .slicknav_icon-bar,
.wearch-header .slicknav_btn:active .slicknav_icon .slicknav_icon-bar,
.slicknav_btn.slicknav_open .slicknav_icon-bar,
.wearch-header .slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
}

/* 3. Hero Bottom Information Area (Restored Original Photographic Overlay) */
.wearch-hero-info-bar {
    background: linear-gradient(to top,
            rgba(8, 8, 8, 0.88) 0%,
            rgba(8, 8, 8, 0.68) 45%,
            rgba(8, 8, 8, 0.28) 78%,
            rgba(8, 8, 8, 0) 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-top: none !important;
}

.hero-current-slide,
.hero-total-slides,
.hero-counter-slash,
.hero-service-item,
.hero-tagline {
    color: #FFFFFF !important;
}

.hero-services-display .accent-dot {
    color: #C89545 !important;
}

/* 4. Section 1: Trust Counter / Statistics -> Warm Ivory (#F7F5F2) */
.wearch-trust-counter {
    background-color: #F7F5F2 !important;
    background-image: none !important;
}

.wearch-trust-counter::before,
.wearch-trust-counter::after {
    display: none !important;
}

.trust-counter-item {
    border-color: #DAD2C9 !important;
}

.trust-counter-icon {
    color: #C89545 !important;
}

.trust-counter-icon svg {
    stroke: #C89545 !important;
}

.trust-counter-number {
    color: #302513 !important;
}

.trust-counter-label {
    color: #5C5243 !important;
}

/* 5. Section 2: Our Story / About -> Soft Cream (#F3F0EC) */
.wearch-about,
.wearch-about-compact {
    background-color: #F3F0EC !important;
    background-image: none !important;
}

.about-editorial-main-image,
.about-editorial-secondary-image {
    background: transparent !important;
    background-color: transparent !important;
}

.about-editorial-main-image::after {
    display: none !important;
    background: none !important;
}

.wearch-about-compact::before,
.wearch-about-compact::after {
    display: none !important;
}

.about-editorial-content> :is(h1, h2),
.about-editorial-statement h3 {
    color: #302513 !important;
}

.about-editorial-statement {
    border-left-color: #C89545 !important;
}

.about-editorial-statement p {
    color: #5C5243 !important;
}

/* Mobile-only Our Story Heading Repositioning (Above Images & Centered), Softer Shadow & Gap Refinement */
@media only screen and (max-width: 767px) {
    .wearch-about-editorial {
        display: flex !important;
        flex-direction: column !important;
        gap: 22px !important;
    }

    .about-editorial-content {
        display: contents !important;
    }

    .about-editorial-content> :is(h1, h2) {
        order: 1 !important;
        text-align: center !important;
        margin: 0 0 12px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-editorial-visual {
        order: 2 !important;
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .about-editorial-secondary-image {
        box-shadow: 0 12px 28px rgba(48, 37, 19, 0.12), 0 0 0 1px rgba(200, 149, 69, 0.15) !important;
    }

    .about-editorial-label {
        display: none !important;
    }

    .about-editorial-statement {
        order: 4 !important;
    }

    /* Instant Mobile Visibility for Our Story Heading (Overrides WOW.js and GSAP SplitText inline delays) */
    .about-editorial-content,
    .about-editorial-content.wow,
    .about-editorial-content> :is(h1, h2),
    .about-editorial-content> :is(h1, h2) *,
    .about-editorial-content> :is(h1, h2) .line,
    .about-editorial-content> :is(h1, h2) .word,
    .about-editorial-content> :is(h1, h2) .char {
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        -webkit-transform: none !important;
        animation: none !important;
        -webkit-animation: none !important;
        animation-delay: 0s !important;
        transition-delay: 0s !important;
        animation-duration: 0s !important;
    }

    .about-editorial-services {
        order: 5 !important;
        display: grid !important;
        grid-template-rows: repeat(3, auto) !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-flow: column !important;
        gap: 10px 20px !important;
        margin-top: 4px !important;
        margin-left: 4px !important;
        padding: 10px 0 !important;
    }

    .about-editorial-services span:nth-child(1) {
        order: 1 !important;
    }

    .about-editorial-services span:nth-child(2) {
        order: 2 !important;
    }

    .about-editorial-services span:nth-child(3) {
        order: 3 !important;
    }

    .about-editorial-services span:nth-child(4) {
        order: 4 !important;
    }

    .about-editorial-services span:nth-child(5) {
        order: 5 !important;
    }

    .about-editorial-services span:nth-child(6) {
        order: 6 !important;
    }

    .about-editorial-footer {
        order: 6 !important;
    }
}

.about-editorial-services {
    border-top-color: #DAD2C9 !important;
    border-bottom-color: #DAD2C9 !important;
}

.about-editorial-services span {
    color: #302513 !important;
}

.about-editorial-services span i {
    background: #C89545 !important;
}

.about-background-text {
    color: rgba(132, 109, 85, 0.06) !important;
    -webkit-text-stroke: 1px rgba(132, 109, 85, 0.12) !important;
}

.wearch-about-btn {
    background: linear-gradient(135deg, #C89545 0%, #95672D 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #C89545 !important;
}

.wearch-about-btn:hover {
    background: #302513 !important;
    color: #FFFFFF !important;
    border-color: #302513 !important;
}

/* 6. Section 3: Our Services -> SIGNATURE HIGHLIGHT (Pattern Background) */
.wearch-services {
    position: relative !important;
    background-color: #F3F0EC !important;
    background-image: url("../images/wearch-images/services-premium-pattern-bg.webp") !important;
    background-repeat: repeat !important;
    background-position: center center !important;
    background-size: auto !important;
    isolation: isolate !important;
}

.wearch-services::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(247, 245, 242, 0.55) !important;
    z-index: -1 !important;
}

.wearch-services::after {
    display: none !important;
}

.services-main-heading,
.wearch-services-header h2 {
    color: #302513 !important;
}

.wearch-service-card {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.wearch-service-card:hover {
    transform: translateY(-3px) !important;
    border-color: #C89545 !important;
    box-shadow: 0 12px 28px rgba(48, 37, 19, 0.1) !important;
}

.service-card-bottom {
    background-color: #FCFBF8 !important;
    border-top: 1px solid #E8E2DD !important;
    padding: 16px 20px !important;
}

.service-card-title {
    color: #302513 !important;
}

.services-nav-btn,
.video-carousel-nav,
.testimonial-nav-btn {
    background-color: #FCFBF8 !important;
    border: 1px solid #DAD2C9 !important;
    color: #302513 !important;
    box-shadow: 0 4px 12px rgba(48, 37, 19, 0.08) !important;
    transition: all 0.3s ease !important;
}

.services-nav-btn i,
.video-carousel-nav i,
.testimonial-nav-btn i {
    color: #302513 !important;
    transition: color 0.3s ease !important;
}

.services-nav-btn:hover,
.video-carousel-nav:hover,
.testimonial-nav-btn:hover {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 18px rgba(200, 149, 69, 0.25) !important;
}

.services-nav-btn:hover i,
.video-carousel-nav:hover i,
.testimonial-nav-btn:hover i {
    color: #FFFFFF !important;
}

/* 7. Section 4: Our Projects -> Warm Ivory (#F7F5F2, No Pattern) */
.wearch-projects {
    background-color: #F7F5F2 !important;
    background-image: none !important;
}

.wearch-projects::before,
.wearch-projects::after {
    display: none !important;
}

.projects-main-heading {
    color: #302513 !important;
}

.wearch-project-card {
    border: 1px solid #DAD2C9 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
}

/* 8. Section 5: Featured Videos -> Light Warm Cream/Ivory (#F7F5F2) */
.wearch-video-showcase {
    background-color: #F7F5F2 !important;
    background-image: none !important;
}

.video-showcase-title {
    color: #302513 !important;
}

.video-showcase-card {
    background-color: #FFFFFF !important;
    border: 1px solid #DAD2C9 !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.06) !important;
}

.video-showcase-card:hover {
    border-color: #C89545 !important;
    box-shadow: 0 12px 32px rgba(48, 37, 19, 0.12) !important;
}

/* 9. Section 6: Client Testimonials -> Light Beige (#E8E2DD) */
.wearch-voices {
    background-color: #E8E2DD !important;
    background-image: none !important;
}

.wearch-voices-heading {
    color: #302513 !important;
}

.wearch-testimonial-card {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.wearch-testimonial-card:hover {
    transform: translateY(-3px) !important;
    border-color: #C89545 !important;
    box-shadow: 0 12px 28px rgba(48, 37, 19, 0.1) !important;
}

.testimonial-card-media {
    width: 100% !important;
    height: 165px !important;
    min-height: 165px !important;
    flex: 0 0 165px !important;
    aspect-ratio: 2 / 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #E8E2DD !important;
    overflow: hidden !important;
    border-radius: 14px 14px 0 0 !important;
}

.testimonial-card-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 14px 14px 0 0 !important;
    border: none !important;
    transform: none !important;
}

.testimonial-card-body {
    background-color: #FCFBF8 !important;
}

.testimonial-stars i {
    color: #C89545 !important;
}

.testimonial-text-preview,
.testimonial-client-name {
    color: #302513 !important;
}

.testimonial-read-link {
    color: #846D55 !important;
}

.testimonial-read-link:hover,
.wearch-testimonial-card:hover .testimonial-read-link {
    color: #C89545 !important;
}

.testimonial-modal-dialog {
    background-color: #F7F5F2 !important;
    background: #F7F5F2 !important;
    border: 1px solid rgba(200, 149, 69, 0.22) !important;
}

.testimonial-modal-content h3,
.testimonial-modal-author strong {
    color: #302513 !important;
}

.testimonial-modal-text p {
    color: #5C5243 !important;
}

.testimonial-modal-author span {
    color: #846D55 !important;
}

.testimonial-modal-close {
    color: #302513 !important;
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.40) !important;
    border-color: rgba(200, 149, 69, 0.40) !important;
    outline: none !important;
    box-shadow: 0 3px 10px rgba(48, 37, 19, 0.08) !important;
}

.testimonial-modal-close:hover {
    background: #C89545 !important;
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
    outline: none !important;
    transform: none !important;
}

.testimonial-modal-close:focus,
.testimonial-modal-close:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200, 149, 69, 0.18) !important;
}

/* 10. Section 7: FAQ -> Open Airy Architectural Style (#DAD2C9 Section) */
.wearch-faq {
    height: auto !important;
    min-height: 0 !important;
    min-height: auto !important;
    background-color: #DAD2C9 !important;
    background-image: none !important;
    padding: 75px 0 !important;
}

@media (max-width: 991px) {
    .wearch-faq {
        height: auto !important;
        min-height: 0 !important;
        min-height: auto !important;
        padding: 60px 0 !important;
    }
}

@media (max-width: 767px) {
    .wearch-faq {
        height: auto !important;
        min-height: 0 !important;
        min-height: auto !important;
        padding: 50px 0 !important;
    }
}

.wearch-faq::before,
.wearch-faq::after {
    display: none !important;
}

.faq-heading,
.faq-heading span {
    color: #302513 !important;
}

.faq-description {
    color: #5C5243 !important;
}

/* Testimonial modal readability */
.testimonial-modal-content {
    color: #5c5243;
}

.testimonial-modal-rating i {
    color: #c89545 !important;
    font-size: 13px;
}

.testimonial-modal-label {
    color: #b17c2e !important;
}

.testimonial-modal-text,
.testimonial-modal-text p {
    color: #5c5243 !important;
}

.testimonial-modal-author strong {
    color: #302513 !important;
}

.faq-contact-box small {
    color: #846D55 !important;
}

.faq-contact-box a {
    color: #302513 !important;
    font-weight: 600 !important;
}

.faq-contact-box a:hover {
    color: #C89545 !important;
}

/* Open, airy row separators instead of heavy stacked cards */
.faq-item {
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(132, 109, 85, 0.25) !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.faq-item:first-child {
    border-top: 1px solid rgba(132, 109, 85, 0.25) !important;
}

.faq-item.active {
    background-color: transparent !important;
    background: transparent !important;
    border-bottom-color: #C89545 !important;
}

.faq-question {
    background-color: transparent !important;
    background: transparent !important;
    padding: 16px 6px 16px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.faq-question span {
    color: #302513 !important;
    font-weight: 600 !important;
    font-size: 17px !important;
}

.faq-question i {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    flex: 0 0 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: transparent !important;
    border: 1px solid #C89545 !important;
    color: #C89545 !important;
    border-radius: 50% !important;
    font-size: 13px !important;
    margin-right: 4px !important;
    transition: all 0.3s ease !important;
}

.faq-question:hover i {
    background-color: rgba(200, 149, 69, 0.15) !important;
    border-color: #C89545 !important;
}

.faq-item.active .faq-question i {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    background-color: transparent !important;
    background: transparent !important;
    color: #5C5243 !important;
    transition: max-height 0.4s ease, padding 0.4s ease !important;
}

.faq-item.active .faq-answer {
    max-height: 250px !important;
    padding: 0 0 14px 0 !important;
}

.faq-answer,
.faq-answer p,
.faq-answer span,
.faq-answer strong,
.faq-answer b,
.faq-answer li,
.faq-answer div,
.faq-answer * {
    color: #5C5243 !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
}

/* Home Buttons — White Text & White Arrow, Deeper Warm Gold Hover (#A77A3B) */
.wearch-talk-btn,
.wearch-header-btn,
.wearch-about-btn,
.cta-gold-accent-btn,
.wearch-primary-btn {
    background: linear-gradient(135deg, #C89545 0%, #95672D 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #C89545 !important;
}

.wearch-talk-btn span,
.wearch-header-btn span,
.wearch-about-btn span,
.cta-gold-accent-btn span,
.wearch-primary-btn span,
.wearch-talk-btn i,
.wearch-header-btn i,
.wearch-about-btn i,
.cta-gold-accent-btn i,
.wearch-primary-btn i {
    color: #FFFFFF !important;
}

.wearch-talk-btn:hover,
.wearch-header-btn:hover,
.wearch-about-btn:hover,
.cta-gold-accent-btn:hover,
.wearch-primary-btn:hover {
    background: #A77A3B !important;
    background-color: #A77A3B !important;
    color: #FFFFFF !important;
    border-color: #A77A3B !important;
}

.wearch-about-btn:hover .about-btn-icon,
.cta-gold-accent-btn:hover .about-btn-icon,
.wearch-primary-btn:hover .about-btn-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
}

.wearch-about-btn:hover .about-btn-icon i,
.cta-gold-accent-btn:hover .about-btn-icon i,
.wearch-primary-btn:hover .about-btn-icon i {
    color: #FFFFFF !important;
    transform: translateX(4px) !important;
}

/* 11. Section 8: Build Your Vision CTA -> LIGHT WARM ARCHITECTURAL PATTERN SECTION */
.wearch-contact-cta {
    position: relative !important;
    background-color: #F7F5F2 !important;
    background-image: url("../images/wearch-images/home-cta-light-architectural-bg.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    isolation: isolate !important;
}

.cta-full-bg {
    display: none !important;
}

.cta-full-overlay {
    background: rgba(247, 245, 242, 0.45) !important;
}

.cta-eyebrow-text {
    color: #C89545 !important;
}

.cta-eyebrow-line {
    background-color: #C89545 !important;
}

.cta-main-heading {
    color: #302513 !important;
}

.cta-description {
    color: #5C5243 !important;
}

.cta-contact-strip {
    border-top: 1px solid rgba(132, 109, 85, 0.25) !important;
    padding-top: 12px !important;
    margin-top: 10px !important;
}

.cta-strip-text {
    color: #302513 !important;
}

.cta-strip-icon i {
    color: #C89545 !important;
}

.cta-strip-divider {
    background-color: rgba(132, 109, 85, 0.25) !important;
}

/* 12. Section 9: Footer -> RICH DEEP WARM ESPRESSO/WALNUT BROWN ANCHOR (#3F3428) */
footer.wearch-footer {
    background-color: #3F3428 !important;
    background: #3F3428 !important;
    color: #F7F5F2 !important;
    border-top: 1px solid rgba(200, 149, 69, 0.22) !important;
}

.footer-col-title,
.footer-col h3,
.footer-social-label {
    color: #C89545 !important;
}

.footer-brand-desc,
.footer-copy-text,
.footer-powered,
.footer-powered a {
    color: rgba(247, 245, 242, 0.78) !important;
}

.footer-quick-links li a,
.footer-office-links li a,
.footer-contact-rows a {
    color: #F7F5F2 !important;
}

.footer-quick-links li a:hover,
.footer-office-links li a:hover,
.footer-contact-rows a:hover,
.footer-powered a:hover {
    color: #C89545 !important;
}

.wearch-footer-bottom {
    border-top: 1px solid rgba(200, 149, 69, 0.18) !important;
}

.footer-social-icons a {
    background: rgba(247, 245, 242, 0.08) !important;
    border: 1px solid rgba(200, 149, 69, 0.25) !important;
    color: #C89545 !important;
}

.footer-social-icons a:hover {
    background: #C89545 !important;
    color: #3F3428 !important;
}

/* 13. Preloader Color Theme -> MATCHES EXACT FOOTER DEEP WALNUT/ESPRESSO BACKGROUND (#3F3428) */
.preloader {
    background-color: #3F3428 !important;
    background: #3F3428 !important;
}

.preloader .loading {
    border: 1px solid rgba(247, 245, 242, 0.18) !important;
    border-top-color: #C89545 !important;
    border-right-color: #A77A3B !important;
}

/* ==========================================================================
   WEARCH ABOUT PAGE — LIGHT THEME CORRECTION ENGINE (ABOUT.HTML ONLY)
   ========================================================================== */

/* 1. Internal Hero / Banner (Photographic Overlay & Typography) */
.wearch-internal-hero-title {
    color: #FFFFFF !important;
}

.wearch-internal-hero-breadcrumb a {
    color: rgba(247, 245, 242, 0.8) !important;
}

.wearch-internal-hero-breadcrumb a:hover {
    color: #C89545 !important;
}

.wearch-internal-hero-breadcrumb .breadcrumb-sep {
    color: rgba(247, 245, 242, 0.45) !important;
}

.wearch-internal-hero-breadcrumb .active {
    color: #C89545 !important;
}

/* 2. Section 1: Who We Are / Intro -> Warm Ivory (#F7F5F2) */
.wearch-who-clean {
    background-color: #F7F5F2 !important;
    background-image: none !important;
    border-top: none !important;
    padding: 52px 0 56px !important;
}

.wearch-who-clean-label .wearch-who-label-text {
    color: #846D55 !important;
}

.wearch-who-clean-heading {
    color: #302513 !important;
}

.wearch-who-gold-divider {
    background-color: #C89545 !important;
}

.wearch-who-paragraph {
    color: #5C5243 !important;
    max-width: 980px !important;
    margin: 0 auto !important;
}

/* 3. Section 2: About WeArch Story -> Soft Cream (#F3F0EC) */
.about-story-section {
    background-color: #F3F0EC !important;
    background-image: none !important;
}

.about-story-heading {
    color: #302513 !important;
}

.about-story-copy p {
    color: #5C5243 !important;
}

.about-story-btn {
    background: linear-gradient(135deg, #C89545 0%, #95672D 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #C89545 !important;
}

.about-story-btn span {
    color: #FFFFFF !important;
}

.about-story-btn .about-btn-icon {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #FFFFFF !important;
}

.about-story-btn .about-btn-icon i {
    color: #FFFFFF !important;
}

.about-story-btn:hover {
    background: #A77A3B !important;
    background-color: #A77A3B !important;
    color: #FFFFFF !important;
    border-color: #A77A3B !important;
}

.about-story-btn:hover .about-btn-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #FFFFFF !important;
}

.about-story-btn:hover .about-btn-icon i {
    color: #FFFFFF !important;
    transform: translateX(4px) !important;
}

.about-story-image-frame {
    border: 1px solid #E8E2DD !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
}

/* 4. Section 3: Founder / Director -> Warm Ivory (#F7F5F2) */
.wearch-director {
    background-color: #F7F5F2 !important;
    background-image: none !important;
}

.director-name {
    color: #302513 !important;
}

.director-role {
    color: #846D55 !important;
}

.wearch-director-message p {
    color: #5C5243 !important;
}

.director-media {
    border: 1px solid #E8E2DD !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
}

.director-caption {
    background: rgba(48, 37, 19, 0.75) !important;
    color: #F7F5F2 !important;
}

/* 5. Section 4: Our Foundation / Vision & Mission -> MAIN ABOUT FEATURE HIGHLIGHT (#DAD2C9 Base + Pattern) */
.foundation-section {
    position: relative !important;
    background-color: #DAD2C9 !important;
    background-image: url("../images/wearch-images/light-architectural-pattern-bg.webp") !important;
    background-repeat: repeat !important;
    background-position: center center !important;
    background-size: auto !important;
    isolation: isolate !important;
}

.foundation-section::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(247, 245, 242, 0.40) !important;
    z-index: -1 !important;
}

.foundation-section .recognition-main-heading,
.wearch-mentors .recognition-main-heading {
    color: #302513 !important;
    padding-bottom: 30px;
}

.foundation-box {
    background-color: #FCFBF8 !important;
    border: 1px solid #DAD2C9 !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.06) !important;
    border-radius: 14px !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.foundation-box:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(200, 149, 69, 0.35) !important;
    box-shadow: 0 8px 24px rgba(74, 58, 42, 0.08) !important;
}

.foundation-box-title {
    color: #302513 !important;
    text-align: center;
}

.foundation-box-text {
    color: #5C5243 !important;
}

/* ==========================================================
   ABOUT PAGE — OUR MENTORS SECTION
========================================================== */
.wearch-mentors {
    position: relative;
    background-color: #F7F5F2 !important;
    padding: 60px 0 !important;
    border-top: 1px solid #E8E2DD;
    border-bottom: 1px solid #E8E2DD;
}

.mentors-header {
    text-align: center;
    margin-bottom: 32px;
}

.mentors-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 0 !important;
}

.mentors-swiper .swiper-wrapper {
    display: flex !important;
    transition-timing-function: linear !important;
}

.mentors-swiper .swiper-slide.mentor-card-slide {
    height: auto !important;
}

/* Mentor Card Styles */
.mentor-card {
    background: #FCFBF8;
    border: 1px solid #E8E2DD;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(48, 37, 19, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
}

.mentor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 149, 69, 0.4);
    box-shadow: 0 8px 22px rgba(74, 58, 42, 0.08);
}

.mentor-media {
    margin: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: block;
    background-color: #f5f0eb;
}

.mentor-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.mentor-card:hover .mentor-media img {
    transform: scale(1.03);
}

/* Swiper Pagination Hidden */
.mentors-pagination {
    display: none !important;
}

@media (max-width: 991px) {
    .wearch-mentors {
        padding: 48px 0 56px !important;
    }

    .mentors-header {
        margin-bottom: 24px;
    }
}


/* 6. Section 5: Recognition & Awards -> Soft Cream (#F3F0EC) Transition */
.wearch-recognition {
    background-color: #F3F0EC !important;
    background-image: none !important;
    padding: 72px 0 80px !important;
}

.recognition-header .recognition-main-heading {
    color: #302513 !important;
}

.recognition-card {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.recognition-card-contain {
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
}

.recognition-card-contain img {
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.recognition-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(200, 149, 69, 0.35) !important;
    box-shadow: 0 8px 24px rgba(74, 58, 42, 0.08) !important;
}

/* ==========================================================================
   WEARCH ARCHITECTURE SERVICE PAGE — LIGHT THEME CORRECTION ENGINE
   ========================================================================== */

/* 1. Purposeful Architecture -> Warm Ivory (#F7F5F2) */
.architecture-overview {
    background-color: #F7F5F2 !important;
    background-image: none !important;
    border-top: none !important;
}

.architecture-overview-left h2 {
    color: #302513 !important;
}

.architecture-overview-left p {
    color: #5C5243 !important;
}

.overview-image img {
    border-radius: 14px !important;
    border: 1px solid #E8E2DD !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
}

/* 2. Personalised Approach -> MAIN SERVICE PAGE VISUAL POP (#DAD2C9 Feature Beige) */
.architecture-personalized {
    background-color: #DAD2C9 !important;
    background-image: none !important;
}

.architecture-personalized h2 {
    color: #302513 !important;
}

.architecture-personalized-content p {
    color: #5C5243 !important;
}

.architecture-personalized-link {
    background: linear-gradient(135deg, #C89545 0%, #95672D 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #C89545 !important;
    padding: 13px 26px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.architecture-personalized-link span,
.architecture-personalized-link i {
    color: #FFFFFF !important;
}

.architecture-personalized-link:hover {
    background: #A77A3B !important;
    background-color: #A77A3B !important;
    color: #FFFFFF !important;
    border-color: #A77A3B !important;
}

.architecture-personalized-link:hover i {
    color: #FFFFFF !important;
    transform: translateX(4px) !important;
}

.architecture-personalized-image img {
    border-radius: 14px !important;
    border: 1px solid #C4BAB0 !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.06) !important;
}

/* 3. Featured Projects -> Clean Warm Ivory (#F7F5F2) & Edge-to-Edge Card Fit */
.architecture-excellence {
    background-color: #F7F5F2 !important;
    background-image: none !important;
    border-top: none !important;
}

.architecture-excellence-title {
    color: #302513 !important;
}

.architecture-excellence-image {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.architecture-excellence-image:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(200, 149, 69, 0.35) !important;
    box-shadow: 0 8px 24px rgba(74, 58, 42, 0.08) !important;
}

.architecture-excellence-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    object-position: center !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Featured Projects Overlay Badge (All Service Pages) */
.architecture-excellence-image {
    position: relative !important;
}

.featured-project-badge {
    position: absolute !important;
    bottom: 14px !important;
    left: 14px !important;
    z-index: 5 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background-color: rgba(247, 245, 242, 0.92) !important;
    background: rgba(247, 245, 242, 0.92) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(200, 149, 69, 0.38) !important;
    border-radius: 8px !important;
    padding: 7px 14px !important;
    margin: 0 !important;
    max-width: calc(100% - 28px) !important;
    box-shadow: 0 4px 16px rgba(48, 37, 19, 0.12) !important;
    pointer-events: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: border-color 0.3s ease, background-color 0.3s ease !important;
}

.architecture-excellence-image:hover .featured-project-badge {
    border-color: rgba(200, 149, 69, 0.65) !important;
    background-color: rgba(252, 251, 248, 0.96) !important;
}

.featured-project-badge .featured-project-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background-color: #C89545 !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.featured-project-badge .featured-project-title {
    font-family: var(--body-font, 'Inter', sans-serif) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #302513 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

@media (max-width: 767.98px) {
    .featured-project-badge {
        bottom: 10px !important;
        left: 10px !important;
        padding: 5px 10px !important;
        max-width: calc(100% - 20px) !important;
        border-radius: 6px !important;
    }

    .featured-project-badge .featured-project-title {
        font-size: 11.5px !important;
    }
}

/* ==========================================================================
   WEARCH PROJECTS PAGE — LIGHT THEME CORRECTION ENGINE (PROJECTS.HTML ONLY)
   ========================================================================== */

/* 1. Main Projects Section -> Clean Warm Ivory (#F7F5F2) */
.wearch-projects-section {
    background-color: #F7F5F2 !important;
    background-image: none !important;
    border-top: none !important;
    color: #5C5243 !important;
}

.projects-main-heading {
    color: #302513 !important;
}

.project-card,
.project-card:nth-child(3n + 1),
.project-card:nth-child(3n + 2),
.project-card:nth-child(3n + 3) {
    height: auto !important;
    min-height: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.project-image-wrap {
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid #E8E2DD !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.project-image-wrap img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.project-card:hover .project-image-wrap {
    transform: translateY(-3px) !important;
    border-color: rgba(200, 149, 69, 0.35) !important;
    box-shadow: 0 8px 24px rgba(74, 58, 42, 0.08) !important;
}

.project-customer-name {
    color: #302513 !important;
    transition: color 0.3s ease !important;
}

.project-card:hover .project-customer-name {
    color: #C89545 !important;
}

/* 2. Project Hover Arrow Button -> Light Theme Control */
.project-hover-icon {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid #DAD2C9 !important;
    color: #302513 !important;
    box-shadow: 0 4px 12px rgba(48, 37, 19, 0.12) !important;
}

.project-hover-icon i {
    color: #302513 !important;
}

.project-card:hover .project-hover-icon {
    opacity: 1 !important;
    transform: scale(1) !important;
    background: #FCFBF8 !important;
    border-color: #C89545 !important;
    color: #302513 !important;
}

.project-card:hover .project-hover-icon i {
    color: #302513 !important;
}

.project-hover-icon:hover,
.project-card:hover .project-hover-icon:hover {
    background: #C89545 !important;
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.project-hover-icon:hover i,
.project-card:hover .project-hover-icon:hover i {
    color: #FFFFFF !important;
}

/* 3. Status Badges */
.project-status-badge {
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 0.05em !important;
}

.project-status-badge.status-completed {
    background: #C89545 !important;
    color: #FFFFFF !important;
    border: none !important;
}

.project-status-badge.status-ongoing {
    background: #5C5243 !important;
    color: #FFFFFF !important;
    border: none !important;
}

.project-status-badge.status-renovated {
    background: #95672D !important;
    color: #FFFFFF !important;
    border: none !important;
}

/* Projects Category Filter Bar */
.project-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.project-filter-btn {
    background: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    color: #5C5243 !important;
    padding: 9px 24px !important;
    border-radius: 30px !important;
    font-family: var(--body-font) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.project-filter-btn:hover,
.project-filter-btn.active {
    background: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(200, 149, 69, 0.25) !important;
}

/* Mobile Luxury Custom Filter Dropdown */
.project-mobile-filter-wrap {
    display: none;
    margin: 16px auto 28px;
    width: 100%;
    max-width: 300px;
    padding: 0 15px;
    position: relative;
    z-index: 100;
}

.project-custom-dropdown {
    position: relative;
    width: 100%;
}

.project-dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 46px !important;
    background: #FCFBF8 !important;
    border: 1.5px solid #C89545 !important;
    border-radius: 30px !important;
    padding: 0 18px !important;
    color: #302513 !important;
    font-family: var(--body-font) !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(200, 149, 69, 0.15) !important;
    transition: all 0.3s ease !important;
}

.project-dropdown-toggle:hover,
.project-dropdown-toggle:focus {
    box-shadow: 0 4px 20px rgba(200, 149, 69, 0.3) !important;
    border-color: #C89545 !important;
    outline: none !important;
}

.project-dropdown-toggle .select-icon-left {
    color: #C89545 !important;
    font-size: 13px !important;
    margin-right: 10px !important;
}

.project-dropdown-toggle .dropdown-selected-label {
    flex: 1 !important;
    text-align: left !important;
    color: #302513 !important;
}

.project-dropdown-toggle .select-icon-right {
    color: #C89545 !important;
    font-size: 11px !important;
    transition: transform 0.3s ease !important;
}

.project-custom-dropdown.open .select-icon-right {
    transform: rotate(180deg) !important;
}

.project-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    background: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.3) !important;
    border-radius: 16px !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    box-shadow: 0 10px 30px rgba(48, 37, 19, 0.18) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) scale(0.98) !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 999 !important;
}

.project-custom-dropdown.open .project-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.project-dropdown-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 11px 20px !important;
    color: #5C5243 !important;
    font-family: var(--body-font) !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.project-dropdown-item .check-icon {
    font-size: 11px !important;
    opacity: 0 !important;
    color: #C89545 !important;
    transition: opacity 0.2s ease !important;
}

.project-dropdown-item:hover {
    background: rgba(200, 149, 69, 0.1) !important;
    color: #C89545 !important;
}

.project-dropdown-item.active {
    background: #C89545 !important;
    color: #FFFFFF !important;
}

.project-dropdown-item.active .check-icon {
    opacity: 1 !important;
    color: #FFFFFF !important;
}

/* Responsive Viewport Overrides (< 768px) */
@media (max-width: 767.98px) {
    .project-filter-bar {
        display: none !important;
    }

    .project-mobile-filter-wrap {
        display: block !important;
    }
}

/* 4. Pagination UI */
.project-pagination-wrap .page-link {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    color: #302513 !important;
}

.project-pagination-wrap .page-item.active .page-link {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.project-pagination-wrap .page-link:hover {
    background-color: #F3F0EC !important;
    border-color: #C89545 !important;
    color: #C89545 !important;
}

/* ==========================================================================
   WEARCH GALLERY PAGE — LIGHT THEME CORRECTION ENGINE (GALLERY.HTML ONLY)
   ========================================================================== */

/* 1. Main Gallery Section -> Clean Warm Ivory (#F7F5F2) */
.wearch-gallery-section {
    background-color: #F7F5F2 !important;
    background-image: none !important;
    border-top: none !important;
    color: #5C5243 !important;
}

.gallery-title {
    color: #302513 !important;
}

.gallery-image-wrap {
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid #E8E2DD !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.gallery-image-wrap img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.gallery-image-wrap:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(200, 149, 69, 0.35) !important;
    box-shadow: 0 8px 24px rgba(74, 58, 42, 0.08) !important;
}

/* 2. Hover / Lightbox Control -> Light Theme Control */
.gallery-hover-icon {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid #DAD2C9 !important;
    color: #302513 !important;
    box-shadow: 0 4px 12px rgba(48, 37, 19, 0.12) !important;
}

.gallery-hover-icon i {
    color: #302513 !important;
}

.gallery-image-wrap:hover .gallery-hover-icon {
    opacity: 1 !important;
    transform: scale(1) !important;
    background: #FCFBF8 !important;
    border-color: #C89545 !important;
    color: #302513 !important;
}

.gallery-image-wrap:hover .gallery-hover-icon i {
    color: #302513 !important;
}

.gallery-hover-icon:hover,
.gallery-image-wrap:hover .gallery-hover-icon:hover {
    background: #C89545 !important;
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.gallery-hover-icon:hover i,
.gallery-image-wrap:hover .gallery-hover-icon:hover i {
    color: #FFFFFF !important;
}

/* 3. Pagination UI */
.gallery-pagination a {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    color: #302513 !important;
}

.gallery-pagination a.pagination-num.active {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.gallery-pagination a:hover:not(.disabled) {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.gallery-pagination a.disabled {
    opacity: 0.4 !important;
    pointer-events: none !important;
}

/* 4. Featured Videos Section -> Soft Cream (#F3F0EC) Visual Rhythm */
.wearch-video-showcase {
    background-color: #F3F0EC !important;
    background-image: none !important;
}

.video-showcase-title {
    color: #302513 !important;
}

.video-showcase-card {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
}

.video-carousel-nav {
    background: #FCFBF8 !important;
    border: 1px solid #DAD2C9 !important;
    color: #302513 !important;
    box-shadow: 0 4px 12px rgba(48, 37, 19, 0.08) !important;
}

.video-carousel-nav i {
    color: #302513 !important;
}

.video-carousel-nav:hover {
    background: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.video-carousel-nav:hover i {
    color: #FFFFFF !important;
}

/* ==========================================================================
   WEARCH BLOG LISTING PAGE — LIGHT THEME CORRECTION ENGINE (BLOG.HTML ONLY)
   ========================================================================== */

/* 1. Main Blog Section -> Soft Cream Canvas (#F3F0EC) */
.wearch-blog-section {
    background-color: #F3F0EC !important;
    background-image: none !important;
    border-top: none !important;
    color: #5C5243 !important;
}

.wearch-blog-title {
    color: #302513 !important;
}

/* 2. Blog Cards -> Warm White Cards (#FCFBF8) with Refined Architectural Proportions */
.wearch-blog-card {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    box-shadow: 0 4px 16px rgba(74, 58, 42, 0.05) !important;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease !important;
}

.wearch-blog-card-img-wrap {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    border-radius: 18px 18px 0 0 !important;
    background-color: transparent !important;
    border-bottom: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.wearch-blog-card-img-wrap img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    object-position: center !important;
    border: none !important;
    transition: transform 0.35s ease !important;
}

@media (hover: hover) and (pointer: fine) {
    .wearch-blog-card:hover {
        transform: translateY(-4px) !important;
        border-color: rgba(200, 149, 69, 0.24) !important;
        box-shadow: 0 10px 28px rgba(74, 58, 42, 0.09) !important;
    }

    .wearch-blog-card:hover .wearch-blog-card-img-wrap img {
        transform: scale(1.02) !important;
    }

    .wearch-blog-card:hover .wearch-blog-card-action i {
        transform: translateX(3px) !important;
    }
}

.wearch-blog-card-body {
    padding: 18px 24px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.wearch-blog-card-meta {
    margin-bottom: 6px !important;
}

.wearch-blog-category-text {
    color: #C89545 !important;
    font-weight: 600 !important;
}

.wearch-blog-card-heading {
    color: #302513 !important;
    margin-top: 2px !important;
    margin-bottom: 8px !important;
    transition: color 0.3s ease !important;
}

.wearch-blog-card:hover .wearch-blog-card-heading {
    color: #C89545 !important;
}

.wearch-blog-card-excerpt {
    color: #5C5243 !important;
    margin-bottom: 14px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.wearch-blog-card-action {
    color: #C89545 !important;
    font-weight: 600 !important;
    margin-top: auto !important;
    transition: color 0.3s ease !important;
}

.wearch-blog-card-action span,
.wearch-blog-card-action i {
    color: #C89545 !important;
}

.wearch-blog-card-action i {
    transition: transform 0.28s ease !important;
}

.wearch-blog-card:hover .wearch-blog-card-action,
.wearch-blog-card:hover .wearch-blog-card-action span {
    color: #A77A3B !important;
}


/* 3. Pagination UI -> Matching Gallery Standard */
ul.blog-pagination a {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    color: #302513 !important;
}

ul.blog-pagination a.active,
ul.blog-pagination a.pagination-num.active {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

ul.blog-pagination a:hover:not(.disabled) {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

ul.blog-pagination a.disabled {
    opacity: 0.4 !important;
    pointer-events: none !important;
}

/* ==========================================================================
   WEARCH CAREERS PAGE — LIGHT THEME CORRECTION ENGINE (CAREERS.HTML ONLY)
   ========================================================================== */

/* 1. Intro Section -> Warm Ivory (#F7F5F2) */
.careers-page .wearch-who-clean {
    background-color: #F7F5F2 !important;
    background-image: none !important;
    border-top: none !important;
}

.careers-page .wearch-who-label-text {
    color: #846D55 !important;
}

.careers-page .wearch-who-clean-heading {
    color: #302513 !important;
}

.careers-page .wearch-who-gold-divider {
    background-color: #C89545 !important;
}

.careers-page .wearch-who-paragraph {
    color: #5C5243 !important;
}

.careers-contact-link {
    color: #C89545 !important;
    font-weight: 500 !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

.careers-contact-link:hover {
    color: #A77A3B !important;
}

/* 2. Current Openings Section -> Warm Beige Canvas (#E8E2DD) */
.wearch-openings-section {
    background-color: #E8E2DD !important;
    background-image: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.careers-openings-header .wearch-contact-title {
    color: #302513 !important;
}

.career-list {
    background-color: #FCFBF8 !important;
    border: 1px solid #DAD2C9 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(48, 37, 19, 0.05) !important;
    border-top: none !important;
}

.career-header-row {
    background-color: rgba(218, 210, 201, 0.25) !important;
    border-bottom: 1px solid rgba(132, 109, 85, 0.18) !important;
}

.career-header-row .career-cell {
    color: #846D55 !important;
    font-weight: 600 !important;
}

.career-row {
    border-bottom: 1px solid rgba(132, 109, 85, 0.14) !important;
    background-color: transparent !important;
}

.vacancy-title {
    color: #302513 !important;
}

.career-cell span {
    color: #5C5243 !important;
}

.career-field-label {
    color: #846D55 !important;
}

.career-apply-btn,
.career-apply-btn span,
.career-apply-btn i {
    color: #C89545 !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

.career-apply-btn:hover,
.career-apply-btn:hover span,
.career-apply-btn:hover i {
    color: #A77A3B !important;
}

.career-apply-btn:hover i {
    transform: translateX(4px) !important;
}

/* 3. Application Form Section -> Soft Warm Cream (#F3F0EC) */
.wearch-cv-section {
    background-color: #F3F0EC !important;
    background-image: none !important;
    border-top: none !important;
}

.careers-overlay {
    background: rgba(200, 149, 69, 0.05) !important;
}

.careers-main-title {
    color: #302513 !important;
}

.careers-panel-card {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 28px rgba(74, 58, 42, 0.06) !important;
}

.wearch-form-control {
    background-color: #F7F5F2 !important;
    border: 1px solid #DAD2C9 !important;
    color: #302513 !important;
}

.wearch-form-control::placeholder {
    color: #846D55 !important;
    opacity: 0.8 !important;
}

.wearch-form-control:focus {
    border-color: #C89545 !important;
    box-shadow: 0 0 0 2px rgba(200, 149, 69, 0.10) !important;
    background-color: #FCFBF8 !important;
}

.compact-field-label {
    color: #5C5243 !important;
}

.career-file-label {
    background-color: #F7F5F2 !important;
    border: 1px solid #DAD2C9 !important;
    color: #846D55 !important;
    transition: border-color 0.3s ease !important;
}

.career-file-label .file-name,
.career-file-label span {
    color: #846D55 !important;
    opacity: 0.8 !important;
}

.career-file-label .file-name.has-file {
    color: #302513 !important;
    opacity: 1 !important;
}

.career-file-label i {
    color: #C89545 !important;
}

.career-file-label:hover {
    border-color: #C89545 !important;
}

.wearch-cv-remove-btn {
    color: #A77A3B !important;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #C89545 0%, #95672D 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #C89545 !important;
    border-radius: 50px !important;
    padding: 12px 14px 12px 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    width: auto !important;
    max-width: 100% !important;
    transition: all 0.3s ease !important;
}

.contact-submit-btn span {
    color: #FFFFFF !important;
}

.contact-submit-btn .about-btn-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
}

.contact-submit-btn:hover {
    background: #A77A3B !important;
    background-color: #A77A3B !important;
    border-color: #A77A3B !important;
    color: #FFFFFF !important;
}

.contact-submit-btn:hover span,
.contact-submit-btn:hover .about-btn-icon,
.contact-submit-btn:hover .about-btn-icon i {
    color: #FFFFFF !important;
}

/* 4. Stay Connected Section -> Warm Beige Canvas (#E8E2DD) */
.contact-social-cta {
    background-color: #E8E2DD !important;
    background-image: none !important;
    border-top: none !important;
}

.contact-social-cta h3 {
    color: #846D55 !important;
}

.contact-social-cta h2 span {
    color: #C89545 !important;
}

.contact-social-cta p {
    color: #5C5243 !important;
    text-align: center !important;
    /
}

.contact-social-buttons a {
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(132, 109, 85, 0.25) !important;
    color: #5C5243 !important;
    transition: all 0.3s ease !important;
}

.contact-social-buttons a:hover {
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.contact-social-buttons a:hover i {
    color: #FFFFFF !important;
}

/* ==========================================================================
   WEARCH CONTACT PAGE — LIGHT THEME CORRECTION ENGINE (CONTACT.HTML ONLY)
   ========================================================================== */

/* Page Body Base */
body.contact-page {
    background-color: #F3F0EC !important;
    color: #302513;
}

/* 1. Start Your Project / Contact Section -> Soft Cream Canvas (#F3F0EC) */
.wearch-unified-contact {
    background-color: #F3F0EC !important;
    background: #F3F0EC !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Left Contact Information */
.contact-details-col .contact-col-heading {
    color: #302513 !important;
}

.contact-detail-group {
    border-bottom: 1px solid rgba(132, 109, 85, 0.18) !important;
}

.contact-detail-label {
    color: #C89545 !important;
}

.contact-detail-values a,
.contact-detail-values span {
    color: #5C5243 !important;
}

.contact-detail-values a:hover {
    color: #C89545 !important;
}

/* Contact Form */
.wearch-form-group label {
    color: #5C5243 !important;
}

.wearch-form-control {
    background-color: #FCFBF8 !important;
    border: 1px solid #DDD5CC !important;
    color: #302513 !important;
}

.wearch-form-control::placeholder {
    color: #846D55 !important;
    opacity: 0.8 !important;
}

.wearch-form-control:focus {
    border-color: #C89545 !important;
    background-color: #FCFBF8 !important;
    box-shadow: 0 0 0 2px rgba(200, 149, 69, 0.10) !important;
}

/* ==========================================================================
   CONTACT FORM CUSTOM LUXURY SUBJECT DROPDOWN COMPONENT (REFERENCE STYLE)
   ========================================================================== */

.contact-custom-dropdown {
    position: relative;
    width: 100%;
}

.contact-dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    background: #FCFBF8 !important;
    border: 1px solid #DDD5CC !important;
    border-radius: 8px !important;
    padding: 0 16px !important;
    color: #302513 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.contact-dropdown-toggle:hover,
.contact-dropdown-toggle:focus {
    border-color: #C89545 !important;
    background-color: #FCFBF8 !important;
    box-shadow: 0 0 0 2px rgba(200, 149, 69, 0.10) !important;
    outline: none !important;
}

.contact-dropdown-toggle .dropdown-selected-label {
    flex: 1 !important;
    text-align: left !important;
    color: #302513 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.contact-dropdown-toggle .dropdown-selected-label.is-placeholder {
    color: #846D55 !important;
    opacity: 0.85 !important;
}

.contact-dropdown-toggle .select-icon-right {
    color: #C89545 !important;
    font-size: 13px !important;
    margin-left: 10px !important;
    transition: transform 0.3s ease !important;
}

.contact-custom-dropdown.open .select-icon-right {
    transform: rotate(180deg) !important;
}

/* Outer Card Container Dropdown Box - Rounded 18px */
.contact-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;
    background: #F5F0EB !important;
    border: 1px solid rgba(200, 149, 69, 0.25) !important;
    border-radius: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    box-shadow: 0 12px 32px rgba(48, 37, 19, 0.16) !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) scale(0.98) !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 999 !important;
}

.contact-custom-dropdown.open .contact-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

#subject,
#subject option,
.contact-dropdown-toggle .dropdown-selected-label,
.contact-dropdown-item {
    text-transform: none !important;
}

/* Dropdown Item Base */
.contact-dropdown-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 20px !important;
    background: #F5F0EB !important;
    color: #5C5243 !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border-bottom: 1px solid rgba(218, 210, 201, 0.3) !important;
}

.contact-dropdown-item:last-child {
    border-bottom: none !important;
}

/* Gold Dot Icon (shown on hover) */
.contact-dropdown-item .dot-icon {
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #C89545 !important;
    opacity: 0 !important;
    transform: scale(0.5) !important;
    transition: all 0.2s ease !important;
}

/* Check Icon (shown on active) */
.contact-dropdown-item .check-icon {
    font-size: 12px !important;
    opacity: 0 !important;
    color: #FFFFFF !important;
    transition: opacity 0.2s ease !important;
}

/* Hover Option Style: Soft warm beige highlight + Gold Dot indicator */
.contact-dropdown-item:hover {
    background: #EFE9DF !important;
    color: #C89545 !important;
}

.contact-dropdown-item:hover .dot-icon {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Active/Selected Option Style: Solid brand gold/ochre background + crisp white text + checkmark indicator */
.contact-dropdown-item.active {
    background: #C89545 !important;
    color: #FFFFFF !important;
}

.contact-dropdown-item.active .check-icon {
    opacity: 1 !important;
}

.contact-dropdown-item.active .dot-icon {
    display: none !important;
}

.contact-page .contact-submit-btn {
    background: linear-gradient(135deg, #C89545 0%, #95672D 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid #C89545 !important;
}

.contact-page .contact-submit-btn span {
    color: #FFFFFF !important;
}

.contact-page .contact-submit-btn .about-btn-icon {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #FFFFFF !important;
}

.contact-page .contact-submit-btn:hover {
    background: #A77A3B !important;
    background-color: #A77A3B !important;
    border-color: #A77A3B !important;
    color: #FFFFFF !important;
}

.contact-page .contact-submit-btn:hover span,
.contact-page .contact-submit-btn:hover .about-btn-icon,
.contact-page .contact-submit-btn:hover .about-btn-icon i {
    color: #FFFFFF !important;
}

/* 2. Visit Our Offices Section -> Deeper Warm Greige/Taupe Canvas (#DED7CF) */
.wearch-contact-offices-section {
    background-color: #DED7CF !important;
    background: #DED7CF !important;
    border-top: none !important;
    border-bottom: none !important;
}


.wearch-offices-header .wearch-offices-title,
.wearch-contact-offices-section .wearch-offices-title,
.wearch-contact-offices-section .wearch-contact-title {
    color: #302513 !important;
}

.wearch-offices-intro {
    color: #5C5243 !important;
}

/* 3. Office Cards -> Warm White Cards (#FCFBF8) with Subtle Border & Distinction */
.wearch-office-card {
    background-color: #FCFBF8 !important;
    border: 1px solid #DDD5CC !important;
    box-shadow: 0 4px 16px rgba(74, 58, 42, 0.04) !important;
}

.wearch-office-card:hover {
    border-color: rgba(200, 149, 69, 0.5) !important;
}

.office-card-media {
    background-color: #E8E2DD !important;
}

.office-card-type {
    color: #C89545 !important;
}

.office-card-city {
    color: #302513 !important;
}

.office-card-addr {
    color: #5C5243 !important;
}

.office-card-footer {
    border-top: 1px solid rgba(132, 109, 85, 0.18) !important;
}

.office-card-phone {
    color: #302513 !important;
}

.office-card-phone:hover {
    color: #C89545 !important;
}

.office-map-link {
    color: #C89545 !important;
}

.office-map-link:hover {
    color: #A77A3B !important;
}

/* 4. UAE Availability Service Strip -> Light Warm Ivory (#FCFBF8) */
.wearch-uae-service-strip {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.3) !important;
}

.wearch-uae-service-strip:hover {
    border-color: rgba(200, 149, 69, 0.5) !important;
}

.uae-strip-badge {
    background: rgba(200, 149, 69, 0.1) !important;
    border: 1px solid rgba(200, 149, 69, 0.28) !important;
}

.uae-strip-badge .uae-icon,
.uae-strip-badge .uae-strip-label {
    color: #C89545 !important;
}

.uae-strip-text {
    color: #5C5243 !important;
}

.uae-strip-phone {
    color: #C89545 !important;
    background: rgba(200, 149, 69, 0.08) !important;
    border: 1px solid rgba(200, 149, 69, 0.25) !important;
}

.uae-strip-phone:hover {
    color: #FFFFFF !important;
    background: #C89545 !important;
    border-color: #C89545 !important;
}

/* ==========================================================================
   WEARCH PROJECT DETAIL PAGE — LIGHT THEME CORRECTION ENGINE (PROJECT-DETAIL.HTML ONLY)
   ========================================================================== */

/* Page Body Base */
body.wearch-project-detail {
    background-color: #F7F5F2 !important;
    color: #302513 !important;
}

/* 1. Main Project Details Section -> Warm Ivory Canvas (#F7F5F2) */
.wearch-project-info-section {
    background-color: #F7F5F2 !important;
    background: #F7F5F2 !important;
    color: #302513 !important;
}

/* Back to Projects Button */
.wearch-project-detail .wearch-back-btn {
    color: #C89545 !important;
}

.wearch-project-detail .wearch-back-btn:hover,
.wearch-project-detail .wearch-back-btn:focus {
    color: #A77A3B !important;
    border-bottom-color: #A77A3B !important;
}

/* Title & Description */
.wearch-project-detail .project-detail-title {
    color: #302513 !important;
}

.wearch-project-detail .project-detail-desc {
    color: #5C5243 !important;
}

/* 2. Project Specifications Box -> Warm White Box (#FCFBF8) */
.wearch-project-detail .project-specs-grid {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    box-shadow: 0 6px 20px rgba(74, 58, 42, 0.05) !important;
}

.wearch-project-detail .spec-label {
    color: #C89545 !important;
}

.wearch-project-detail .spec-value {
    color: #302513 !important;
}

/* 3. Project Gallery Section -> Warm Ivory Canvas (#F7F5F2) & Refined Image Radius */
.wearch-project-gallery-section {
    background-color: #F7F5F2 !important;
    background: #F7F5F2 !important;
}

.wearch-project-detail .project-gallery-item {
    background-color: #FCFBF8 !important;
    border: 1px solid #E8E2DD !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(74, 58, 42, 0.06) !important;
}

.wearch-project-detail .project-gallery-item img {
    border-radius: 18px !important;
}

.wearch-project-detail .project-gallery-item:hover {
    border-color: rgba(200, 149, 69, 0.4) !important;
}

/* ==========================================================================
   WEARCH DEVELOPERS — LIGHT THEME CONTROL ENGINE (PAGINATION & BACK-TO-TOP)
   ========================================================================== */

/* PART 1 — PAGINATION DEFAULT VISIBILITY */

/* 1. Inactive Page Numbers & Default Pagination Controls (Normal State) */
ul.blog-pagination a,
ul.blog-pagination a.pagination-num,
.project-pagination a,
.project-pagination a.pagination-num,
.gallery-pagination a,
.gallery-pagination a.pagination-num,
.page-pagination a,
.pagination-num,
.pagination-arrow {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.45) !important;
    color: #302513 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 2px 8px rgba(48, 37, 19, 0.05) !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease !important;
}

/* 2. Page Number Text & Arrow Icons (Normal State - CLEARLY VISIBLE #302513) */
ul.blog-pagination a i,
ul.blog-pagination a span,
ul.blog-pagination a *,
.project-pagination a i,
.project-pagination a span,
.project-pagination a *,
.gallery-pagination a i,
.gallery-pagination a span,
.gallery-pagination a *,
.page-pagination a i,
.page-pagination a span,
.page-pagination a *,
.pagination-num i,
.pagination-num span,
.pagination-num *,
.pagination-arrow i,
.pagination-arrow span,
.pagination-arrow * {
    color: #302513 !important;
    fill: #302513 !important;
    stroke: #302513 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.3s ease, fill 0.3s ease, stroke 0.3s ease !important;
}

/* 3. Current / Active Page Number (Refined Light Warm Accent Surface) */
ul.blog-pagination a.active,
ul.blog-pagination a.pagination-num.active,
.project-pagination a.active,
.project-pagination a.pagination-num.active,
.gallery-pagination a.active,
.gallery-pagination a.pagination-num.active,
.page-pagination a.active,
.pagination-num.active {
    background: #FCF6EC !important;
    background-color: #FCF6EC !important;
    border: 1px solid #C89545 !important;
    color: #C89545 !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 10px rgba(200, 149, 69, 0.15) !important;
}

ul.blog-pagination a.active span,
ul.blog-pagination a.active i,
ul.blog-pagination a.pagination-num.active span,
ul.blog-pagination a.pagination-num.active i,
.project-pagination a.active span,
.project-pagination a.active i,
.project-pagination a.pagination-num.active span,
.project-pagination a.pagination-num.active i,
.gallery-pagination a.active span,
.gallery-pagination a.active i,
.gallery-pagination a.pagination-num.active span,
.gallery-pagination a.pagination-num.active i,
.pagination-num.active span,
.pagination-num.active i {
    color: #C89545 !important;
}

/* 4. Clickable Pagination Hover State (Gold Surface + White Text/Icon) */
ul.blog-pagination a:hover:not(.disabled),
.project-pagination a:hover:not(.disabled),
.gallery-pagination a:hover:not(.disabled),
.page-pagination a:hover:not(.disabled),
.pagination-num:hover:not(.disabled),
.pagination-arrow:hover:not(.disabled) {
    background: #C89545 !important;
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 18px rgba(200, 149, 69, 0.25) !important;
}

ul.blog-pagination a:hover:not(.disabled) i,
ul.blog-pagination a:hover:not(.disabled) span,
ul.blog-pagination a:hover:not(.disabled) *,
.project-pagination a:hover:not(.disabled) i,
.project-pagination a:hover:not(.disabled) span,
.project-pagination a:hover:not(.disabled) *,
.gallery-pagination a:hover:not(.disabled) i,
.gallery-pagination a:hover:not(.disabled) span,
.gallery-pagination a:hover:not(.disabled) *,
.page-pagination a:hover:not(.disabled) i,
.page-pagination a:hover:not(.disabled) span,
.page-pagination a:hover:not(.disabled) *,
.pagination-num:hover:not(.disabled) i,
.pagination-num:hover:not(.disabled) span,
.pagination-num:hover:not(.disabled) *,
.pagination-arrow:hover:not(.disabled) i,
.pagination-arrow:hover:not(.disabled) span,
.pagination-arrow:hover:not(.disabled) * {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

/* 5. Disabled Previous / Next State (Muted Warm-Neutral Tone, Still Visibly Recognizable) */
ul.blog-pagination a.disabled,
.project-pagination a.disabled,
.gallery-pagination a.disabled,
.page-pagination a.disabled,
.pagination-num.disabled,
.pagination-arrow.disabled {
    color: rgba(48, 37, 19, 0.35) !important;
    border: 1px solid rgba(200, 149, 69, 0.14) !important;
    background: rgba(252, 251, 248, 0.75) !important;
    background-color: rgba(252, 251, 248, 0.75) !important;
    opacity: 0.85 !important;
    visibility: visible !important;
    cursor: default !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

ul.blog-pagination a.disabled i,
ul.blog-pagination a.disabled span,
ul.blog-pagination a.disabled *,
.project-pagination a.disabled i,
.project-pagination a.disabled span,
.project-pagination a.disabled *,
.gallery-pagination a.disabled i,
.gallery-pagination a.disabled span,
.gallery-pagination a.disabled *,
.page-pagination a.disabled i,
.page-pagination a.disabled span,
.page-pagination a.disabled *,
.pagination-num.disabled i,
.pagination-num.disabled span,
.pagination-num.disabled *,
.pagination-arrow.disabled i,
.pagination-arrow.disabled span,
.pagination-arrow.disabled * {
    color: rgba(48, 37, 19, 0.35) !important;
    fill: rgba(48, 37, 19, 0.35) !important;
    stroke: rgba(48, 37, 19, 0.35) !important;
}

/* 6. Accessible Branded Focus Ring for Pagination */
ul.blog-pagination a:focus-visible,
.project-pagination a:focus-visible,
.gallery-pagination a:focus-visible,
.page-pagination a:focus-visible,
.pagination-num:focus-visible,
.pagination-arrow:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200, 149, 69, 0.25) !important;
}

/* 7. Carousel Side Navigation Arrows (Default & Hover State Engine) */
.services-nav-btn,
.video-carousel-nav,
.testimonial-nav-btn,
.swiper-button-prev,
.swiper-button-next {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.30) !important;
    color: #302513 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 4px 12px rgba(48, 37, 19, 0.08) !important;
}

.services-nav-btn i,
.video-carousel-nav i,
.testimonial-nav-btn i,
.swiper-button-prev i,
.swiper-button-next i,
.swiper-button-prev::after,
.swiper-button-next::after {
    color: #302513 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-nav-btn:hover,
.video-carousel-nav:hover,
.testimonial-nav-btn:hover,
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #C89545 !important;
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
}

.services-nav-btn:hover i,
.video-carousel-nav:hover i,
.testimonial-nav-btn:hover i,
.swiper-button-prev:hover i,
.swiper-button-next:hover i,
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: #FFFFFF !important;
}


/* PART 2 — BACK-TO-TOP LIGHT-THEME CONVERSION */

/* 8. Floating Back-To-Top Button (Default / Normal State) */
.wearch-scroll-top,
#scroll-top {
    background: #FCFBF8 !important;
    background-color: #FCFBF8 !important;
    border: 1px solid rgba(200, 149, 69, 0.35) !important;
    color: #C89545 !important;
    box-shadow: 0 6px 18px rgba(48, 37, 19, 0.12) !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
}

.wearch-scroll-top i,
#scroll-top i {
    color: #C89545 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color 0.3s ease !important;
}

/* 9. Floating Back-To-Top Button (Hover State) */
.wearch-scroll-top:hover,
#scroll-top:hover {
    background: #C89545 !important;
    background-color: #C89545 !important;
    border-color: #C89545 !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 22px rgba(74, 58, 42, 0.18) !important;
}

.wearch-scroll-top:hover i,
#scroll-top:hover i {
    color: #FFFFFF !important;
}

/* 10. Floating Back-To-Top Accessible Focus Ring */
.wearch-scroll-top:focus-visible,
#scroll-top:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(200, 149, 69, 0.25), 0 6px 18px rgba(48, 37, 19, 0.12) !important;
}

/* ==========================================================================
   BLOG DETAIL RICH-TEXT TYPOGRAPHY (CMS HTML PAYLOAD SUPPORT)
   ========================================================================== */
.wearch-detail-body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
}

.wearch-detail-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 20px 0;
}

.wearch-detail-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #242424;
    margin: 32px 0 16px 0;
}

.wearch-detail-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #242424;
    margin: 28px 0 14px 0;
}

.wearch-detail-body p {
    margin-bottom: 20px;
}

.wearch-detail-body ul,
.wearch-detail-body ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.wearch-detail-body li {
    margin-bottom: 10px;
}

.wearch-detail-body blockquote {
    border-left: 4px solid #C89545;
    padding: 16px 24px;
    background-color: #faf6f0;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin: 30px 0;
}

.wearch-detail-body img {
    max-width: 100%;
    height: auto;
}

/* Fix large monitor banner clipping by targeting screens 1400px and above, ensuring laptop and mobile heights remain completely untouched */
/* @media screen and (min-width: 1400px) {
    .wearch-internal-hero {
        height: 440px !important;
        background-position: center 25% !important;
    }
} */
/* Keep normal laptops at the original 328px height, and only apply the adjusted height and positioning to ultra-large desktop monitors (1600px and above) */
.wearch-internal-hero {
    height: 328px !important;
}

@media screen and (min-width: 1600px) {
    .wearch-internal-hero {
        height: 470px !important;
        background-position: center 38% !important;
    }
}

/* Mobile responsive height */
@media screen and (max-width: 991px) {
    .wearch-internal-hero {
        height: 220px !important;
        /* Adjust this value if you need it slightly taller or shorter on mobile */
    }
}

/* Pause the mentors marquee ticker on hover */

/* Final testimonial palette overrides */
.wearch-voices {
    background: #e9e4de;
}

.wearch-voices-heading {
    color: #30271d;
    letter-spacing: 0;
}

.wearch-testimonial-card {
    max-width: none;
    min-height: 430px;
    background: #fffdfa;
    border: 1px solid #e3dbd1;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(71, 54, 38, 0.08);
}

.wearch-testimonial-card:hover,
.wearch-testimonial-card:focus-visible {
    border-color: #c89545;
    box-shadow: 0 16px 30px rgba(71, 54, 38, 0.14);
}

.testimonial-card-media {
    height: 184px;
    padding: 0;
    background: #e2dbd3;
}

.testimonial-card-media img {
    border-radius: 0;
}

.testimonial-card-body {
    padding: 17px 18px 20px;
}

.testimonial-text-preview,
.testimonial-card-quote {
    color: #5c5147;
    font-family: var(--default-font, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-read-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: #b17c2e;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.testimonial-client-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top-color: #eee7df;
}

.testimonial-client-name {
    color: #2e261e;
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: 16px;
}

.testimonial-nav-btn {
    background: #fffdfa;
    border-color: #e0d1bf;
    color: #b17c2e;
    box-shadow: 0 5px 15px rgba(71, 54, 38, 0.1);
}