/* =========================================================
   HOME HERO
========================================================= */
html {
    scroll-behavior: smooth;
}
.home-hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #080808;

    color: #fff;
}


/* =========================================================
   VIDEO
========================================================= */

.home-hero-media {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 0;
}


.home-hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
       Kadrajı buradan ayarlayacağız.
       Kafalar kesiliyorsa yüzdeyi azalt.
    */
    object-position: center 30%;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.home-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    /*
       Hafif koyuluk + çok hafif yumuşaklık
    */
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, .72) 0%,
            rgba(5, 5, 5, .48) 42%,
            rgba(5, 5, 5, .20) 75%,
            rgba(5, 5, 5, .12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .15) 0%,
            transparent 60%,
            rgba(0, 0, 0, .30) 100%
        );

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(1px);

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.home-hero-content {
    position: relative;

    z-index: 2;

    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;

    padding-top: 82px;
}


.home-hero-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #c9a84c !important;

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .26em;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.home-hero .home-hero-content h1 {
    max-width: 850px;

    margin: 0;

    color: #fff !important;

    font-size:
        clamp(3.4rem, 7vw, 7rem);

    font-weight: 700;

    line-height: .93;

    letter-spacing: -.045em;
}


.home-hero .home-hero-content h1 strong {
    display: block;

    color: #c9a84c !important;

    font-weight: inherit;
}

/* =========================================================
   HERO DISCOVER
========================================================= */

.hero-discover {
    position: absolute;

    left: 50%;
    bottom: 32px;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    transform: translateX(-50%);

    color: rgba(255, 255, 255, .70);

    text-decoration: none;

    transition: color .25s ease;
}

.hero-discover span {
    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .22em;
}

.hero-discover-arrow {
    font-size: 1.15rem;

    animation: heroDiscoverArrow 1.8s ease-in-out infinite;
}

.hero-discover:hover {
    color: #c9a84c;
}


/* OK ANİMASYONU */

@keyframes heroDiscoverArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: .55;
    }

    50% {
        transform: translateY(7px);
        opacity: 1;
    }

}


/* MOBİL */

@media (max-width: 700px) {

    .hero-discover {
        bottom: 20px;
    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.home-hero .home-hero-content p {
    max-width: 610px;

    margin: 27px 0 0;

    color:
        rgba(255, 255, 255, .76) !important;

    font-size: 1rem;

    line-height: 1.75;
}


/* =========================================================
   BUTTONS
========================================================= */

.home-hero-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 33px;
}


.home-hero .hero-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 0 21px;

    border-radius: 8px;

    font-size: .80rem;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}


/* PRIMARY */

.home-hero .hero-btn-primary {
    background: #c9a84c;

    border:
        1px solid #c9a84c;

    color: #090909 !important;
}


.home-hero .hero-btn-primary:hover {
    background: #e0c365;

    border-color: #e0c365;

    color: #090909 !important;

    transform: translateY(-3px);
}


.home-hero .hero-btn-primary span {
    color: inherit !important;

    transition: transform .25s ease;
}


.home-hero .hero-btn-primary:hover span {
    transform: translateX(4px);
}


/* SECONDARY */

.home-hero .hero-btn-secondary {
    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid
        rgba(255, 255, 255, .22);

    color: #fff !important;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.home-hero .hero-btn-secondary:hover {
    background:
        rgba(255, 255, 255, .09);

    border-color:
        rgba(201, 168, 76, .70);

    color: #c9a84c !important;

    transform: translateY(-3px);
}


/* =========================================================
   LIGHT MODE
   HERO HER ZAMAN KOYU KALIR
========================================================= */

body.light-mode .home-hero {
    background: #080808 !important;

    color: #fff !important;
}


body.light-mode .home-hero .home-hero-content h1 {
    color: #fff !important;
}


body.light-mode .home-hero .home-hero-content h1 strong,
body.light-mode .home-hero .home-hero-eyebrow {
    color: #c9a84c !important;
}


body.light-mode .home-hero .home-hero-content p {
    color:
        rgba(255, 255, 255, .76) !important;
}


body.light-mode .home-hero .hero-btn-secondary {
    color: #fff !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .home-hero-content {
        width:
            calc(100% - 50px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .home-hero {
        height: 100svh;

        min-height: 620px;
    }


    .home-hero-content {
        width:
            calc(100% - 32px);

        padding-top: 80px;
    }


    .home-hero-video {
        object-position: center 30%;
    }


    .home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5,5,5,.35) 0%,
                rgba(5,5,5,.50) 40%,
                rgba(5,5,5,.90) 100%
            );

        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }


    .home-hero .home-hero-content h1 {
        font-size:
            clamp(3rem, 14vw, 4.7rem);

        line-height: .96;
    }


    .home-hero .home-hero-content p {
        font-size: .91rem;

        line-height: 1.65;
    }


    .home-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .home-hero .hero-btn {
        width: 100%;
    }

}


