/* ===================================
   DESIGN LANGUAGE SECTION
   =================================== */

.design-language-section {
    padding: 80px 0;
    background-color: #0f1419;
    transition: background-color 0.5s ease;
    /* light mode override */
    background-color: var(--light-bg);
}

.design-quote-wrapper {
    position: relative;
    padding-left: 40px;
}

.design-quote-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    /* light mode override */
    background-color: rgba(0, 0, 0, 0.15);
}

.design-quote {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #f0f0f0;
    font-weight: 400;
    /* light mode override */
    color: #1a1a1a;
}

.design-text-content {
    padding-left: 60px;
}

.design-heading {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #d0252a;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-top: 20px;
}

.design-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #d0252a;
}

.design-paragraph {
    font-size: 1rem;
    line-height: 1.9;
    color: #a0a0a0;
    /* light mode override */
    color: #555555;
}


/* ===================================
   ARCHITECTURAL SERVICES SECTION
   =================================== */
.architectural-services-section {
    padding: 80px 0;
    background-color: #fff;
    color: #1a1a1a;
}

.elite-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;

}

.elite-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    /* light mode override */
    color: #1a1a1a;
}

.elite-desc {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    /* light mode override */
    color: #555555;
}

.elite-service-card {
    background-color: #1f2122;
    padding: 40px 35px;
    border-radius: 2px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* light mode override */
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.elite-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.elite-icon-box {
    width: 45px;
    height: 45px;
    border: 1px solid #e40f156b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.elite-icon-box i {
    color: #d0252a;
    font-size: 1.2rem;
}

.elite-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: normal;
    /* light mode override */
    color: #1a1a1a;
}

.elite-card-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    flex-grow: 1;
    /* light mode override */
    color: #666666;
}

.elite-learn-more {
    color: #d0252a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    margin-top: auto;
}

.elite-learn-more i {
    margin-left: 8px;
    font-size: 0.7rem;
}

.elite-learn-more:hover {
    color: #8b111a;
}

/* Light mode support */
/* ===================================
   ROADMAP SECTION
   =================================== */
.roadmap-section {
    padding: 80px 0;
    background-color: #fff;
    color: #1a1a1a;
}

.roadmap-sticky-content {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    /* Adjust for fixed navbar */
    height: max-content;
    align-self: flex-start;
}

.roadmap-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.roadmap-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
    /* light mode override */
    color: #1a1a1a;
}

.roadmap-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    /* light mode override */
    color: #555555;
}

.roadmap-stats-box {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 4px;
    font-size: 0.85rem;
    /* light mode override */
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    color: #d0252a;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.stats-list p {
    margin-bottom: 10px;
    /* light mode override */
    color: #444444;
}

.stats-list span {
    margin-right: 10px;
    /* light mode override */
    color: #888888;
}

.stats-progress {
    height: 4px;
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
    /* light mode override */
    background-color: #e0e0e0;
}

.stats-progress .progress-bar {
    height: 100%;
    background-color: #d0252a;
    transition: width 0.4s ease;
}

.roadmap-phases {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phase-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    /* light mode override */
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.phase-card:hover {
    border-color: #e40f156b;
    transform: translateX(10px);
    /* light mode override */
    border-color: #e40f156b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.phase-card.active {
    border-color: #e40f156b;
    /* light mode override */
    border-color: #e40f156b;
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.phase-number {
    color: #d0252a;
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.phase-icon {
    font-size: 1.2rem;
    transition: color 0.3s ease;
    color: #999999;
}

.phase-card:hover .phase-icon {

    color: #999999;
}

.phase-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    /* light mode override */
    color: #1a1a1a;
}

.phase-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    /* light mode override */
    color: #666666;
}


/* ===================================
   OWL CAROUSEL V2.3.4
   =================================== */
.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.testi-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.testi-quote-icon {
    font-size: 40px;
    color: #d0252a;
    margin-bottom: 30px;
    opacity: 0.8;
}

.testi-carousel {
    margin-top: 20px;
}

.testi-item {
    text-align: center;
    padding: 0 20px;
}

.testi-text {
    font-size: 1.8rem;
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
    color: #e0e0e0;
    /* light mode override */
    color: #333;
}

.testi-author {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d0252a;
    text-transform: uppercase;
}

/* Testimonial slider dots custom styling */
.testi-carousel.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    background: #444;
    display: block;
    transition: opacity .2s ease;
    border-radius: 50%;
}

