@font-face {
    font-family: 'Montserrat';
    src: url('../font/montserrat/Montserrat-Light.woff2') format('woff2'),
        url('../font/montserrat/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/montserrat/Montserrat-Regular.woff2') format('woff2'),
        url('../font/montserrat/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/montserrat/Montserrat-Medium.woff2') format('woff2'),
        url('../font/montserrat/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/montserrat/Montserrat-SemiBold.woff2') format('woff2'),
        url('../font/montserrat/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/montserrat/Montserrat-Bold.woff2') format('woff2'),
        url('../font/montserrat/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #FFF;
    --primary-second-color: #e6b726;
    --primary-hover: #ffd040;
    --dark-green: #011d11;
    --darker-green: #011d11;
    --light-green: #026139;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    /* height: 100%; */
    font-family: var(--font-body);
    background-color: var(--darker-green);
    overflow-x: hidden;
    scroll-behavior: smooth;
}


.grecaptcha-badge {
    display: none !important;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-section {
    height: 600px;
    margin-bottom: -10px;
    width: 100% !important;
}

.main-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('/assets/img/slider.webp');
    background-size: cover;
    background-position: center;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(0deg, rgba(1, 29, 17, 0) 50%, var(--dark-green) 100%),
        linear-gradient(187.88deg, var(--darker-green) -13.1%, rgba(1, 29, 17, 0) -10.51%);
    z-index: 0;
}

/* background:
        linear-gradient(180deg, rgba(1, 29, 17, 0) 50%, var(--dark-green) 100%),
        linear-gradient(7.88deg, rgba(1, 29, 17, 0) 12.51%, var(--darker-green) 113.1%); */

.header {
    position: relative;
    z-index: 10;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 310px;
}

#heroCarousel .carousel-item {
    overflow: hidden;
}

.pixel-layer {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    grid-template-rows: repeat(18, 1fr);
    z-index: 50;
    pointer-events: none;
}

.pixel {
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    will-change: transform, opacity;
}

.pixel.right-flow {
    animation: flowRight 1.2s cubic-bezier(.22, .61, .36, 1) forwards;
}

.pixel.left-flow {
    animation: flowLeft 1.2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes flowRight {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateX(160px) scale(.75);
    }
}

@keyframes flowLeft {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateX(-160px) scale(.75);
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 350px;
}

.header-logo {
    width: 100%;
    max-width: 310px;
    height: auto;
    max-height: 225px;
    object-fit: contain;
}

.logo-text h1 {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--primary-color);
    font-size: 28px;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.logo-text p {
    font-family: var(--font-body);
    font-weight: 400;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    margin: 0;
}

.top-phone a {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 22px;
    letter-spacing: 1px;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a.active {
    color: var(--primary-second-color);
}

.nav a.active {
    color: var(--primary-second-color);
}

.social-sidebar {
    position: fixed;
    left: 48px;
    top: 210px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    gap: 20px;
}

.social-text {
    font-family: var(--font-body);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(0deg);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 18px;
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.1);
}

.info-sidebar {
    position: fixed;
    right: 0;
    top: 25%;
    transform: translateY(-50%);
    z-index: 10;
}

.info-btn {
    display: flex;
    align-items: center;
    background-color: var(--primary-second-color);
    color: var(--darker-green);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 10px;
    /* font-size: 16px;
    padding: 15px 15px; */
    border-radius: 0 10px 10px 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

.info-btn:hover {
    background-color: var(--primary-hover);
    color: var(--darker-green);

}

.info-btn i {
    transform: rotate(90deg);
    font-size: 20px;
    display: none;
}

.info-sidebar .btn-phone,
.info-sidebar .btn-whatsapp {
    display: none !important;
}

/* carousel-inner changed to height 100% since hero-slider dictates height now */
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    margin-bottom: 120px;
}

.hero-slider {
    height: 85vh !important;
    min-height: 85vh !important;
    overflow: hidden;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    padding-top: 220px;
}

/* Scroll Down Indicator Style */
.scroll-down-indicator {
    position: absolute;
    left: 48px;
    bottom: 30px;
    z-index: 1035;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-down-indicator:hover {
    color: var(--primary-second-color);
    transform: translateY(2px);
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-down-indicator .scroll-text {
    text-transform: uppercase;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
}

.scroll-down-indicator:hover .scroll-text {
    border-bottom-color: var(--primary-second-color);
}



.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: clamp(3rem, 4vw, 5.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.bottom-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.number-block {
    position: relative;
}

.big-number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);

    font-size: clamp(6rem, 12vw, 12rem);
    line-height: 0.8;
    letter-spacing: -5px;
}

.number-text {
    position: relative;
}

.number-text::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.number-text h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.read-more {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: #FBD784;
}

.section-01 {
    padding: clamp(30px, 8vw, 100px) 0;
}

.section-02 {
    padding: clamp(30px, 8vw, 100px) 0;
}

/* .section-img {
    width: 100%;
    max-width: 566px;
    height: auto;
    aspect-ratio: 532 / 620;
    display: block;
    margin: 0 auto;

    transition: filter .5s ease, transform .5s ease;
}

.section-img:hover {
    filter: blur(0px) grayscale(0%);
    transform: scale(1.03);
} */
.section-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    background: var(--darker-green);
    width: 100%;
    /* box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35) !important; */
}