/* =========================================================
   HOME ABOUT
========================================================= */

.home-about {
    position: relative;

    padding: 120px 0;

    background: #0d0d0d;

    color: #fff;
}


/* =========================================================
   INNER
========================================================= */

.home-about-inner {
    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(360px, .75fr);

    align-items: center;

    gap: 100px;
}


/* =========================================================
   LEFT
========================================================= */

.home-about-left {
    max-width: 780px;
}


.home-section-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #c9a84c;

    font-size: .70rem;
    font-weight: 800;

    letter-spacing: .24em;

    text-transform: uppercase;
}


.home-about h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(2.5rem, 4.5vw, 5rem);

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -.035em;
}


.home-about h2 strong {
    color: #c9a84c;

    font-weight: inherit;
}


.home-about p {
    max-width: 650px;

    margin: 28px 0 0;

    color:
        rgba(255,255,255,.62);

    font-size: .98rem;

    line-height: 1.8;
}


/* =========================================================
   LINK
========================================================= */

.home-about-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    color: #fff;

    font-size: .78rem;
    font-weight: 800;

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(255,255,255,.18);

    padding-bottom: 6px;

    transition:
        color .25s ease,
        border-color .25s ease;
}


.home-about-link span {
    transition:
        transform .25s ease;
}


.home-about-link:hover {
    color: #c9a84c;

    border-color: #c9a84c;
}


.home-about-link:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   RIGHT STATS
========================================================= */

.home-about-right {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}


.home-about-stat {
    min-height: 160px;

    padding: 24px 18px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 14px;

    background:
        rgba(255,255,255,.025);

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}


.home-about-stat:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(201,168,76,.40);

    background:
        rgba(201,168,76,.05);
}


.home-about-stat strong {
    display: block;

    margin-bottom: 8px;

    color: #c9a84c;

    font-size:
        clamp(1.8rem, 3vw, 3rem);

    line-height: 1;
}


.home-about-stat span {
    color:
        rgba(255,255,255,.56);

    font-size: .70rem;

    line-height: 1.4;
}


/* =========================================================
   LIGHT MODE
========================================================= */

body.light-mode .home-about {
    background: #f4f4f2;

    color: #161616;
}


body.light-mode .home-about h2 {
    color: #161616;
}


body.light-mode .home-about h2 strong {
    color: #9d7c22;
}


body.light-mode .home-about p {
    color: #666;
}


body.light-mode .home-about-link {
    color: #222;

    border-color:
        rgba(0,0,0,.15);
}


body.light-mode .home-about-link:hover {
    color: #9d7c22;

    border-color: #9d7c22;
}


body.light-mode .home-about-stat {
    background: #fff;

    border-color:
        rgba(0,0,0,.07);
}


body.light-mode .home-about-stat:hover {
    border-color:
        rgba(165,133,47,.35);

    background:
        rgba(165,133,47,.04);
}


body.light-mode .home-about-stat strong {
    color: #9d7c22;
}


body.light-mode .home-about-stat span {
    color: #666;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .home-about-inner {
        width:
            calc(100% - 50px);

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .home-about-right {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .home-about {
        padding: 85px 0;
    }


    .home-about-inner {
        width:
            calc(100% - 32px);
    }


    .home-about-right {
        grid-template-columns: 1fr;
    }


    .home-about-stat {
        min-height: 120px;
    }

}

/* =========================================================
   HOME PROJECTS
========================================================= */

.home-projects {
    padding: 120px 0;

    background: #111;
}

.home-projects-inner {
    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;
}

.home-projects-description {
    max-width: 620px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.55);

    font-size: .88rem;

    line-height: 1.75;
}

body.light-mode .home-projects-description {
    color: #666;
}

/* =========================================================
   HEAD
========================================================= */

.home-projects-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.home-projects-head h2 {
    max-width: 720px;

    margin: 0;

    color: #fff;

    font-size:
        clamp(2.4rem, 4vw, 4.8rem);

    line-height: 1.05;

    letter-spacing: -.035em;
}

.home-projects-head h2 strong {
    color: #c9a84c;

    font-weight: inherit;
}


/* =========================================================
   TÜM PROJELER LINK
========================================================= */

.home-projects-all {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 6px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .16);

    color: #fff;

    font-size: .78rem;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color .25s ease,
        border-color .25s ease;
}

.home-projects-all span {
    transition:
        transform .25s ease;
}

.home-projects-all:hover {
    color: #c9a84c;

    border-color: #c9a84c;
}