.testi-carousel.owl-theme .owl-dots .owl-dot.active span,
.testi-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #d0252a;
}

/* Light Mode Overrides for testimonials */
body.light-mode .testimonials-section {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

body.light-mode .testi-text {
    color: #333;
}

body.light-mode .testi-carousel.owl-theme .owl-dots .owl-dot span {
    background: #ccc;
}

body.light-mode .testi-carousel.owl-theme .owl-dots .owl-dot.active span,
body.light-mode .testi-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #d0252a;
}

/* ===================================
   BEFORE/AFTER SLIDER SECTION
   =================================== */
.ba-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

body.light-mode .ba-section {
    background-color: #ffffff;
}

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

.ba-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ba-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

body.light-mode .ba-title {
    color: #1a1a1a;
}

.ba-slider-container {
    --position: 50%;
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.ba-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ba-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-wrapper-after {
    z-index: 1;
}

.ba-wrapper-before {
    z-index: 2;
    clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ba-label-after {
    right: 20px;
}

.ba-label-before {
    left: 20px;
}

.ba-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 3;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.25);
    border: none;
}

.slider-button i {
    font-size: 14px;
    color: #555555;
    margin: 0 4px;
}





/* ===================================
   HARMONY SECTION
   =================================== */

.harmony-section {
    padding: 80px 0;
    transition: background-color 0.5s ease;
    background-color: #f8f9fa;
    position: relative;
}

.harmony-section .shape1 {
    position: absolute;
    left: 0;
    bottom: 00px;
    opacity: 0.7;
    z-index: 0;
}

.harmony-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 25px;
}

.harmony-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.harmony-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.harmony-image-subtitle {
    color: #e9e9e9;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.harmony-image-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 400;
}

.harmony-image-count {
    color: #e9e9e9;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.harmony-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 30px;
    /* light mode override */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.harmony-tab {
    color: #888888;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 15px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.harmony-tab:hover {
    color: #e0e0e0;
    /* light mode override */
    color: #1a1a1a;
}

.harmony-tab.active {
    color: #d0252a;
}

.harmony-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0252a;
}

.harmony-content {
    padding-left: 20px;
}

.harmony-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.harmony-title {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    /* light mode override */
    color: #1a1a1a;
}

.harmony-text {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

.harmony-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.harmony-list li {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
}

.harmony-list li i {
    color: #d0252a;
    font-size: 0.7rem;
}





/* ===================================
   SIGNATURE CONCEPT PORTFOLIO
   =================================== */
.portfolio-section {
    background-color: #0d0d0d;
    padding: 80px 0 80px 0;
    color: #ffffff;
    /* light mode override */
    background-color: #fff;
    color: #1a1a1a;
}

.portfolio-container {
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.portfolio-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0;
    color: #f5f5f5;
    /* light mode override */
    color: #1a1a1a;
}

.portfolio-nav {
    display: flex;
    gap: 15px;
}

.portfolio-nav-btn {
    background: transparent;
    border: 1px solid;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* light mode override */
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

.portfolio-nav-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #e40f15;
    color: #e40f15;
}

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

/* Equal Height Owl Carousel */
.portfolio-grid.owl-carousel .owl-stage {
    display: flex;
}

.portfolio-grid.owl-carousel .owl-item {
    display: flex;
}

.portfolio-card {
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    /* light mode override */
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.card-image-wrapper {
    height: 450px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    padding-top: 50px;
    /* add some top padding for smoother gradient transition */
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.location-text {
    color: #e9e9e9;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 1px;
    color: #ffffff;
}

.card-desc {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.7;
    /* light mode override */
    color: #e9e9e9;
}





/* ===================================
   LIGHT MODE: SIGNATURE CONCEPT PORTFOLIO
   =================================== */

/* ===================================
   ELEVATION COMPARISON SECTION
   =================================== */
.elevation-comparison-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    color: #1a1a1a;
    overflow-x: hidden;
}

.elevation-section-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.elevation-section-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.elevation-section-desc {
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto;
}

.elevation-creative-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0;
}

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

.elevation-creative-card:hover .elevation-main-img {
    transform: scale(1.05);
}

.elevation-inset-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 260px;
    height: 260px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.elevation-inset-box.expanding {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 16px;
    z-index: 20;
    transform: none !important;
}

.elevation-inset-box.reset-hidden {
    transition: none !important;
    opacity: 0;
    filter: blur(15px);
    transform: scale(0.8) !important;
}

.elevation-creative-card:hover .elevation-inset-box {
    transform: translateY(-10px) scale(1.05);
}

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

.inset-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    background: #d0252a;
    padding: 5px 12px;
    font-size: 0.70rem;
    border-radius: 18px 0px 30px;
    color: #ffffff;
    box-shadow: 2px 2px 8px rgb(0 0 0 / 7%);
    z-index: 10;
    line-height: normal;
}