.section-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;

    line-height: 0;
    font-size: 0;

    transform: translateZ(0);
    will-change: transform, opacity;
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* .section-img-wrap:hover .section-img {
    transform: scale(1.05);
} */

.section-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 29, 17, 0.25);
    pointer-events: none;
    z-index: 2;
    transition: background 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gmnoprint{
    display: none !important;
}

.gm-style-cc{
    display: none !important;
}

.section-img-wrap:hover::after {
    background: rgba(1, 29, 17, 0.1);
}

.location-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns:1fr;
    gap: 16px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 7px;
    /* background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08); */
    border-radius: 14px;
    transition: .3s ease;
}

.location-item:hover {
    transform: translateY(-3px);
    /* border-color: #f7c948;
    background: rgba(247, 201, 72, 0.08); */
}

.location-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    /* background: rgba(247, 201, 72, 0.15);
    color: #f7c948; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.location-icon img {
    width: calc(100% - 10px);
    height: auto;
}

.location-text {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.offcanvas {
    background-color: var(--darker-green);
}

.gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 18px 54px rgba(0, 0, 0, 1.3) !important */
}

.subpage-wrapper {
    background-color: var(--darker-green);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.subpage-header {
    position: relative;
    width: 100%;
    padding-top: 250px;
    padding-bottom: 80px;
    background-image: url('/assets/img/projects/1.png');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    background-attachment: scroll;
    z-index: 1;
}


.subpage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 29, 17, 0.7) 0%, rgba(1, 29, 17, 0.9) 70%, var(--darker-green) 100%);
    z-index: -1;
}

.subpage-breadcrumb {
    text-align: center;
}

.subpage-breadcrumb h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.subpage-breadcrumb .breadcrumb-links {
    font-family: var(--font-body);
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.subpage-breadcrumb .breadcrumb-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.subpage-breadcrumb .breadcrumb-links a:hover {
    color: #fff;
}

.subpage-breadcrumb .breadcrumb-links span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}


.contact-section {
    padding: 60px 0;
    flex-grow: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.contact-info-item h4 {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.form-control-custom {
    background-color: rgba(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-green);
    padding: 12px 20px;
    border-radius: 0px;
    font-family: var(--font-body);
}

.form-control-custom:focus {
    background-color: rgba(255, 255, 255);
    border-color: var(--primary-color);
    color: var(--light-green);
    box-shadow: 0 0 0 0.25rem rgba(230, 183, 38, 0.25);
}

.form-control-custom::placeholder {
    color: var(--light-green);
}

.form-control-custom::-webkit-input-placeholder {
    color: var(--light-green);
}

.form-control-custom::-moz-placeholder {
    color: var(--light-green);
}

.form-control-custom:-ms-input-placeholder {
    color: var(--light-green);
}

.form-control-custom:-moz-placeholder {
    color: var(--light-green);
}

.form-label-custom {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.circle-social-media {
    border-radius: 50% !important;
    color: white;
    --bs-text-opacity: 1;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: 35px;
    height: 36px;
    font-size: 20px;
    border: 1px solid #fff;
}

.circle-social-media:hover {
    background-color: #fff;
    color: var(--darker-green);
}

.btn-submit {
    background-color: var(--primary-second-color);
    color: var(--darker-green);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 183, 38, 0.3);
}

.text-page-section {
    padding: 60px 0;
    flex-grow: 1;
}

.text-content-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 16px;
}

.text-content-wrapper h2 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
}

.text-content-wrapper h2:first-child {
    margin-top: 0;
}

.text-content-wrapper h3 {
    color: #fff;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.text-content-wrapper.daire h3 {
    margin-top: 10px;
}

.text-content-wrapper.daire h2 {
    margin-bottom:0px;
}

.text-content-wrapper p {
    margin-bottom: 20px;
}

.text-content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.text-content-wrapper li {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
}

.footer-link:hover {
    color: #fff;
}

.feature-card {
    transition: transform 0.3s ease;
}

.feature-img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-weight: 400;
}

.accordion-custom .accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.accordion-custom .accordion-button {
    box-shadow: none;
    font-weight: 500;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #FFF;
    box-shadow: none;
}

.accordion-custom .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-custom .accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

.gallery-section {
    background: linear-gradient(to bottom, var(--darker-green) 0%, #026139 120px, #026139 calc(100% - 120px), var(--darker-green) 100%);
    padding: clamp(50px, 8vw, 100px) 0 !important;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.small-title {
    opacity: .6;
    font-size: 14px;
    letter-spacing: 2px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.stats {
    text-align: center;
}

.counter {
    font-size: 60px;
    font-weight: 700;
    color: #c9a24a;
}

.timeline-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-btn {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 20px 0;
    font-size: 18px;
}

.timeline-content {
    max-height: 0;
    overflow: hidden;
    opacity: .7;
    transition: .4s ease;
}

.timeline-item.active .timeline-content {
    max-height: 300px;
    padding-bottom: 20px;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .8;
    line-height: 1.8;
}

.counter {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-second-color);
    letter-spacing: -1px;
}

.start-text {
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.start-text p {
    margin: 0;
}

#historyAccordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#historyAccordion .accordion-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

#historyAccordion .accordion-item:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
}

#historyAccordion .accordion-button {
    background: transparent !important;
    color: #fff;
    font-weight: 600;
    padding: 18px 20px;
    box-shadow: none !important;
    letter-spacing: 0.5px;
}

#historyAccordion .accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#historyAccordion .accordion-button:not(.collapsed) {
    color: #fff;
}