.home-projects-all:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   SLIDER WRAP
========================================================= */

.home-projects-slider-wrap {
    position: relative;
}


/* =========================================================
   SLIDER
========================================================= */

.home-projects-slider {
    display: flex;

    gap: 18px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    padding-bottom: 10px;
}

.home-projects-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CARD
   MASAÜSTÜNDE 3,5 KART
========================================================= */

.home-project-card {
    flex:
        0 0
        calc((100% - 54px) / 3.5);

    min-width: 0;

    scroll-snap-align: start;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, .08);

    border-radius: 17px;

    background: #151515;

    transition:
        transform .30s ease,
        border-color .30s ease,
        box-shadow .30s ease;
}

.home-project-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(201, 168, 76, .40);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, .30);
}


/* =========================================================
   IMAGE
========================================================= */

.home-project-image {
       position: relative;

    width: 100%;
    height: 300px;

    overflow: hidden;

    display: block;
}

.home-project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .6s ease;
}

.home-project-card:hover
.home-project-image img {
    transform:
        scale(1.05);
}

@media (max-width: 700px) {

    .home-project-image {
        height: 240px;
    }

}

.home-project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0, 0, 0, .50) 100%
        );

    pointer-events: none;
}


/* =========================================================
   STATUS
========================================================= */

.home-project-status {
    position: absolute;

    top: 14px;
    right: 14px;

    padding: 6px 10px;

    border:
        1px solid
        rgba(255, 255, 255, .12);

    border-radius: 999px;

    background:
        rgba(10, 10, 10, .65);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    color: #fff;

    font-size: .61rem;
    font-weight: 800;
}


/* =========================================================
   CONTENT
========================================================= */

.home-project-content {
    padding: 19px;
}

.home-project-location {
    display: block;

    margin-bottom: 6px;

    color: #c9a84c;

    font-size: .62rem;
    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.home-project-content h3 {
    margin: 0;

    color: #fff;

    font-size: 1.25rem;

    line-height: 1.2;
}

.home-project-content p {
    margin: 10px 0 0;

    color:
        rgba(255, 255, 255, .56);

    font-size: .78rem;

    line-height: 1.6;
}


/* =========================================================
   PROJECT LINK
========================================================= */

.home-project-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 16px;

    color: #fff;

    font-size: .70rem;
    font-weight: 800;

    text-decoration: none;

    transition:
        color .25s ease;
}

.home-project-link span {
    transition:
        transform .25s ease;
}

.home-project-link:hover {
    color: #c9a84c;
}

.home-project-link:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   ARROWS
========================================================= */

.home-project-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    transform:
        translateY(-50%);

    border:
        1px solid
        rgba(255, 255, 255, .15);

    border-radius: 50%;

    background:
        rgba(10, 10, 10, .82);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    color: #fff;

    font-size: 1.05rem;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        opacity .25s ease;
}

.home-project-arrow-prev {
    left: -23px;
}

.home-project-arrow-next {
    right: -23px;
}

.home-project-arrow:hover {
    background: #c9a84c;

    border-color: #c9a84c;

    color: #111;

    transform:
        translateY(-50%)
        scale(1.07);
}

.home-project-arrow:disabled {
    opacity: .20;

    pointer-events: none;
}


/* =========================================================
   EMPTY
========================================================= */

.home-projects-empty {
    padding: 35px;

    border:
        1px solid
        rgba(255, 255, 255, .08);

    border-radius: 14px;

    color: #777;

    text-align: center;
}


/* =========================================================
   LIGHT MODE
========================================================= */

body.light-mode .home-projects {
    background: #ececea;
}

body.light-mode .home-projects-head h2 {
    color: #161616;
}

body.light-mode .home-projects-head h2 strong {
    color: #9d7c22;
}

body.light-mode .home-projects-all {
    color: #222;

    border-color:
        rgba(0, 0, 0, .15);
}

body.light-mode .home-projects-all:hover {
    color: #9d7c22;

    border-color: #9d7c22;
}

body.light-mode .home-project-card {
    background: #fff;

    border-color:
        rgba(0, 0, 0, .07);

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, .06);
}

body.light-mode .home-project-content h3 {
    color: #171717;
}

body.light-mode .home-project-content p {
    color: #666;
}

body.light-mode .home-project-location {
    color: #9d7c22;
}

body.light-mode .home-project-link {
    color: #222;
}

body.light-mode .home-project-link:hover {
    color: #9d7c22;
}

body.light-mode .home-project-arrow {
    background:
        rgba(255, 255, 255, .92);

    border-color:
        rgba(0, 0, 0, .10);

    color: #222;
}