.elevation-toggle-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 30;
}

.elevation-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    width: 100px;
    position: relative;
}

.toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 0.75rem;
    font-weight: 800;
    color: #444;
    z-index: 2;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px 0;
    text-align: center;
    line-height: normal;
}

.toggle-btn:focus {
    outline: none;
}

.toggle-btn.active {
    color: #ffffff;
}

.toggle-indicator {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background-color: #d0252a;
    border-radius: 40px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 8px rgba(208, 37, 42, 0.4);
}




/* Light mode support */
/* Responsive adjustments */


/* ===================================
   VISUALIZATION SECTION
   =================================== */
.visualization-section {
    background-color: #1a1c1d;
    padding: 80px 0;
    color: #ffffff;
    /* light mode override */
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.vis-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.vis-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #1a1a1a;
}

.vis-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555555;
}

.vis-link {
    color: #d0252a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    margin-top: 15px;
}

.vis-link i {
    margin-left: 8px;
    font-size: 0.7rem;
}

.vis-link:hover {
    color: #8b111a;
}

/* Media Frame */
.vis-media-container {
    background-color: #111111;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    /* light mode override */
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.vis-media-frame {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    height: 400px;
}

.vis-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.vis-overlay-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    color: #d0252a;
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 2;
}

.vis-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #d0252a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
    padding-left: 5px;
    /* Visual center for play icon */
}

.vis-play-btn::before,
.vis-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(208, 37, 42, 0.55);
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    pointer-events: none;
    animation: vis-play-ripple 2.4s ease-out infinite;
}

.vis-play-btn::after {
    animation-delay: 1.2s;
}

@keyframes vis-play-ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.55;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.1);
        opacity: 0;
    }
}

.vis-play-btn:hover {
    background-color: #8b111a;
    transform: translate(-50%, -50%) scale(1.12);
}

.vis-play-btn:hover::before,
.vis-play-btn:hover::after {
    animation-play-state: paused;
}

.vis-video-embed {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.vis-video-embed.active {
    opacity: 1;
    visibility: visible;
}

.vis-video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.vis-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: background-color 0.3s ease;
}

.vis-close-btn:hover {
    background-color: #d0252a;
}

.vis-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    z-index: 2;
    /* light mode override */
    background-color: rgba(248, 249, 250, 0.95);
    color: #555555;
}

.status-indicator {
    display: flex;
    align-items: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #d0252a;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px #d0252ab8;
}

/* Light mode support */
/* ===================================
   ADAPTIVE ENGINEERING SECTION
   =================================== */
.adaptive-engineering-section {
    padding: 80px 0;
    background-color: #fff;
    color: #1a1a1a;
}