#historyAccordion .accordion-body {
    padding: 0 20px 18px 20px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 14px;
}

#historyAccordion .accordion-button:focus {
    box-shadow: none;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: start;
    gap: 40px;
}

.vision-sep {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 auto;
}

.iti {
    width: 100%;
}

.was-validated .iti:has(:invalid)~.invalid-feedback,
.iti:has(.is-invalid)~.invalid-feedback {
    display: block !important;
}

.btn-submit:disabled,
.btn-submit[disabled] {
    background-color: var(--primary-second-color) !important;
    color: var(--darker-green) !important;
    opacity: 0.65 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}


.iti__country-list {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal;
}

.iti__selected-dial-code {
    color: var(--light-green);
}

.iti--show-selected-dial-code .iti__selected-dial-code {
    margin-right: 12px;
}

.iti__search-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #eee !important;
    border-radius: 0 !important;
}

.project-checkbox-group .form-check-input {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    box-shadow: none !important;
}

.project-checkbox-group .form-check-input:checked {
    background-color: var(--light-green);
    border-color: #fff;
    box-shadow: none !important;
}

.form-check-input:focus {
    box-shadow: none;
    border: 1px solid #fff !important;
}

.project-checkbox-group .form-check-label {
    cursor: pointer;
    font-size: 14px;
}

.video-intro-section {
    background: var(--darker-green);
}

.video-wrapper video {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-slider-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 70px;
}

.feature-card {
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-text {
    color: #fff;
    font-size: 14px;
}

/* Feature Slider Specific Card Styles */
.feature-slider-wrapper .feature-card {
    position: relative;
}

.feature-slider-wrapper .feature-card .feature-img {
    margin-bottom: 0 !important;
    display: block;
    width: 100%;
}

.feature-slider-wrapper .feature-card .feature-text {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    pointer-events: none;
    z-index: 5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.featureSwiper {
    overflow: hidden;
    padding: 0;
}

.feature-slider-wrapper .swiper-button-next,
.feature-slider-wrapper .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #00ff88;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    top: 50%;
    transform: translateY(-50%);
}

.feature-slider-wrapper .swiper-button-next:hover,
.feature-slider-wrapper .swiper-button-prev:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.feature-slider-wrapper .swiper-button-next::after,
.feature-slider-wrapper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.featureSwiper .swiper-button-prev {
    left: 5px;
}

.featureSwiper .swiper-button-next {
    right: 5px;
}

.features-section {
    overflow: visible;
    padding: clamp(30px, 8vw, 60px) 0;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.section-split .row {
    align-items: center;
}

.logo-wrapper {
    gap: 20px;
}

.logo-separator {
    width: 1px;
    height: 80px;
    background-color: #fff;
}

.partner-logos {
    gap: 20px;
}

.partner-logos img {
    height: 35px;
    object-fit: contain;
}

.border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-social-group {
    margin-top: 15px;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.about-card-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    font-size: 16px;
}

.about-card-item-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: start;
    height: 100%;
}

.about-card-item-image {
    width: 100%;
}

.about-grid-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.about-card-item-image h5 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 0;
}

.about-card-item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-card-item-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
}

.custom-section-divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 30px 0 !important;
}

.inner-divider .custom-section-divider {
    margin-top: clamp(60px, 8vw, 100px) !important;
    margin-bottom: 30px !important;
}

.custom-section-divider::before,
.custom-section-divider::after {
    content: "";
    flex-grow: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-section-divider img {
    margin: 0 50px;
    height: 30px;
    width: auto;
    object-fit: contain;
}

.custom-input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(0px, 30px);
    background: var(--darker-green);
    border-radius: 15px;
    color: #FFF;
    font-size: 16px;
}

.main-nav .dropdonw {
    display: flex;
    flex-direction: column;

}

.main-nav .dropdown-menu a {
    padding: 10px 15px;
    font-size: 12px;
}

.main-nav .dropdown .dropdown-item:hover {
    background-color: var(--darker-green);
    color: #c9a24a;
}

.dropdown-item:focus {
    background-color: var(--darker-green);
    color: #c9a24a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: center;
}

.gallery-item {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
    height: 150px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-menu-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-end;
}

.footer-menu-wrapper>div {
    min-width: auto;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: .3px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: .3s ease;
}

.footer-link:hover {
    color: #ffc107;
    padding-left: 4px;
}

.footer-bottom {}

.footer-copy {
    font-size: 14px;
    color: #fff;
}