body.light-mode .home-project-arrow:hover {
    background: #a5852f;

    border-color: #a5852f;

    color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .home-projects-inner {
        width:
            calc(100% - 50px);
    }

    .home-project-card {
        flex:
            0 0
            calc((100% - 36px) / 2.5);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .home-projects {
        padding:
            85px 0;
    }

    .home-projects-inner {
        width:
            calc(100% - 32px);
    }

    .home-projects-head {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .home-project-card {
        flex:
            0 0
            86%;
    }

    .home-project-image {
        height: 250px;
    }

    .home-project-arrow {
        display: none;
    }

}


/* =========================================================
   HOME STATS
========================================================= */

.home-stats {
    padding: 110px 0;

    background: #0c0c0c;

    color: #fff;
}

.home-stats-inner {
    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;
}


/* =========================================================
   HEAD
========================================================= */

.home-stats-head {
    max-width: 760px;

    margin-bottom: 55px;
}

.home-stats-head h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(2.3rem, 4vw, 4.6rem);

    line-height: 1.05;

    letter-spacing: -.035em;
}

.home-stats-head h2 strong {
    color: #c9a84c;

    font-weight: inherit;
}


/* =========================================================
   GRID
========================================================= */

.home-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    border-top:
        1px solid rgba(255,255,255,.08);

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


/* =========================================================
   ITEM
========================================================= */

.home-stat-item {
    position: relative;

    min-height: 210px;

    padding: 35px 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border-right:
        1px solid rgba(255,255,255,.08);

    transition:
        background .25s ease,
        transform .25s ease;
}

.home-stat-item:last-child {
    border-right: 0;
}

.home-stat-item:hover {
    background:
        rgba(201,168,76,.05);

    transform:
        translateY(-4px);
}


/* =========================================================
   NUMBER
========================================================= */

.home-stat-item strong {
    display: block;

    margin-bottom: 12px;

    color: #c9a84c;

    font-size:
        clamp(2.6rem, 5vw, 5.2rem);

    font-weight: 700;

    line-height: .95;

    letter-spacing: -.04em;
}


/* =========================================================
   LABEL
========================================================= */

.home-stat-item span {
    color:
        rgba(255,255,255,.58);

    font-size: .78rem;
    font-weight: 600;

    letter-spacing: .04em;
}


/* =========================================================
   LIGHT MODE
========================================================= */

body.light-mode .home-stats {
    background: #f4f4f2;

    color: #161616;
}

body.light-mode .home-stats-head h2 {
    color: #161616;
}

body.light-mode .home-stats-head h2 strong {
    color: #9d7c22;
}

body.light-mode .home-stats-grid {
    border-top-color:
        rgba(0,0,0,.08);

    border-bottom-color:
        rgba(0,0,0,.08);
}

body.light-mode .home-stat-item {
    border-right-color:
        rgba(0,0,0,.08);
}

body.light-mode .home-stat-item:hover {
    background:
        rgba(165,133,47,.05);
}

body.light-mode .home-stat-item strong {
    color: #9d7c22;
}

body.light-mode .home-stat-item span {
    color: #666;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .home-stats-inner {
        width:
            calc(100% - 50px);
    }

    .home-stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .home-stat-item:nth-child(2) {
        border-right: 0;
    }

    .home-stat-item:nth-child(-n+2) {
        border-bottom:
            1px solid rgba(255,255,255,.08);
    }

    body.light-mode
    .home-stat-item:nth-child(-n+2) {
        border-bottom-color:
            rgba(0,0,0,.08);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-stats {
        padding: 85px 0;
    }

    .home-stats-inner {
        width:
            calc(100% - 32px);
    }

    .home-stats-grid {
        grid-template-columns: 1fr;
    }

    .home-stat-item {
        min-height: 150px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.08);
    }

    .home-stat-item:last-child {
        border-bottom: 0;
    }

    body.light-mode .home-stat-item {
        border-bottom-color:
            rgba(0,0,0,.08);
    }

}
/* =========================================================
   HOME SERVICES
========================================================= */

.home-services {
    padding: 120px 0;

    background: #111;

    color: #fff;
}


.home-services-inner {
    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;
}


/* =========================================================
   HEAD
========================================================= */

.home-services-head {
    max-width: 820px;

    margin-bottom: 65px;
}


.home-services-head h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(2.4rem, 4vw, 4.8rem);

    line-height: 1.05;

    letter-spacing: -.035em;
}


.home-services-head h2 strong {
    color: #c9a84c;

    font-weight: inherit;
}


.home-services-head p {
    max-width: 620px;

    margin: 24px 0 0;

    color:
        rgba(255, 255, 255, .55);

    font-size: .9rem;

    line-height: 1.75;
}