/* Diagram Container */
.diagram-container {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 4px;
    background-color: #151515;
    /* light mode override */
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.diagram-header {
    color: #d0252a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.diagram-body {
    background-color: #111111;
    border-radius: 2px;
    padding: 20px;
    margin-bottom: 20px;
    /* light mode override */
    background-color: #f0f2f5;
}

.diagram-visual {
    height: 250px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

/* Abstract Lines representing the diagram */
.diagram-line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    /* light mode override */
    background-color: rgba(0, 0, 0, 0.1);
}

.diagram-line.line-horizontal {
    height: 1px;
    width: 60%;
    top: 35%;
    left: 20%;
    transform: rotate(-5deg);
}

.diagram-line.line-horizontal-2 {
    height: 1px;
    width: 50%;
    top: 40%;
    left: 25%;
    transform: rotate(-5deg);
}

.diagram-line.dashed {
    width: 3px;
    background-color: transparent;
    border-left: 3px dashed rgba(255, 255, 255, 0.15);
    /* light mode override */
    border-left-color: rgba(0, 0, 0, 0.2);
}

.diagram-line.line-vertical {
    height: 50%;
    top: 40%;
    left: 35%;
}

.diagram-line.line-vertical-2 {
    height: 57%;
    top: 33%;
    left: 65%;
}

/* Hotspots */
@keyframes hotspotBlink {
    0% {
        box-shadow: 0 0 0 0 rgba(174, 30, 40, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(174, 30, 40, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(174, 30, 40, 0);
    }
}

.hotspot {
    width: 26px;
    height: 26px;
    background-color: #000000;
    border-radius: 50%;
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    transform: translate(-50%, -50%);
    animation: hotspotBlink 2s infinite;
}

.hotspot:hover,
.hotspot.active {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #d0252a;
    animation: none;
    box-shadow: 0 0 15px #d0252a8c;
}

.hotspot-1 {
    top: 36%;
    left: 30%;
}

.hotspot-2 {
    top: 50%;
    left: 65%;
}

.hotspot-3 {
    top: 75%;
    left: 50%;
}

.diagram-status {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    font-size: 0.85rem;
    border-radius: 2px;
    /* light mode override */
    background-color: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
    color: #555555;
}

.diagram-desc {
    font-size: 0.90rem;
    line-height: 1.6;
    margin: 0;
    /* light mode override */
    color: #666666;
}

/* Right Content */
.eng-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.eng-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.2;
    /* light mode override */
    color: #1a1a1a;
}

.eng-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid;
    /* light mode override */
    color: #555555;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.eng-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.eng-feature-item {
    display: flex;
    align-items: flex-start;
}

.eng-icon-box {
    width: 35px;
    height: 35px;
    border: 1px solid #e40f156b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0252a;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.eng-text-box h4 {
    font-size: 0.90rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.eng-text-box p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: #666666;
}

/* Light mode support */
/* ===================================
   DELIVERABLES SECTION
   =================================== */
.deliverables-section {
    padding: 80px 0px 80px 0px;
    background-color: #fff;
    color: #1a1a1a;
}

.deliverables-header {
    margin-bottom: 60px;
}

.del-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.del-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #1a1a1a;
}

.del-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto;
    color: #555555;
}

/* Cards */
.del-card {
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.05);
}

.del-card:hover {
    border-color: #e40f156b;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(184, 144, 91, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.del-badge {
    color: #d0252a;
    font-size: 0.80rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.del-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #1a1a1a;
}

.del-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #666666;
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.del-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.del-list li {
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    color: #555555;
}

.del-list li i {
    color: #d0252a;
    font-size: 0.7rem;
    margin-right: 10px;
    margin-top: 4px;
}

/* Light mode support */
/* ===================================
   REGULATORY SECTION
   =================================== */
.regulatory-section {
    background-color: #1a1c1d;
    padding: 80px 0;
    color: #ffffff;
    /* light mode override */
    background-color: #ffffff;
    color: #1a1a1a;
}

.regulatory-box {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
    /* light mode override */
    border-color: rgba(0, 0, 0, 0.1);
}

.reg-content {
    padding-right: 20px;
}

.reg-subtitle {
    color: #d0252a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.reg-title {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

.reg-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555555;
}