.footer-link-small {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.footer-link-small:hover {
    color: #ffc107;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    transition: .3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    color: #fff;
}

.map-section {
    position: relative;
}

.map-overlay-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 59, 54, 0.4);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.html-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary-second-color);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.html-marker img {
    width: 60%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 3;
}

.html-marker i {
    position: relative;
    z-index: 3;
}

/* White outer tapered stem to match the 2px circular border */
.html-marker::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid #fff;
    z-index: 1;
    transition: border-top-color 0.3s ease;
}

/* Colored inner tapered stem matching marker background */
.html-marker::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 13px solid var(--primary-second-color);
    z-index: 2;
    transition: border-top-color 0.3s ease;
}

.html-marker:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Project Pin Specific Styling & Glow Animation */
.html-marker.project-marker {
    background-color: #0d3b36 !important;
    border-color: #c9a24a !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 100;
    animation: markerPulse 2.5s infinite alternate;
}

.html-marker.project-marker::after {
    border-top-color: #c9a24a !important;
    bottom: -17px !important;
    border-left-width: 9px !important;
    border-right-width: 9px !important;
    border-top-width: 18px !important;
}

.html-marker.project-marker::before {
    border-top-color: #0d3b36 !important;
    bottom: -14px !important;
    border-left-width: 7px !important;
    border-right-width: 7px !important;
    border-top-width: 15px !important;
}

@keyframes markerPulse {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(201, 162, 74, 0.4);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(201, 162, 74, 0);
    }
}

/* Custom Zoom Controls CSS */
.custom-zoom-controls {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.custom-zoom-controls button {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: #0d3b36;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-zoom-controls button:hover {
    background-color: #c9a24a;
    border-color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(201, 162, 74, 0.4);
}

.custom-zoom-controls button:active {
    transform: scale(0.95);
}

.custom-zoom-controls button.active {
    background-color: #93ce22 !important;
    color: #0d3b36 !important;
    border-color: #93ce22 !important;
    box-shadow: 0 4px 15px rgba(147, 206, 34, 0.4) !important;
}

@media (max-width: 991.98px) {
    #magnifierToggle {
        display: none !important;
    }
}

/* Map Magnifier Selector (Lens box) */
.map-magnifier-selector {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px dashed #93ce22;
    background: rgba(147, 206, 34, 0.12);
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

/* Map Magnifier Result Panel */
.map-magnifier-result {
    position: absolute;
    top: 0;
    width: 400px;
    height: 100%;
    z-index: 1005;
    background: #1e2624;
    overflow: hidden;
    pointer-events: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    border-radius: 0;
}

.map-magnifier-result.on-right {
    right: 0;
    left: auto;
    border-left: 4px solid #93ce22;
}

.map-magnifier-result.on-left {
    left: 0;
    right: auto;
    border-right: 4px solid #93ce22;
}

#magnifierMap {
    width: 100%;
    height: 100%;
}

/* Project InfoWindow styling */
.map-project-infowindow {
    font-family: 'Outfit', sans-serif;
    min-width: 140px;
    max-width: 200px;
    box-sizing: border-box;
    padding: 0 !important;
    text-align: center;
}

.map-project-infowindow p {
    font-size: 12px;
    color: #c9a24a;
    font-weight: 600;
    margin: 4px 0 0 0;
}

/* Custom Category Pin InfoWindow styling */
.map-custom-infowindow {
    font-family: 'Outfit', sans-serif;
    min-width: 140px;
    max-width: 200px;
    box-sizing: border-box;
    padding: 0 !important;
}

.map-custom-infowindow h6 {
    font-weight: 600;
    font-size: 14px;
    color: #0d3b36;
    margin: 0;
    line-height: 1.35;
    word-wrap: break-word;
}

/* Google Maps InfoWindow wrapper style overrides to align content and close button side-by-side without top space */
.gm-style-iw.gm-style-iw-c {
    display: grid !important;
    grid-template-columns: 1fr 24px !important;
    column-gap: 16px !important; /* Metin ve kapatma butonu arasında sabit boşluk */
    grid-template-rows: auto !important;
    align-items: start !important;
    padding: 12px 17px 10px 17px !important; /* Soldan ve sağdan padding 5px artırıldı (17px'e çıkarıldı) */
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    background-color: #ffffff !important;
    width: 260px !important; /* Sabit pencere genişliği */
    min-width: 260px !important;
    max-width: 260px !important;
}

.gm-style-iw-ch {
    grid-column: 2 !important;
    grid-row: 1 !important;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    margin: -6px 0 0 0 !important; /* Butonu yukarı almak için -6px top margin verildi */
    z-index: 1000 !important;
    float: none !important;
}