/* =========================================================
   SERVICES LIST
========================================================= */

.home-services-list {
    border-top:
        1px solid
        rgba(255, 255, 255, .10);
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.home-service-item {
    position: relative;

    min-height: 180px;

    display: grid;

    grid-template-columns:
        100px
        minmax(0, 1fr)
        70px;

    align-items: center;

    gap: 30px;

    padding: 30px 20px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .10);

    color: #fff;

    text-decoration: none;

    overflow: hidden;

    transition:
        padding .35s ease,
        background .35s ease;
}


/* Hover arka plan */

.home-service-item::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(201, 168, 76, .10),
            rgba(201, 168, 76, .025),
            transparent
        );

    opacity: 0;

    transform:
        translateX(-25px);

    transition:
        opacity .35s ease,
        transform .35s ease;

    pointer-events: none;
}


.home-service-item:hover::before {
    opacity: 1;

    transform:
        translateX(0);
}


.home-service-item:hover {
    padding-left: 32px;
}


/* =========================================================
   NUMBER
========================================================= */

.home-service-number {
    position: relative;

    z-index: 1;

    color:
        rgba(255, 255, 255, .25);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .12em;

    transition:
        color .30s ease;
}


.home-service-item:hover
.home-service-number {
    color: #c9a84c;
}


/* =========================================================
   CONTENT
========================================================= */

.home-service-content {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(260px, .8fr)
        minmax(300px, 1fr);

    align-items: center;

    gap: 60px;
}


.home-service-content h3 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(1.5rem, 2.5vw, 2.6rem);

    font-weight: 600;

    letter-spacing: -.025em;

    transition:
        color .30s ease;
}


.home-service-content p {
    max-width: 520px;

    margin: 0;

    color:
        rgba(255, 255, 255, .50);

    font-size: .82rem;

    line-height: 1.7;
}


.home-service-item:hover
.home-service-content h3 {
    color: #c9a84c;
}


/* =========================================================
   ARROW
========================================================= */

.home-service-arrow {
    position: relative;

    z-index: 1;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    justify-self: end;

    border:
        1px solid
        rgba(255, 255, 255, .14);

    border-radius: 50%;

    color:
        rgba(255, 255, 255, .70);

    font-size: 1rem;

    transition:
        background .30s ease,
        border-color .30s ease,
        color .30s ease,
        transform .30s ease;
}


.home-service-item:hover
.home-service-arrow {
    background: #c9a84c;

    border-color: #c9a84c;

    color: #111;

    transform:
        rotate(45deg);
}


/* =========================================================
   LIGHT MODE
========================================================= */

body.light-mode .home-services {
    background: #ececea;

    color: #161616;
}


body.light-mode .home-services-head h2 {
    color: #161616;
}


body.light-mode .home-services-head h2 strong {
    color: #9d7c22;
}


body.light-mode .home-services-head p {
    color: #666;
}


body.light-mode .home-services-list {
    border-top-color:
        rgba(0, 0, 0, .09);
}


body.light-mode .home-service-item {
    color: #161616;

    border-bottom-color:
        rgba(0, 0, 0, .09);
}


body.light-mode .home-service-item::before {
    background:
        linear-gradient(
            90deg,
            rgba(165, 133, 47, .10),
            rgba(165, 133, 47, .025),
            transparent
        );
}


body.light-mode .home-service-number {
    color:
        rgba(0, 0, 0, .28);
}


body.light-mode
.home-service-item:hover
.home-service-number {
    color: #9d7c22;
}


body.light-mode
.home-service-content h3 {
    color: #181818;
}


body.light-mode
.home-service-content p {
    color: #666;
}


body.light-mode
.home-service-item:hover
.home-service-content h3 {
    color: #9d7c22;
}


body.light-mode
.home-service-arrow {
    color: #333;

    border-color:
        rgba(0, 0, 0, .14);
}


body.light-mode
.home-service-item:hover
.home-service-arrow {
    background: #9d7c22;

    border-color: #9d7c22;

    color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .home-services-inner {
        width:
            calc(100% - 50px);
    }


    .home-service-item {
        grid-template-columns:
            60px
            1fr
            50px;
    }


    .home-service-content {
        grid-template-columns: 1fr;

        gap: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .home-services {
        padding: 85px 0;
    }


    .home-services-inner {
        width:
            calc(100% - 32px);
    }


    .home-services-head {
        margin-bottom: 45px;
    }


    .home-service-item {
        min-height: 0;

        grid-template-columns:
            38px
            1fr
            42px;

        gap: 12px;

        padding:
            25px 5px;
    }


    .home-service-item:hover {
        padding-left: 10px;
    }


    .home-service-content {
        gap: 10px;
    }


    .home-service-content h3 {
        font-size: 1.35rem;
    }


    .home-service-content p {
        font-size: .75rem;

        line-height: 1.6;
    }


    .home-service-arrow {
        width: 38px;
        height: 38px;
    }

}
/* =========================================================
   HOME SALES
========================================================= */

.home-sales {
    padding: 120px 0;

    background: #0c0c0c;

    color: #fff;
}

.home-sales-inner {
    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;
}

.home-sales-description {
    max-width: 620px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.55);

    font-size: .88rem;

    line-height: 1.75;
}