.reg-desc-small {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #777777;
}

.reg-status-card {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-color: rgba(0, 0, 0, 0.1);
}

.reg-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* light mode override */
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.reg-status-header span:first-child {
    color: #d0252a;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.status-compliant {
    color: #20c997;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.reg-status-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reg-status-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.reg-status-list li .label {
    color: #888888;
    /* light mode override */
    color: #555555;
}

.reg-status-list li .value {
    color: #ffffff;
    font-weight: bold;
    /* light mode override */
    color: #1a1a1a;
}

.reg-status-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    margin-top: 10px;
    text-align: center;
    color: #d0252a;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-top-color: rgba(0, 0, 0, 0.1);
}

/* Light mode support */
/* ===================================
   VISIONARIES SECTION
   =================================== */
.visionaries-section {
    background-color: #1a1c1d;
    padding: 100px 0;
    color: #ffffff;
    /* light mode override */
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.visionaries-image-wrapper {
    position: relative;
    z-index: 1;
    padding-right: 15px;
    padding-bottom: 15px;
}

.vis-img-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #d0252a;
    z-index: -1;
}

.vis-main-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.vis-img-overlay {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 15px;
    padding: 40px 30px 20px;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0) 100%);
}

.vis-img-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.vis-img-subtitle {
    font-size: 0.65rem;
    color: #d0252a;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.vis-content-subtitle {
    color: #d0252a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vis-content-title {
    font-size: 2.6rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.2;
    /* light mode override */
    color: #1a1a1a;
}

.vis-text-content {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.8;
    /* light mode override */
    color: #555555;
}

.vis-text-content p {
    margin-bottom: 20px;
}

.vis-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
    /* light mode override */
    background-color: rgba(0, 0, 0, 0.1);
}

.vis-accolades-subtitle {
    color: #d0252a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vis-accolades-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vis-accolades-list li {
    color: #bbbbbb;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    /* light mode override */
    color: #444444;
}

.vis-accolades-list li i {
    color: #d0252a;
    margin-right: 12px;
    font-size: 1rem;
}

/* Light mode support */
/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #1a1a1a;
}

.testi-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.testi-quote-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    /* light mode override */
    color: rgba(0, 0, 0, 0.1);
}

.testi-text {
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 35px;
    /* light mode override */
    color: #1a1a1a;
}

.testi-author {
    color: #d0252a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.testi-carousel.owl-carousel .owl-dots {
    margin-top: 40px;
}

.testi-carousel.owl-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
    /* light mode override */
    background: rgba(0, 0, 0, 0.2);
}

.testi-carousel.owl-carousel .owl-dot.active span,
.testi-carousel.owl-carousel .owl-dot:hover span {
    background: #d0252a;
}

/* Light mode support */
/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 80px 0px 80px 0;
    background-color: #fff;
    color: #1a1a1a;
}

.faq-subtitle {
    color: #d0252a;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #1a1a1a;
}

.faq-accordion .faq-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    margin-bottom: 0;
    /* light mode override */
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-accordion .faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* light mode override */
    border-top-color: rgba(0, 0, 0, 0.1);
}

.faq-accordion .faq-btn {
    background-color: transparent;
    font-size: 1.4rem;
    padding: 25px 0;
    box-shadow: none;
    font-weight: 400;
    position: relative;
    border: none;
    color: #1a1a1a;
}

.faq-accordion .faq-btn:focus {
    box-shadow: none;
    outline: none;
}

.faq-accordion .faq-btn:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: #d0252a;
}

.faq-accordion .faq-btn::after {
    display: none;
}

.faq-accordion .faq-btn::before {
    content: '\002B';
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    color: #999999;
    transition: all 0.3s ease;
}

.faq-accordion .faq-btn:not(.collapsed)::before {
    content: '\00D7';
    color: #d0252a;
    transform: rotate(90deg);
}

.faq-accordion .faq-body {
    padding: 0 40px 25px 0;
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.8;
    /* light mode override */
    color: #555555;
}