.gm-style-iw-ch button.gm-ui-hover-effect {
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: 0 !important;
    outline-offset: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.gm-style-iw button.gm-ui-hover-effect,
.gm-style-iw button.gm-ui-hover-effect:focus,
.gm-style-iw button.gm-ui-hover-effect:active,
.gm-style-iw button.gm-ui-hover-effect:focus-visible,
.gm-style-iw button.gm-ui-hover-effect *,
.gm-style-iw-ch button.gm-ui-hover-effect:focus,
.gm-style-iw-ch button.gm-ui-hover-effect:active,
.gm-style-iw-ch button.gm-ui-hover-effect:focus-visible,
.gm-style-iw-ch button.gm-ui-hover-effect * {
    outline: 0 !important;
    outline-width: 0 !important;
    outline-style: none !important;
    border: 0 !important;
    border-width: 0 !important;
    box-shadow: none !important;
}

.gm-style-iw-d {
    grid-column: 1 !important;
    grid-row: 1 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}


/* Fullscreen Map Mode styling */
.map-section.map-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    background-color: #0d3b36 !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

/* Native fullscreen state matching */
.map-section:fullscreen {
    background-color: #0d3b36 !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

.map-section.map-fullscreen .position-relative,
.map-section:fullscreen .position-relative {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    height: calc(100% - 80px) !important;
}

.map-section.map-fullscreen #ulasimMap,
.map-section:fullscreen #ulasimMap {
    height: 100% !important;
    flex: 1 1 auto !important;
    border-radius: 8px !important;
}

.map-section.map-fullscreen #detailedSelections,
.map-section:fullscreen #detailedSelections {
    margin-top: 15px !important;
    flex: 0 0 auto !important;
}

#ulasimMap {
    width: 100%;
    height: 550px;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
}

.ulasim-map{
    border-radius: 0px !important;
}

#detailedSelections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-selection {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 40px;
    background-color: #0d3b36;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    opacity: 0.6;
}

.category-selection:hover,
.category-selection.active {
    opacity: 1;
}

.category-selection .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.category-selection .icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.category-selection span {
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
}

.object-right {
    object-position: right !important;
}

.object-left {
    object-position: left !important;
}