body.light-mode .home-sales-description {
    color: #666;
}


/* =========================================================
   HEAD
========================================================= */

.home-sales-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.home-sales-head h2 {
    max-width: 760px;

    margin: 0;

    color: #fff;

    font-size:
        clamp(2.3rem, 4vw, 4.7rem);

    line-height: 1.05;

    letter-spacing: -.035em;
}

.home-sales-head h2 strong {
    color: #c9a84c;

    font-weight: inherit;
}

.home-sales-all {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 6px;

    border-bottom:
        1px solid
        rgba(255,255,255,.16);

    color: #fff;

    font-size: .76rem;
    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;
}

.home-sales-all:hover {
    color: #c9a84c;

    border-color: #c9a84c;
}


/* =========================================================
   GRID
========================================================= */

.home-sales-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.home-sale-card {
    padding: 22px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #101010
        );

    transition:
        transform .30s ease,
        border-color .30s ease,
        box-shadow .30s ease;
}

.home-sale-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(201,168,76,.40);

    box-shadow:
        0 24px 55px
        rgba(0,0,0,.28);
}


/* =========================================================
   TOP
========================================================= */

.home-sale-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 16px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);
}

.home-sale-top span {
    display: block;

    margin-bottom: 4px;

    color: #777;

    font-size: .55rem;
    font-weight: 800;

    letter-spacing: .10em;
}

.home-sale-top h3 {
    margin: 0;

    color: #fff;

    font-size: 1.25rem;
}


/* =========================================================
   STATUS
========================================================= */

.home-stats-description {
    max-width: 620px;

    margin: 20px 0 0;

    color: rgba(255,255,255,.55);

    font-size: .88rem;

    line-height: 1.75;
}

body.light-mode .home-stats-description {
    color: #666;
}

.home-stats-empty {
    padding: 35px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 14px;

    color: #777;

    text-align: center;
}

body.light-mode .home-stats-empty {
    border-color:
        rgba(0,0,0,.08);

    color: #666;
}

.home-sale-status {
    padding: 6px 10px;

    border-radius: 999px;

    background:
        rgba(37,122,67,.20);

    color: #8ee6a8;

    font-size: .62rem;
    font-weight: 800;
}

.home-sale-status.reserved {
    background:
        rgba(155,123,24,.22);

    color: #efd17f;
}

.home-sale-status.sold {
    background:
        rgba(145,42,42,.22);

    color: #ef9999;
}


/* =========================================================
   LOCATION
========================================================= */

.home-sale-location {
    min-height: 45px;

    padding: 16px 0;

    color:
        rgba(255,255,255,.58);

    font-size: .78rem;

    line-height: 1.5;
}


/* =========================================================
   INFO
========================================================= */

.home-sale-info {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 7px;
}

.home-sale-info > div {
    padding: 9px;

    border:
        1px solid
        rgba(255,255,255,.055);

    border-radius: 8px;

    background:
        rgba(255,255,255,.025);
}

.home-sale-info span {
    display: block;

    margin-bottom: 3px;

    color: #666;

    font-size: .50rem;

    text-transform: uppercase;
}

.home-sale-info strong {
    color: #ddd;

    font-size: .70rem;
}


/* =========================================================
   BOTTOM
========================================================= */

.home-sale-bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin-top: 18px;
    padding-top: 17px;

    border-top:
        1px solid
        rgba(255,255,255,.07);
}

.home-sale-bottom > div > span {
    display: block;

    margin-bottom: 4px;

    color: #666;

    font-size: .52rem;

    letter-spacing: .09em;
}

.home-sale-bottom strong {
    color: #c9a84c;

    font-size: 1.15rem;
}

.home-sale-bottom > a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    transition: .25s ease;
}

.home-sale-card:hover
.home-sale-bottom > a {
    background: #c9a84c;

    border-color: #c9a84c;

    color: #111;

    transform: translateX(3px);
}


/* =========================================================
   EMPTY
========================================================= */

.home-sales-empty {
    padding: 60px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(201,168,76,.05),
            rgba(255,255,255,.015)
        );

    text-align: center;
}