/* Light mode support */
/* ===================================
   CONCIERGE SECTION
   =================================== */
.concierge-section {
    padding: 80px 0px 80px 0px;
    color: #ffffff;
    background-color: #f8f9fa;
}

.concierge-box {
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 35px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    opacity: 0;
    animation: fadeInUpHero 0.8s ease forwards;
}

.concierge-subtitle {
    color: #d0252a;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.concierge-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.concierge-desc {
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.concierge-label {
    color: #444444;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.concierge-input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    padding: 8px 0;
    border-radius: 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.concierge-input:focus {
    background-color: transparent;
    border-bottom-color: #d0252a;
    color: #1a1a1a;
    box-shadow: none;
    outline: none;
}

.concierge-input::placeholder {
    color: #aaaaaa;
    font-weight: 300;
}

select.concierge-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-color: transparent;
    padding-right: 25px;
}

.concierge-select-icon {
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #d0252a;
    font-size: 0.85rem;
}

.concierge-submit-btn {
    background-color: #d0252a;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(208, 37, 42, 0.25);
    display: block;
    max-width: fit-content;
    margin: auto;
}

.concierge-submit-btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Light mode support */
/* ===================================
   RESPONSIVE QUERIES FOR NEW SECTIONS
   =================================== */




/* ==========================================================================
   Hero Section: services_images
   ========================================================================== */
.services_images {
    position: relative;
    width: 100%;
    min-height: auto;
    background-image: url(../../assets/images/banners/hero-b1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 50px;
}

.services_images .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 46%) 50%, rgb(15 15 15 / 0%) 100%);
    z-index: 1;
}

.services_images .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(80vh - 100px);
}

.services_images .hero-text-area {
    margin-top: auto;
    margin-bottom: auto;
    max-width: 800px;
    padding: 40px 0;
}

.services_images .hero-kicker {
    font-size: 1rem;
    letter-spacing: 3px;
    color: #222222;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
    opacity: 0;
    animation: fadeInUpHero 0.8s ease forwards;
}

.services_images .hero-title {
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUpHero 0.8s ease 0.2s forwards;
}

.services_images .sculpting-light {
    color: #000;
}

.services_images .ampersand {
    font-style: italic;
    color: #000;
    opacity: 0.9;
}

.services_images .horizon {
    font-style: italic;
    color: #d0252a;
    text-shadow: 0 0 25px rgba(208, 37, 42, 0.3);
}

.services_images .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222222;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 90%;
    opacity: 0;
    animation: fadeInUpHero 0.8s ease 0.4s forwards;
}

.services_images .hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeInUpHero 0.8s ease 0.6s forwards;
}

.services_images .hero-btn-primary {
    background-color: #d0252a;
    color: #fff;
    border: none;
    padding: 16px 35px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
    box-shadow: 0 8px 15px rgba(208, 37, 42, 0.25);
}

.services_images .hero-btn-primary:hover {
    background-color: #b51c20;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(208, 37, 42, 0.4);
}