.about-first {
    align-items: end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.end-text{
    text-align: end;
}

.uzm-about-vision{
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.metraj-kart{
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
    padding:25px;
}
.metraj-kart-item-text{
    margin-bottom:16px;
}
.metraj-kart-item-text p,small{
    color:#d6a437;
    margin:0;
}


@media (max-width: 768px) {
    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 26px;
        left: 15px;
        bottom: 15px;
    }
}

@media (max-width:991px) {

    .footer-menu-wrapper {
        justify-content: flex-start;
        gap: 35px;
    }

    .footer-menu-wrapper>div {
        width: calc(50% - 20px);
        min-width: auto;
    }

    .about-first {
        margin-bottom: 0px;
    }

    .end-text{
        text-align: start;
    }

    .uzm-about-vision{
        margin-top: 20px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

}

@media (max-width:575px) {

    .footer-menu-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .footer-menu-wrapper>div {
        width: 100%;
    }

    .footer-title {
        margin-bottom: 14px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item {
        height: 110px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-item {
        height: 120px;
    }
}

@media (max-width: 1199px) {

    .about-card-item-grid {
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }

    .about-grid-img {
        height: 220px;
    }

    .about-card-item-image h5 {
        font-size: 18px;
    }

    .about-card-item-content p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {

    .about-card-grid {
        grid-template-columns: 1fr;
        padding: 0px 20px;
    }

    .about-card-item-grid {
        grid-template-columns: 1fr;
    }

    .about-card-item-image {
        text-align: center;
    }

    .about-grid-img {
        height: auto;
        max-height: 350px;
    }

    .about-card-item-image h5 {
        margin-top: 20px;
        font-size: 22px;
    }

    .about-card-item-content {
        text-align: center;
    }

    .section-split .number-block {
        margin-top: 0;
        padding-top: 80px;
    }

    .section-split .big-number {
        left: 70px !important;
        top: 0px !important;
        font-size: 4.3rem !important;
    }

    .section-split .number-text {
        padding-left: 0;
    }

    .section-split .number-text::before {
        top: -50px;
    }

    .swap-mobile .row {
        display: flex;
        flex-direction: column;
    }

    .footer-social-group {
        justify-content: center !important;
        margin: 20px 0px;
    }

    .map-section {
        height: auto;
        margin-bottom: -10px;
        width: 100% !important;
    }

    .number-block {
        text-align: left;
        margin-top: 50px;
    }

    .big-number {
        left: 70px !important;
        top: -65px !important;
    }

    .number-text::before {
        top: -30px;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-sep {
        display: none;
    }

    .social-sidebar {
        left: 3px;
        top: 290px;
    }

    .info-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-content {
        padding-top: 180px;
    }

    .scroll-down-indicator {
        left: 20px;
        bottom: 20px;
        font-size: 10px;
        gap: 10px;
    }
    .mouse-icon {
        width: 20px;
        height: 32px;
        border-width: 1.5px;
    }
    .mouse-icon .wheel {
        width: 3px;
        height: 6px;
        top: 5px;
    }

    .bottom-image {
        max-height: 250px;
        margin-top: 30px;
    }

    .nav a {
        color: #fff;
        padding: 12.5px 12.5px;
    }

    .logo a {
        display: flex;
        justify-content: start;
        margin-right: auto;
    }

    .header-logo {
        max-width: 200px;
        margin-right: auto;
    }

    .subpage-header {
        padding-top: 200px;
        padding-bottom: 40px;
    }

    .text-content-wrapper {
        padding: 30px;
    }

    .text-content-wrapper h2 {
        margin: 0;
    }

    .swap-mobile .row {
        display: flex;
        flex-direction: column;
    }

    .swap-mobile .col-12 {
        width: 100%;
    }

    .swap-mobile .row>div:last-child {
        order: -1;
    }

    .main-wrapper {
        min-height: 80vh !important;
    }

    .slider-img-1 {
        object-position: center !important;
    }

    .slider-img-2 {
        object-position: 90% !important;
    }

    .slider-img-3 {
        object-position: 50% !important;
    }

    .slider-img-4,
    .slider-img-5,
    .slider-img-6 {
        object-position: center !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-right: 0 !important;
        padding-bottom: 60px !important;
    }

    .floating-whatsapp {
        display: none !important;
    }

    .info-sidebar {
        top: auto !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        z-index: 1045 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        background: var(--darker-green);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3) !important;
        border-radius: 15px 15px 0 0 !important;
        overflow: hidden;
    }

    .info-sidebar .info-btn {
        flex: 1 1 0 !important;
        width: auto !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 10px 5px !important;
        font-size: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        height: 60px !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        transform: none !important;
        box-shadow: none !important;
        text-decoration: none !important;
    }

    .info-sidebar .info-btn:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .info-sidebar .btn-phone,
    .info-sidebar .btn-whatsapp {
        display: flex !important;
    }

    .info-sidebar .btn-form {
        background-color: var(--primary-second-color) !important;
        color: var(--darker-green) !important;
    }

    .info-sidebar .btn-phone {
        background-color: var(--light-green) !important;
        color: #fff !important;
    }

    .info-sidebar .btn-whatsapp {
        background-color: #25D366 !important;
        color: #fff !important;
    }

    .info-sidebar .info-btn i {
        display: inline-block !important;
        transform: none !important;
        margin-right: 0 !important;
        font-size: 18px !important;
    }

    #contactFormOffcanvas.offcanvas-end {
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 85vh !important;
        max-height: 100% !important;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 15px 15px 0 0 !important;
        transform: translateY(100%);
    }

    #contactFormOffcanvas.offcanvas-end.showing,
    #contactFormOffcanvas.offcanvas-end.show:not(.hiding) {
        transform: none;
    }

    .navbar-toggler i {
        font-size: 36px;
    }

    .hero-content {
        padding-top: 600px;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .feature-slider-wrapper {
        padding: 0 40px;
    }

    .featureSwiper {
        padding: 0 10px;
        margin-right: 10px;
    }

    .feature-slider-wrapper .swiper-button-prev {
        left: 0;
    }

    .feature-slider-wrapper .swiper-button-next {
        right: 0;
    }

    .footer-logo {
        margin: auto;
    }

    .footer-social-group {
        margin-bottom: 45px;
    }

    .map-section {
        height: auto;
        margin-bottom: -10px;
        width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    .logo-text h1 {
        font-size: 22px;
    }

    .top-phone a {
        font-size: 18px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .info-btn {
        padding: 10px 7.5px;
        font-size: 18px;
    }

    .big-number {
        font-size: 4.5rem;
    }

    .number-text h3 {
        font-size: 1.5rem;
    }

    .feature-slider-wrapper .swiper-button-next,
    .feature-slider-wrapper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .feature-slider-wrapper .swiper-button-next::after,
    .feature-slider-wrapper .swiper-button-prev::after {
        font-size: 14px;
        font-weight: bold;
    }

    #map {
        height: 300px !important;
    }

    .hero-content {
        padding-top: 350px;
    }

    .about-card-item {
        padding: 20px;
        border-radius: 16px;
    }

    .about-card-item-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-card-item-image h5 {
        font-size: 18px;
    }
}

.custom-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-left-col {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-left-col a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-left-col img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-left-col a:hover img {
    transform: scale(1.02);
}

.gallery-right-col {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}

.gallery-right-col a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-right-col img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-right-col a:hover img {
    transform: scale(1.03);
}

@media (min-width: 768px) {
    .custom-gallery-container {
        display: grid;
        grid-template-columns: 3.18fr 1fr;
        grid-gap: 24px;
        align-items: stretch;
    }

    .gallery-left-col {
        height: 100%;
    }

    .gallery-left-col a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .gallery-left-col img {
        height: 100% !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
    }

    .gallery-right-col {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        grid-gap: 24px;
        height: 100%;
    }

    .gallery-right-col img {
        height: 100% !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
    }
}

.gallery-img {
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.plan-img.gallery-img{
    aspect-ratio: inherit !important;
    object-fit: contain !important;
}

.gallery-img:hover {
    transform: scale(1.03) !important;
}

.wide-image-container {
    container-type: inline-size;
}

.gallery-wide-img {
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-wide-img:hover {
    transform: scale(1.02) !important;
}

@media (max-width: 767.98px) {
    .custom-gallery-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .gallery-left-col img {
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
        object-fit: cover !important;
    }

    .gallery-right-col {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 24px;
    }

    .gallery-right-col img {
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
        object-fit: cover !important;
    }
}

@media (min-width: 768px) {
    .gallery-wide-img {
        height: calc((100cqw - 25px) * 3 / 8) !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
    }
}

/* Custom Gallery Container 2 - Reverse layout (Big image right, small images left) */
.custom-gallery-container-2 {
    display: flex;
    flex-direction: column-reverse; /* Big image (2nd child) on top, small images (1st child) at bottom on mobile */
    gap: 24px;
}

@media (min-width: 768px) {
    .custom-gallery-container-2 {
        display: grid;
        grid-template-columns: 1fr 3.18fr; /* Small column on left (1st child), Big column on right (2nd child) */
        grid-gap: 24px;
        align-items: stretch;
    }
}

/* Sosyal Donatılar Custom Gallery Grid */
.sosyal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.sosyal-grid-item {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, 0.25); */
}

.sosyal-grid-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.sosyal-grid-img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: auto !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sosyal-grid-img:hover {
    transform: scale(1.03) !important;
}

.project-profile-card {
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin: 40px 0 60px 0;
    color: #0A4A34;
    border: 1.5px solid #dcc6b3;
}

.profile-title {
    font-size: 38px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.profile-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 40px auto;
    max-width: 380px;
}

.profile-title-divider .divider-line {
    height: 1px;
    background-color: #dcc6b3;
    flex-grow: 1;
}

.profile-card {
    background-color: transparent;
    border: 1.5px solid #e5d5c5;
    border-radius: 16px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.profile-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-card-content {
    display: flex;
    flex-direction: column;
}

.profile-card-label {
    font-size: 15px;
    color: #879d93;
    font-weight: 500;
    margin-bottom: 4px;
}

.profile-card-value {
    font-size: 38px;
    font-weight: 800;
    color: #FFF;
    line-height: 1.1;
}

.profile-table-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.profile-group {
    display: grid;
    grid-template-columns: 240px 1fr;
    border-top: 1.5px solid #dcc6b3;
    padding: 30px 0;
    align-items: center;
}

.profile-group:last-child {
    border-bottom: 1.5px solid #dcc6b3;
}

.profile-group-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    gap: 12px;
    text-align: center;
}

.label-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAF7F2;
    transition: all 0.3s ease;
}

.profile-group:hover .label-icon-wrapper {
    transform: scale(1.05);
    background-color: #0a4a34;
}

.profile-group:hover .label-icon-wrapper svg path,
.profile-group:hover .label-icon-wrapper svg rect {
    stroke: #FAF7F2;
    fill: none;
}

.profile-group:hover .label-icon-wrapper svg rect[fill="#0A4A34"] {
    fill: #FAF7F2;
}

.label-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.profile-group-rows {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
}

.profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eae0d5;
    transition: all 0.3s ease;
}

.profile-row:hover {
    background-color: rgba(220, 198, 179, 0.1);
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
}

.profile-row:last-child {
    border-bottom: none;
}

.row-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
}

.row-val {
    font-size: 22px;
    font-weight: 700;
    color: #FFF;
}

.div-360 {
    padding-right: 20px;
    padding-left: 15px;
}


.social-full-img {
    width: 100%;
    height: 500px !important;
    object-fit: cover;
    border-radius: 12px;
    /* box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, 0.25); */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-full-img:hover {
    transform: scale(1.01);
}

.social-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-feature-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, 0.25); */
    aspect-ratio: 4 / 3;
}

.social-feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-feature-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 991.98px) {
    .social-full-img {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .social-full-img {
        height: 250px;
    }

    .social-feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


@media (max-width: 767.98px) {
    .sosyal-grid-item {
        height: 250px;
    }

    .text-page-section {
        padding: 20px 0;
    }
}

@media (min-width: 768px) {
    .sosyal-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .sosyal-grid-item.item-top {
        grid-column: span 2;
        grid-row: 1;
    }

    .sosyal-grid-item.item-left-top {
        grid-column: 1;
        grid-row: 1;
    }

    .sosyal-grid-item.item-right-top {
        grid-column: 2;
        grid-row: 1;
    }


    .sosyal-grid-item.item-bottom {
        grid-column: span 2;
        grid-row: 7;
    }

    .sosyal-grid-item.item-left {
        grid-column: 1;
        grid-row: 2 / span 2;
    }

    .sosyal-grid-item.item-right-1 {
        grid-column: 2;
        grid-row: 2;
    }

    .sosyal-grid-item.item-right-2 {
        grid-column: 2;
        grid-row: 3;
    }

    .sosyal-grid-item.item-full {
        grid-column: span 2;
        grid-row: 4;
    }

    .sosyal-grid-item.item-left-1 {
        grid-column: 1;
        grid-row: 5;
    }

    .sosyal-grid-item.item-left-2 {
        grid-column: 1;
        grid-row: 6;
    }

    .sosyal-grid-item.item-right {
        grid-column: 2;
        grid-row: 5 / span 2;
    }

    .sosyal-grid-item.item-left-3 {
        grid-column: 1;
        grid-row: 8;
    }

    .sosyal-grid-item.item-right-3 {
        grid-column: 2;
        grid-row: 8;
    }

    .sosyal-grid-item.item-left-4 {
        grid-column: 1;
        grid-row: 9;
    }

    .sosyal-grid-item.item-right-4 {
        grid-column: 2;
        grid-row: 9;
    }

    .sosyal-grid-item.item-left-second {
        grid-column: 1;
        grid-row: 10 / span 2;
    }

    .sosyal-grid-item.item-right-second {
        grid-column: 2;
        grid-row: 10 / span 2;
    }

    .sosyal-grid-item.item-full-2 {
        grid-column: span 2;
        grid-row: 12;
    }

    .sosyal-grid-item.item-bottom-second {
        grid-column: span 2;
        grid-row: 13;
    }
}



@media (max-width: 991.98px) {
    .project-profile-card {
        padding: 50px 40px;
    }

    .profile-card {
        padding: 20px 25px;
        gap: 15px;
    }

    .profile-card-value {
        font-size: 32px;
    }

    .profile-group {
        grid-template-columns: 200px 1fr;
    }

    .profile-group-rows {
        padding-left: 20px;
    }
}

@media (max-width: 767.98px) {
    .project-profile-card {
        padding: 40px 20px;
        margin: 30px 0;
    }

    .profile-title {
        font-size: 30px;
    }

    .profile-group {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 0;
    }

    .profile-group-label {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        border-bottom: 1px solid #eae0d5;
        padding-bottom: 15px;
        text-align: left;
    }

    .profile-group-rows {
        padding-left: 0;
    }

    .profile-row {
        padding: 12px 0;
    }

    .row-title {
        font-size: 16px;
    }

    .row-val {
        font-size: 18px;
    }
}

/* Floor Plan Layout Auto-height Alignment */
@media (min-width: 992px) {
    .plan-details-row {
        display: flex !important;
        align-items: stretch !important;
    }
    
    .plan-details-row .left-content-col {
        display: flex;
        flex-direction: column;
    }
    
    .plan-details-row .left-content-col .metraj-kart {
        height: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .plan-details-row .right-image-col {
        position: relative !important;
        height: auto !important;
    }
    
    .plan-details-row .right-image-col .full-img {
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        left: calc(var(--bs-gutter-x, 1.5rem) / 2) !important;
        right: calc(var(--bs-gutter-x, 1.5rem) / 2) !important;
    }
    
    .plan-details-row .right-image-col .full-img a {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }
    
    .plan-details-row .right-image-col .full-img img.sosyal-grid-img {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Stretches to fill the height perfectly */
    }
}

.sosyal-horizontal-item {
    width: 100%;
    height: 295px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .sosyal-horizontal-item {
        height: 220px;
    }
}

/* Download Gallery Button */
.btn-download-gallery {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    background: radial-gradient(circle at center, #004526 0%, #001f10 100%);
    border: 2px solid var(--primary-second-color, #e6b726);
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(230, 183, 38, 0.35);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

.btn-download-gallery:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 183, 38, 0.6);
    background: radial-gradient(circle at center, #00502c 0%, #002916 100%);
}

.btn-download-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-second-color, #e6b726);
    font-size: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.3s ease;
    margin-right: 15px;
}

.btn-download-gallery:hover .btn-download-text {
    color: var(--primary-hover, #ffd040);
}

.btn-download-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-second-color, #e6b726);
    color: #001f10; /* Matches deep green bg color for cutout visual style */
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-download-gallery:hover .btn-download-icon-box {
    background-color: var(--primary-hover, #ffd040);
    transform: scale(1.05);
}

.btn-download-icon-box svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-download-gallery:hover .btn-download-icon-box svg {
    transform: translateY(-2px);
}

@media (min-width: 1200px) {
    .btn-download-gallery {
        padding: 20px 24px;
    }
    .btn-download-text {
        font-size: 24px;
        
    }
    .btn-download-icon-box {
        width: 54px;
        height: 54px;
        border-radius: 14px;
    }
    .btn-download-icon-box svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 991.98px) {
    .btn-download-gallery {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .btn-download-gallery {
        padding: 12px 16px;
        border-radius: 14px;
    }
    .btn-download-text {
        font-size: 16px;
    }
    .btn-download-icon-box {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    .btn-download-icon-box svg {
        width: 20px;
        height: 20px;
    }
}

/* Yellow Theme Modifier for Download Button */
.btn-download-gallery.btn-yellow {
    background: #FFD700;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
    padding: 10px 20px;
}

.btn-download-gallery.btn-yellow:hover {
    background: #ffe033;
    border-color: #ffe033;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-download-gallery.btn-yellow .btn-download-text {
    color: #001f10;
    font-size: 18px;
}

.btn-download-gallery.btn-yellow:hover .btn-download-text {
    color: #001f10;
}

.btn-download-gallery.btn-yellow .btn-download-icon-box {
    background-color: #001f10;
    color: #FFD700;
    width: 46px;
    height: 46px;
}

.btn-download-gallery.btn-yellow:hover .btn-download-icon-box {
    background-color: #002e17;
    color: #ffe033;
}