.home-sales-empty > span {
    display: block;

    margin-bottom: 12px;

    color: #c9a84c;

    font-size: .65rem;
    font-weight: 800;

    letter-spacing: .20em;
}

.home-sales-empty h3 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(1.5rem, 3vw, 2.5rem);
}

.home-sales-empty p {
    max-width: 530px;

    margin:
        15px auto 0;

    color:
        rgba(255,255,255,.52);

    font-size: .82rem;

    line-height: 1.65;
}


/* =========================================================
   LIGHT MODE
========================================================= */

body.light-mode .home-sales {
    background: #f4f4f2;

    color: #161616;
}

body.light-mode .home-sales-head h2 {
    color: #161616;
}

body.light-mode .home-sales-head h2 strong {
    color: #9d7c22;
}

body.light-mode .home-sales-all {
    color: #222;

    border-color:
        rgba(0,0,0,.15);
}

body.light-mode .home-sale-card {
    background: #fff;

    border-color:
        rgba(0,0,0,.07);

    box-shadow:
        0 14px 35px
        rgba(0,0,0,.05);
}

body.light-mode .home-sale-top {
    border-bottom-color:
        rgba(0,0,0,.07);
}

body.light-mode .home-sale-top h3 {
    color: #181818;
}

body.light-mode .home-sale-location {
    color: #666;
}

body.light-mode .home-sale-info > div {
    background:
        rgba(0,0,0,.025);

    border-color:
        rgba(0,0,0,.06);
}

body.light-mode .home-sale-info strong {
    color: #292929;
}

body.light-mode .home-sale-bottom {
    border-top-color:
        rgba(0,0,0,.07);
}

body.light-mode .home-sale-bottom strong {
    color: #9d7c22;
}

body.light-mode .home-sale-bottom > a {
    color: #222;

    border-color:
        rgba(0,0,0,.12);
}

body.light-mode .home-sales-empty {
    border-color:
        rgba(0,0,0,.08);

    background:
        linear-gradient(
            135deg,
            rgba(165,133,47,.06),
            #fff
        );
}

body.light-mode .home-sales-empty h3 {
    color: #181818;
}

body.light-mode .home-sales-empty p {
    color: #666;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .home-sales-inner {
        width:
            calc(100% - 50px);
    }

    .home-sales-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .home-sales {
        padding:
            85px 0;
    }

    .home-sales-inner {
        width:
            calc(100% - 32px);
    }

    .home-sales-head {
        align-items:
            flex-start;

        flex-direction: column;
    }

    .home-sales-grid {
        grid-template-columns: 1fr;
    }

    .home-sales-empty {
        padding:
            45px 20px;
    }

}

/* =========================================================
   HOME CTA
========================================================= */

.home-cta {
    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background: #0b0b0b;

    color: #fff;

    border-top:
        1px solid rgba(255,255,255,.06);
}


/* =========================================================
   INNER
========================================================= */

.home-cta-inner {
    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(340px, .75fr);

    align-items: center;

    gap: 100px;
}


/* =========================================================
   LEFT
========================================================= */

.home-cta-content {
    max-width: 850px;
}


.home-cta h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(2.8rem, 5vw, 6rem);

    font-weight: 600;

    line-height: .98;

    letter-spacing: -.045em;
}


.home-cta h2 strong {
    display: block;

    color: #c9a84c;

    font-weight: inherit;
}


.home-cta p {
    max-width: 620px;

    margin: 26px 0 0;

    color:
        rgba(255,255,255,.56);

    font-size: .90rem;

    line-height: 1.75;
}


/* =========================================================
   RIGHT PANEL
========================================================= */

.home-cta-panel {
    position: relative;

    padding: 30px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.015)
        );

    transition:
        border-color .30s ease,
        transform .30s ease,
        background .30s ease;
}


.home-cta-panel:hover {
    transform: translateY(-5px);

    border-color:
        rgba(201,168,76,.38);

    background:
        linear-gradient(
            145deg,
            rgba(201,168,76,.055),
            rgba(255,255,255,.015)
        );
}


/* =========================================================
   PANEL TOP
========================================================= */

.home-cta-panel-top {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.home-cta-panel-top span {
    color:
        rgba(255,255,255,.35);

    font-size: .62rem;
    font-weight: 800;

    letter-spacing: .16em;
}


.home-cta-panel-top strong {
    color: #fff;

    font-size:
        clamp(1.5rem, 2.6vw, 2.4rem);

    font-weight: 600;
}


/* =========================================================
   LINE
========================================================= */

.home-cta-panel-line {
    width: 100%;
    height: 1px;

    margin: 28px 0;

    background:
        linear-gradient(
            90deg,
            #c9a84c,
            rgba(201,168,76,.08)
        );
}


/* =========================================================
   LINK
========================================================= */

.home-cta-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #fff;

    text-decoration: none;
}