.services_images .hero-btn-secondary {
    background-color: rgb(0 0 0 / 5%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #000;
    border: 1px solid rgb(0 0 0 / 20%);
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services_images .hero-btn-secondary:hover {
    background-color: #e0e0e0;
    color: #181818;
    transform: translateY(-3px);
    border-color: rgb(0 0 0 / 40%);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.services_images .hero-footer-links {
    display: flex;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 35px;
    padding-bottom: 40px;
    opacity: 0;
    animation: fadeInUpHero 0.8s ease 0.8s forwards;
}

.services_images .footer-link-item {
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #999999;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.services_images .footer-link-item:hover {
    color: #d0252a;
    transform: translateX(5px);
}

.services_images .footer-link-item .number {
    color: #666666;
    transition: color 0.3s ease;
}

.services_images .footer-link-item:hover .number {
    color: #d0252a;
}

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* ===================================
   RESPONSIVE CSS (MEDIA QUERIES)
   =================================== */

@media (max-width: 991px) {
    .design-text-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .design-quote {
        font-size: 2.2rem;
        /* light mode override */
        color: #1a1a1a;
    }
}

@media (max-width: 768px) {
    .vis-subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .elite-subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .elite-card-title {
        font-size: 1.2rem;
    }

    .design-quote {
        font-size: 1.8rem;
        /* light mode override */
        color: #1a1a1a;
    }

    .elevation-inset-box {
        display: none;
    }

    .design-quote-wrapper {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .harmony-content {
        padding-left: 0;
        margin-top: 0px;
    }
}

@media (max-width: 576px) {
    .harmony-tabs {
        gap: 15px;
        flex-wrap: wrap;
        /* light mode override */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .harmony-image-wrapper {
        height: 300px;
    }

    .harmony-title {
        font-size: 1.5rem;
        /* light mode override */
        color: #1a1a1a;
        margin-bottom: 10px;
    }
}

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

@media (max-width: 768px) {
    .elevation-comparison-section {
        padding: 40px 0;
    }

    .elevation-section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .elevation-section-title {
        font-size: 1.5rem;
    }

    .portfolio-section {
        padding: 40px 0;
    }

    .portfolio-container {
        position: relative;
    }

    .portfolio-nav {
        position: absolute;
        top: 60%;
        left: 0;
        width: 100%;
        justify-content: space-between;
        padding: 0 10px;
        z-index: 20;
        pointer-events: none;
        transform: translateY(-50%);
    }

    .portfolio-nav-btn {
        pointer-events: auto;
        background: #ffffff;
        border-color: transparent;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        width: 40px;
        height: 40px;
    }

    .portfolio-subtitle {
        font-size: 0.75rem;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }

    .harmony-title {
        font-size: 1.5rem;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    .harmony-subtitle {
        margin-bottom: 10px;
        font-size: 0.75rem;
    }

    .design-heading {
        font-size: 0.75rem;
        margin-bottom: 10px;

    }

    .design-language-section {
        padding: 40px 0;
    }

    .harmony-image-subtitle {
        font-size: 0.75rem;
    }

    .harmony-image-title {
        font-size: 1.5rem;
    }

    .harmony-tab {
        font-size: 0.75rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .portfolio-container {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .elevation-image-box {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .roadmap-sticky-content {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .phase-card:hover {
        transform: translateY(-5px);
        /* light mode override */
        border-color: #e40f156b;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 991px) {

    /* Roadmap Section */
    .roadmap-sticky-content {
        position: static;
        margin-bottom: 40px;
    }

    .elite-title {
        font-size: 2.2rem;
        /* light mode override */
        color: #1a1a1a;
    }

    /* Visualization Section */
    .vis-title {
        font-size: 2rem;
        /* light mode override */
        color: #1a1a1a;
    }

    .vis-overlay-bottom {
        padding: 30px;
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -20px;
        margin-right: 15px;
        margin-left: 15px;
        /* light mode override */
        background-color: rgba(248, 249, 250, 0.95);
        color: #555555;
    }

    /* Adaptive Engineering Section */
    .eng-title {
        font-size: 2rem;
        margin-top: 30px;
        /* light mode override */
        color: #1a1a1a;
    }

    .diagram-visual {
        height: 200px;
    }

    /* Deliverables Section */
    .del-title {
        font-size: 2.2rem;
        /* light mode override */
        color: #1a1a1a;
    }

    /* Regulatory Section */
    .reg-title {
        font-size: 2rem;
        /* light mode override */
        color: #1a1a1a;
    }

    .regulatory-box {
        padding: 40px;
        /* light mode override */
        border-color: rgba(0, 0, 0, 0.1);
    }

    .concierge-box {
        padding: 40px 30px;
        /* light mode override */
        background-color: #f8f9fa;
        border-color: rgba(0, 0, 0, 0.1);
    }

    .reg-content {
        padding-right: 0;
    }

    /* Visionaries Section */
    .vis-content-title {
        font-size: 2.2rem;
        /* light mode override */
        color: #1a1a1a;
    }

    .visionaries-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .concierge-subtitle {
        font-size: 0.75rem;
    }

    .concierge-submit-btn {
        font-size: 0.75rem;
        letter-spacing: 1px;
        padding: 14px 15px;
        white-space: nowrap;
    }

    .faq-accordion .faq-btn {
        font-size: 1.1rem;
        padding: 15px 0;
        line-height: normal;
    }

    .faq-subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .testimonials-section {
        padding: 0px;
    }

    .deliverables-header {
        margin-bottom: 30px;
    }

    .testi-subtitle {
        margin-bottom: 10px;
        font-size: 0.75rem;
    }

    .del-subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .vis-link {
        font-size: 0.75rem;
    }

    .architectural-services-section {
        padding: 40px 0;
        /* light mode override */
        background-color: #f8f9fa;
        color: #1a1a1a;
    }

    .harmony-section {
        padding: 0;
        padding-bottom: 30px;
    }

    .services_images {
        padding-top: 10px !important;
    }

    .services_images .hero-btn-primary {
        padding: 10px 30px !important;
        font-size: 12px !important;
        max-width: max-content;
        margin: auto;
    }

    .services_images .hero-btn-secondary {
        padding: 10px 13px !important;
        font-size: 12px !important;
        max-width: max-content;
        margin: auto;
    }

    /* Adjust overall padding */
    .roadmap-section,
    .visualization-section,
    .adaptive-engineering-section,
    .deliverables-section,
    .regulatory-section,
    .visionaries-section,
    .testimonials-section,
    .faq-section,
    .concierge-section {
        padding: 40px 0;
        /* light mode override */
        background-color: #ffffff;
    }

    /* Typography scaling */
    .elite-title,
    .del-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        /* light mode override */
        color: #1a1a1a;
    }

    .vis-title,
    .eng-title,
    .reg-title,
    .vis-content-title,
    .faq-title,
    .concierge-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        /* light mode override */
        color: #1a1a1a;
    }

    .testi-text {
        font-size: 1.2rem;
        padding: 10px;
        /* light mode override */
        color: #1a1a1a;
    }

    .elite-desc,
    .vis-desc,
    .eng-desc,
    .del-desc,
    .reg-desc,
    .concierge-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
        padding-bottom: 10px;
        /* light mode override */
        color: #555555;
    }

    .concierge-box {
        padding: 30px 20px;
        /* light mode override */
        background-color: #f8f9fa;
        border-color: rgba(0, 0, 0, 0.1);
    }

    /* Card padding */
    .del-card {
        padding: 15px;
        /* light mode override */
        background-color: #f8f9fa;
        border-color: rgba(0, 0, 0, 0.05);
    }

    .del-card-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .del-card-desc {
        font-size: 0.8rem;
        margin-bottom: 15px;
        padding-bottom: 15px;
        /* light mode override */
        color: #666666;
        border-bottom-color: rgba(0, 0, 0, 0.05);
    }

    .del-list li {
        font-size: 0.75rem;
        margin-bottom: 8px;
        /* light mode override */
        color: #555555;
    }

    .phase-card {
        padding: 15px;
        margin-bottom: 15px;
        /* light mode override */
        background-color: #ffffff;
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    }

    .phase-number {
        font-size: 0.9rem;
        margin-right: 10px;
    }

    .phase-title {
        font-size: 0.95rem;
        /* light mode override */
        color: #1a1a1a;
    }

    .stats-box {
        margin-bottom: 20px;
        padding: 15px;
    }

    /* Diagram height adjustment */
    .diagram-visual {
        height: 150px;
    }

    .diagram-container {
        padding: 15px;
        /* light mode override */
        background-color: #ffffff;
        border-color: rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    .diagram-body {
        padding: 10px;
        /* light mode override */
        background-color: #f0f2f5;
    }

    .eng-features-list {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .services_images .hero-title {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .services_images .hero-title {
        font-size: 30px;
    }

    .services_images .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .services_images .hero-btn-primary,
    .services_images .hero-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .services_images .hero-footer-links {
        flex-direction: column;
        gap: 20px;
    }
}