.home-cta-link span {
    font-size: .78rem;
    font-weight: 800;

    letter-spacing: .02em;
}


.home-cta-link strong {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 50%;

    color: #c9a84c;

    font-size: 1rem;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.home-cta-link:hover strong {
    background: #c9a84c;

    border-color: #c9a84c;

    color: #111;

    transform: translate(3px, -3px);
}


/* =========================================================
   LIGHT MODE
========================================================= */

body.light-mode .home-cta {
    background: #f4f4f2;

    color: #161616;

    border-top-color:
        rgba(0,0,0,.07);
}


body.light-mode .home-cta h2 {
    color: #161616;
}


body.light-mode .home-cta h2 strong {
    color: #9d7c22;
}


body.light-mode .home-cta p {
    color: #666;
}


body.light-mode .home-cta-panel {
    background: #fff;

    border-color:
        rgba(0,0,0,.08);

    box-shadow:
        0 14px 35px
        rgba(0,0,0,.05);
}


body.light-mode .home-cta-panel:hover {
    border-color:
        rgba(165,133,47,.35);

    background:
        rgba(165,133,47,.035);
}


body.light-mode .home-cta-panel-top span {
    color: #888;
}


body.light-mode .home-cta-panel-top strong {
    color: #181818;
}


body.light-mode .home-cta-link {
    color: #222;
}


body.light-mode .home-cta-link strong {
    color: #9d7c22;

    border-color:
        rgba(0,0,0,.12);
}


body.light-mode .home-cta-link:hover strong {
    background: #9d7c22;

    border-color: #9d7c22;

    color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .home-cta-inner {
        width:
            calc(100% - 50px);

        grid-template-columns: 1fr;

        gap: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .home-cta {
        padding: 85px 0;
    }


    .home-cta-inner {
        width:
            calc(100% - 32px);
    }


    .home-cta-panel {
        padding: 24px;
    }

}
/* =========================================================
   HOME SALES CATEGORY CARDS
========================================================= */

.home-sale-category-card {
    position: relative;
    overflow: hidden;

    min-height: 310px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    color: inherit;
    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}


.home-sale-category-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201,168,76,.10),
            transparent 70%
        );

    pointer-events: none;
}


.home-sale-category-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(201,168,76,.34);

    background:
        linear-gradient(
            145deg,
            rgba(201,168,76,.045),
            rgba(255,255,255,.018)
        );
}


.home-sale-category-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.home-sale-category-number {
    color:
        rgba(255,255,255,.24);

    font-size: .67rem;

    font-weight: 800;

    letter-spacing: .10em;
}


.home-sale-category-arrow {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 50%;

    color: #c9a84c;

    transition:
        transform .25s ease,
        background .25s ease;
}


.home-sale-category-card:hover
.home-sale-category-arrow {
    transform:
        translate(2px,-2px);

    background:
        rgba(201,168,76,.09);
}


.home-sale-category-content {
    position: relative;
    z-index: 2;

    margin-top: 55px;
}


.home-sale-category-kicker {
    display: block;

    margin-bottom: 9px;

    color: #c9a84c;

    font-size: .55rem;

    font-weight: 800;

    letter-spacing: .15em;
}


.home-sale-category-content h3 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(1.45rem,2.5vw,2.15rem);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -.03em;
}


.home-sale-category-content p {
    max-width: 340px;

    margin:
        14px 0
        0;

    color:
        rgba(255,255,255,.42);

    font-size: .70rem;

    line-height: 1.7;
}


.home-sale-category-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 28px;

    border-top:
        1px solid rgba(255,255,255,.07);

    color:
        rgba(255,255,255,.60);

    font-size: .66rem;

    font-weight: 750;
}


.home-sale-category-bottom strong {
    color: #c9a84c;

    transition:
        transform .2s ease;
}


.home-sale-category-card:hover
.home-sale-category-bottom strong {
    transform:
        translateX(3px);
}


/* =========================================================
   LIGHT MODE
========================================================= */

body.light-mode
.home-sale-category-card {
    border-color:
        rgba(0,0,0,.08);

    background:
        rgba(255,255,255,.74);
}


body.light-mode
.home-sale-category-content h3 {
    color: #171717;
}


body.light-mode
.home-sale-category-content p {
    color: #666;
}


body.light-mode
.home-sale-category-number {
    color: #aaa;
}


body.light-mode
.home-sale-category-bottom {
    border-top-color:
        rgba(0,0,0,.07);

    color: #666;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 800px) {

    .home-sale-category-card {
        min-height: 260px;

        padding: 22px;
    }

}