
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html,
body {
width: 100%;
height: 100%;
}

body {
font-family: "Inter", sans-serif;
background: #06112d;
color: #ffffff;
overflow-x: hidden;
overflow-y: auto;
}


/* =========================================
HERO
========================================= */

.hero {
position: relative;
width: 100%;
height: 100vh;
min-height: 650px;
overflow: hidden;
background: #06112d;
}


/* =========================================
SLIDER
========================================= */

.hero-slider {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}

.swiper-slide {
position: relative;

width: 100%;
height: 100%;

background-size: cover;
background-position: center center;

overflow: hidden;
}


/* Dark overlay */

.swiper-slide::before {
content: "";

position: absolute;
inset: 0;

background:
    linear-gradient(
        90deg,
        rgba(2, 11, 40, 0.98) 0%,
        rgba(3, 15, 47, 0.88) 28%,
        rgba(4, 18, 52, 0.60) 57%,
        rgba(4, 18, 45, 0.28) 100%
    );

z-index: 1;
}


.swiper-slide::after {
content: "";

position: absolute;
inset: 0;

background:
    linear-gradient(
        180deg,
        rgba(3, 11, 34, 0.12) 0%,
        rgba(3, 12, 39, 0.02) 50%,
        rgba(2, 12, 35, 0.68) 100%
    );

z-index: 2;
}



/* =========================================
HERO CONTENT
========================================= */

.hero-content {
position: absolute;

z-index: 20;

left: 5.1%;
top: 26%;

width: 730px;
}


/* SMALL TITLE */

.eyebrow {
font-size: 15px;

letter-spacing: 4px;

font-weight: 500;

color: #ffffff;

margin-bottom: 27px;
}


/* OUTLINE TITLE */

.background-title {
position: absolute;

left: -8px;
top: -65px;

white-space: nowrap;

font-size: 126px;

line-height: 1;

font-weight: 700;

color: transparent;

-webkit-text-stroke:
    2px rgba(255,255,255,0.15);

z-index: -1;

pointer-events: none;
}


/* MAIN TITLE */

.main-title {
font-size: clamp(58px, 5vw, 90px);

line-height: 1.08;

font-weight: 800;

letter-spacing: -4px;

color: #ffffff;

margin-bottom: 20px;
}


/* DESCRIPTION */

.description {
width: 650px;

font-size: 20px;

line-height: 1.75;

font-weight: 400;

color: rgba(255,255,255,0.94);

margin-bottom: 47px;
}


/* PROPERTY BUTTON */

.property-button {
display: inline-flex;

align-items: center;
justify-content: center;

padding: 15px 24px;

border-radius: 30px;

background: #7660ee;

color: #ffffff;

text-decoration: none;

font-size: 14px;

font-weight: 600;

transition: all 0.3s ease;
}

.property-button:hover {
background: #8975ff;

transform: translateY(-2px);
}


/* =========================================
VIDEO CIRCLE
========================================= */

.video-area {
position: absolute;

z-index: 25;

right: 11.5%;

top: 38.5%;

width: 218px;
height: 218px;

border-radius: 50%;

background-size: cover;

background-position: center;

overflow: hidden;

display: flex;

align-items: center;
justify-content: center;
}


/* Dark green overlay */

.video-area::before {
content: "";

position: absolute;
inset: 0;

background: rgba(43,57,13,0.38);

border-radius: 50%;
}


/* PLAY BUTTON */

.play-button {
position: relative;

z-index: 2;

width: 84px;
height: 84px;

border-radius: 50%;

border: none;

background: rgba(255,255,255,0.92);

display: flex;

align-items: center;
justify-content: center;

cursor: pointer;

transition: all 0.3s ease;
}

.play-button:hover {
transform: scale(1.08);

background: #ffffff;
}


.play-icon {
width: 0;
height: 0;

border-top: 10px solid transparent;

border-bottom: 10px solid transparent;

border-left: 15px solid #7161ef;

margin-left: 5px;
}


/* =========================================
BOTTOM AREA
========================================= */

.bottom-area {
position: absolute;

z-index: 40;

left: 0;
bottom: 0;

width: 100%;

height: 118px;

padding: 0 5.1%;

border-top:
    1px solid rgba(255,255,255,0.18);

display: flex;

align-items: center;

justify-content: space-between;
}


/* PROPERTY INFORMATION */

.property-info {
padding-left: 10px;

border-left:
    2px solid rgba(255,255,255,0.22);
}


.property-location {
font-size: 14px;

font-weight: 700;

margin-bottom: 9px;
}


.property-name {
font-size: 22px;

font-weight: 500;
}


/* =========================================
RIGHT CONTROLS
========================================= */

.slider-controls {
display: flex;

align-items: center;

gap: 30px;
}


/* PAGINATION */

.pagination {
display: flex;

align-items: center;

gap: 25px;
}


.pagination-number {
position: relative;

font-size: 13px;

color:
    rgba(255,255,255,0.35);

cursor: pointer;

transition:
    color 0.3s ease;
}


.pagination-number.active {
color: #ffffff;
}


/* LINE */

.pagination-number.active::after {
content: "";

position: absolute;

left: 32px;

top: 50%;

transform:
    translateY(-50%);

width: 50px;

height: 1px;

background:
    rgba(255,255,255,0.35);
}


/* =========================================
ARROWS
========================================= */

.slider-arrows {
display: flex;

align-items: center;

gap: 15px;
}


.slider-arrow {
width: 48px;
height: 48px;

border-radius: 50%;

border:
    1px solid rgba(255,255,255,0.25);

background: transparent;

color: #ffffff;

font-size: 27px;

font-weight: 300;

display: flex;

align-items: center;
justify-content: center;

cursor: pointer;

transition:
    all 0.3s ease;
}


.slider-arrow:hover {
background:
    rgba(255,255,255,0.12);

border-color:
    rgba(255,255,255,0.8);
}


/* =========================================
SLIDE ANIMATION
========================================= */

.swiper-slide-active .hero-content {
animation:
    contentFade 1.2s ease both;
}


.swiper-slide-active .video-area {
animation:
    videoFade 1.3s ease both;
}


@keyframes contentFade {

from {
    opacity: 0;

    transform:
        translateY(30px);
}

to {
    opacity: 1;

    transform:
        translateY(0);
}

}


@keyframes videoFade {

from {
    opacity: 0;

    transform:
        scale(0.8);
}

to {
    opacity: 1;

    transform:
        scale(1);
}

}


/* =========================================
MOBILE
========================================= */

@media (max-width: 1100px) {

.navigation {
    gap: 20px;
}

.navigation a {
    font-size: 13px;
}

.hero-content {
    width: 60%;
}

.description {
    width: 100%;

    font-size: 17px;
}

.video-area {
    width: 180px;
    height: 180px;

    right: 7%;
}

.main-title {
    font-size: 60px;
}

.background-title {
    font-size: 90px;
}

}


@media (max-width: 800px) {

body {
    overflow-x: hidden;
    overflow-y: auto;
}
.hero {
    min-height: 700px;
}


.header {
    padding:
        22px 25px;
}


.navigation {
    display: none;

    position: absolute;

    top: 75px;
    right: 25px;

    width: 220px;

    padding: 25px;

    flex-direction: column;

    align-items: flex-end;

    gap: 20px;

    background:
        rgba(3,12,38,0.97);

    border-radius: 12px;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.3);
}


.navigation.show {
    display: flex;
}


.mobile-menu {
    display: block;
}


.hero-content {
    left: 25px;

    top: 23%;

    width:
        calc(100% - 50px);
}


.background-title {
    font-size: 65px;

    top: -35px;
}


.main-title {
    font-size: 52px;

    letter-spacing: -2px;
}


.description {
    font-size: 16px;

    line-height: 1.65;

    margin-bottom: 30px;
}


.video-area {
    right: 30px;

    top: 52%;

    width: 145px;
    height: 145px;
}


.play-button {
    width: 60px;
    height: 60px;
}


.play-icon {
    border-top-width: 7px;

    border-bottom-width: 7px;

    border-left-width: 11px;
}


.bottom-area {
    height: 105px;

    padding:
        0 25px;
}


.property-name {
    font-size: 17px;
}


.slider-controls {
    gap: 12px;
}


.pagination {
    gap: 10px;
}


.pagination-number.active::after {
    display: none;
}


.slider-arrow {
    width: 40px;
    height: 40px;

    font-size: 22px;
}

}


@media (max-width: 500px) {

.hero {
    min-height: 680px;
}


.hero-content {
    top: 20%;
}


.eyebrow {
    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.main-title {
    font-size: 42px;
}


.description {
    font-size: 14px;
}


.background-title {
    font-size: 48px;
}


.video-area {
    width: 125px;
    height: 125px;

    top: 55%;
}


.bottom-area {
    height: 90px;
}


.property-location {
    font-size: 12px;
}


.property-name {
    font-size: 14px;
}


.pagination {
    display: none;
}

}










/* =========================================
   CITIES / PROPERTIES SECTION
========================================= */

.cities-section {
    position: relative;
    min-height: 558px;
    background: #f3f7fd;
    overflow: hidden;
    padding: 110px 0 120px;
}


/* CONTAINER */

.cities-container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 3;
}


/* HEADER */

.cities-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 10px;
}

.cities-header h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.2px;
    color: #050505;
}


/* SEE ALL BUTTON */

.see-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 54px;
    padding: 0 28px;

    border-radius: 30px;

    background: #6c5ce7;
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.see-all-btn:hover {
    background: #5b4bd6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.22);
}


/* CITY GRID */

.cities-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    column-gap: 22px;
    row-gap: 24px;
}


/* CITY CARD */

.city-card {
    position: relative;

    height: 102px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border-radius: 9px;

    text-decoration: none;

    overflow: visible;

    padding-left: 0;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.city-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(30, 50, 80, 0.10);
}


/* IMAGE */

.city-image {
    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    margin-left: -30px;

    overflow: hidden;

    border-radius: 6px;

    background: #ddd;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.city-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.city-card:hover .city-image img {
    transform: scale(1.08);
}


/* CITY TEXT */

.city-info {
    padding-left: 20px;
    padding-right: 12px;

    min-width: 0;
}

.city-info h3 {
    margin: 0 0 9px;

    color: #111111;

    font-size: 18px;
    font-weight: 600;

    line-height: 1;
}

.city-info span {
    display: inline-flex;

    align-items: center;

    min-height: 30px;

    padding: 0 12px;

    border-radius: 18px;

    background: #f0edff;

    color: #6658df;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;
}


/* =========================================
   DECORATIVE BUILDING
========================================= */

.cities-building {
    position: absolute;

    right: -25px;
    bottom: -5px;

    width: 430px;

    z-index: 1;

    pointer-events: none;

    opacity: 0.95;
}

.cities-building img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================
   LEFT DECORATIVE SHAPE
========================================= */

.cities-section::before {
    content: "";

    position: absolute;

    left: -70px;
    top: 220px;

    width: 190px;
    height: 130px;

    border: 1px solid rgba(102, 88, 223, 0.12);

    border-radius: 50%;

    transform: rotate(-25deg);

    z-index: 0;
}

.cities-section::after {
    content: "";

    position: absolute;

    left: -95px;
    top: 250px;

    width: 190px;
    height: 130px;

    border: 1px solid rgba(102, 88, 223, 0.12);

    border-radius: 50%;

    transform: rotate(-25deg);

    z-index: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .cities-container {
        width: min(900px, calc(100% - 60px));
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 35px;
    }

    .cities-building {
        width: 330px;
        opacity: 0.45;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .cities-section {
        padding: 70px 0 90px;
    }

    .cities-container {
        width: calc(100% - 35px);
    }

    .cities-header {
        display: block;
        margin-bottom: 35px;
        padding: 0;
    }

    .cities-header h2 {
        font-size: 30px;
        margin-bottom: 22px;
    }

    .see-all-btn {
        height: 48px;
        padding: 0 23px;
        font-size: 14px;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        gap: 20px;

        padding-left: 28px;
    }

    .city-card {
        width: calc(100% - 5px);
        height: 94px;
    }

    .city-image {
        width: 65px;
        height: 65px;
        flex-basis: 65px;
        margin-left: -25px;
    }

    .city-info {
        padding-left: 17px;
    }

    .city-info h3 {
        font-size: 17px;
    }

    .cities-building {
        width: 260px;
        right: -90px;
        opacity: 0.25;
    }

}



/* =========================================================
   WHY CHOOSE US - PROFESSIONAL REAL ESTATE DESIGN
========================================================= */

.why-section {
    width: 100%;
    padding: 110px 20px;
    background: #f8f8f6;
    overflow: hidden;
}

.why-container {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 90px;
}


/* =========================================================
   LEFT IMAGE AREA
========================================================= */

.why-images {
    position: relative;
    min-height: 610px;
    width: 100%;
}

.why-image {
    position: absolute;
    overflow: hidden;
    background: #ddd;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.why-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.03);
}


/* MAIN IMAGE */

.why-image-one {
    width: 72%;
    height: 470px;

    top: 0;
    left: 0;

    border-radius: 4px;
}


/* SECOND IMAGE */

.why-image-two {
    width: 56%;
    height: 320px;

    right: 0;
    bottom: 0;

    border: 12px solid #f8f8f6;
    border-radius: 4px;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   DECORATIVE BACKGROUND SHAPE
========================================================= */

.why-images::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    left: -35px;
    bottom: 20px;

    border: 1px solid rgba(176, 139, 72, 0.35);

    z-index: 0;
}

.why-images::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: 30px;
    top: -30px;

    background: rgba(176, 139, 72, 0.08);

    z-index: 0;
}


/* =========================================================
   HOUSE ICON
========================================================= */

.why-house-icon {
    position: absolute;

    width: 92px;
    height: 92px;

    left: 58%;
    top: 55%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #b08b48;

    border-radius: 50%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.14);

    z-index: 5;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.why-house-icon:hover {
    transform: translate(-50%, -50%) scale(1.08);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.18);
}

.why-house-icon svg {
    width: 48px;
    height: 48px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.why-content {
    width: 100%;
}


/* SMALL LABEL */

.why-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #b08b48;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.why-label::before {
    content: "";

    width: 38px;
    height: 1px;

    background: #b08b48;
}


/* MAIN HEADING */

.why-content h2 {
    margin: 0;

    color: #202020;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 56px);

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -1.5px;
}


/* SUBTITLE */

.why-subtitle {
    margin: 22px 0 42px;

    color: #777;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

.why-service {
    display: grid;

    grid-template-columns: 72px 1fr;

    gap: 24px;

    padding: 0 0 27px;

    margin-bottom: 27px;

    border-bottom: 1px solid #dededb;
}

.why-service:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}


/* ICON BOX */

.service-icon {
    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #b08b48;

    background: #ffffff;

    border: 1px solid #e6e0d5;

    border-radius: 50%;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.service-icon svg {
    width: 38px;
    height: 38px;
}

.why-service:hover .service-icon {
    background: #b08b48;
    color: #ffffff;

    transform: translateY(-3px);
}


/* SERVICE TITLE */

.service-content h3 {
    margin: 2px 0 8px;

    color: #242424;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    font-weight: 600;

    line-height: 1.3;
}


/* SERVICE DESCRIPTION */

.service-content p {
    margin: 0;

    color: #777;

    font-size: 14.5px;

    line-height: 1.75;

    max-width: 560px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .why-section {
        padding: 80px 25px;
    }

    .why-container {
        grid-template-columns: 1fr;

        gap: 75px;

        max-width: 760px;
    }

    .why-images {
        min-height: 580px;
    }

    .why-content h2 {
        font-size: 45px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .why-section {
        padding: 65px 18px;
    }

    .why-container {
        gap: 55px;
    }

    .why-images {
        min-height: 430px;
    }

    .why-image-one {
        width: 78%;
        height: 330px;
    }

    .why-image-two {
        width: 58%;
        height: 220px;

        border-width: 8px;
    }

    .why-house-icon {
        width: 70px;
        height: 70px;

        left: 58%;
        top: 55%;
    }

    .why-house-icon svg {
        width: 38px;
        height: 38px;
    }

    .why-images::before {
        width: 130px;
        height: 130px;

        left: -20px;
        bottom: 15px;
    }

    .why-content h2 {
        font-size: 36px;

        letter-spacing: -0.8px;
    }

    .why-subtitle {
        margin-bottom: 32px;
    }

    .why-service {
        grid-template-columns: 58px 1fr;

        gap: 16px;

        padding-bottom: 23px;
        margin-bottom: 23px;
    }

    .service-icon {
        width: 54px;
        height: 54px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.65;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 400px) {

    .why-images {
        min-height: 370px;
    }

    .why-image-one {
        height: 285px;
    }

    .why-image-two {
        height: 190px;
    }

    .why-content h2 {
        font-size: 32px;
    }

    .why-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
}








/* =========================================
   FEATURED PROPERTIES
========================================= */

.featured-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #071127;
    color: #fff;
    padding-top: 90px;
}


/* BACKGROUND */

.featured-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(4, 14, 36, 0.94),
            rgba(4, 14, 36, 0.96)
        ),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    opacity: 1;
    z-index: 0;
}

.featured-bg::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(110, 91, 255, 0.12),
            transparent 50%
        );
}


/* CONTAINER */

.featured-container {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: auto;

    padding: 0 30px 60px;
}


/* =========================================
   HEADER
========================================= */

.featured-header {
    text-align: center;
    margin-bottom: 35px;
}


.featured-label {
    color: #7664ff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}


.featured-title {
    margin: 0;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;

    font-weight: 800;
    letter-spacing: -2px;
}


.featured-title span {
    color: #7664ff;
    font-size: 0.7em;

    display: inline-block;

    margin: 0 15px;

    transition: transform 0.5s ease;
}


.featured-title:hover span:first-child {
    transform: rotate(-20deg) scale(1.2);
}


.featured-title:hover span:last-child {
    transform: rotate(20deg) scale(1.2);
}


.featured-description {
    color: #b7bfd4;

    font-size: 16px;
    line-height: 1.7;

    margin-top: 20px;
}


/* =========================================
   CAROUSEL
========================================= */

.featured-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}


.featured-carousel {
    display: flex;
    gap: 12px;

    width: 100%;

    overflow-x: auto;
    scroll-behavior: smooth;

    padding: 0 8px 10px;

    scrollbar-width: none;
}

.featured-carousel::-webkit-scrollbar {
    display: none;
}


/* =========================================
   PROPERTY CARD
========================================= */

.featured-card {
    position: relative;

    flex: 0 0 calc((100% - 48px) / 5);

    min-width: 230px;

    padding: 20px 15px 18px;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 28, 56, 0.85),
            rgba(6, 17, 40, 0.95)
        );

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        background 0.45s ease;

    overflow: hidden;
}


/* HOVER */

.featured-card:hover {
    transform: translateY(-12px);

    border-color: #7664ff;

    box-shadow:
        0 25px 50px rgba(0,0,0,0.4),
        0 0 25px rgba(118,100,255,0.15);

    background:
        linear-gradient(
            145deg,
            rgba(26, 36, 75, 0.95),
            rgba(7, 17, 40, 0.98)
        );
}


/* ACTIVE */

.featured-card.active {
    border-color: #7664ff;

    box-shadow:
        0 0 0 1px rgba(118,100,255,0.2),
        0 20px 45px rgba(0,0,0,0.35);
}


/* PROPERTY NUMBER */

.property-number {
    font-size: 42px;
    line-height: 1;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,0.25);

    font-weight: 500;

    margin-bottom: 22px;

    transition:
        color 0.4s ease,
        -webkit-text-stroke 0.4s ease;
}


.featured-card:hover .property-number,
.featured-card.active .property-number {
    color: rgba(118,100,255,0.18);

    -webkit-text-stroke: 1px #7664ff;
}


/* HEART */

.property-heart {
    position: absolute;

    top: 18px;
    right: 15px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: #fff;

    color: #7664ff;

    font-size: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.property-heart:hover {
    transform: scale(1.15) rotate(-8deg);

    background: #7664ff;
    color: #fff;
}


.property-heart.liked {
    background: #7664ff;
    color: #fff;
}


/* TITLE */

.property-title {
    min-height: 58px;

    margin: 0 0 7px;

    font-size: 20px;

    line-height: 1.35;

    font-weight: 700;

    color: #fff;
}


/* LOCATION */

.property-location {
    margin: 0 0 18px;

    min-height: 22px;

    color: #9fa9c2;

    font-size: 13px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================
   PROPERTY IMAGE
========================================= */

.property-image {
    position: relative;

    height: 225px;

    border-radius: 9px;

    overflow: hidden;

    margin-bottom: 17px;
}


.property-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}


.featured-card:hover .property-image img {
    transform: scale(1.1);

    filter: brightness(1.08);
}


/* IMAGE OVERLAY */

.property-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,12,30,0.35),
            transparent 50%
        );

    pointer-events: none;
}


/* POPULAR */

.popular-badge {
    position: absolute;

    bottom: 8px;
    left: 0;

    z-index: 2;

    padding: 8px 12px;

    background: #6d5af5;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    border-radius: 0 5px 5px 0;

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}


.featured-card:hover .popular-badge {
    padding-left: 17px;
    padding-right: 17px;
}


/* PRICE */

.property-price {
    margin-bottom: 15px;

    color: #a7afc5;

    font-size: 14px;
}


.property-price strong {
    color: #7664ff;

    font-size: 18px;
}


/* DETAILS */

.property-details {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 10px;

    color: #b5bdd0;

    font-size: 12px;
}


.property-details span {
    display: flex;
    align-items: center;
    gap: 5px;

    white-space: nowrap;
}


.property-details span:first-letter {
    color: #7664ff;
}


/* =========================================
   ARROWS
========================================= */

.featured-arrow {
    position: absolute;

    z-index: 5;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid #7664ff;

    background: rgba(5, 14, 35, 0.85);

    color: #7664ff;

    font-size: 36px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.featured-arrow:hover {
    transform: scale(1.12);

    background: #7664ff;

    color: #fff;
}


.featured-prev {
    left: -55px;
}


.featured-next {
    right: -55px;
}


/* =========================================
   DOTS
========================================= */

.featured-dots {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    margin-top: 25px;
}


.featured-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #8992a7;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.featured-dot.active {
    width: 18px;

    border-radius: 10px;

    background: #7664ff;
}


/* =========================================
   BENEFITS
========================================= */

.featured-benefits {
    position: relative;

    z-index: 2;

    background: rgba(9, 20, 47, 0.95);

    border-top: 1px solid rgba(255,255,255,0.04);

    padding: 40px 0;
}


.benefits-container {
    max-width: 1250px;

    margin: auto;

    padding: 0 25px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 45px;
}


.benefit-item {
    display: flex;

    align-items: center;

    gap: 17px;

    transition:
        transform 0.4s ease;
}


.benefit-item:hover {
    transform: translateY(-6px);
}


/* ICON */

.benefit-icon {
    flex-shrink: 0;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #6657e8,
            #5144b9
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 26px;

    box-shadow:
        0 10px 30px rgba(88,72,220,0.25);

    transition:
        transform 0.4s ease;
}


.benefit-item:hover .benefit-icon {
    transform: rotate(8deg) scale(1.1);
}


/* CONTENT */

.benefit-content h3 {
    margin: 0 0 8px;

    font-size: 15px;

    color: #fff;
}


.benefit-content p {
    margin: 0;

    color: #aab3c8;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   SCROLL REVEAL
========================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(50px)
        scale(0.97);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.2,.7,.2,1);
}


.reveal.show {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* STAGGER */

.featured-card:nth-child(1) {
    transition-delay: 0.05s;
}

.featured-card:nth-child(2) {
    transition-delay: 0.1s;
}

.featured-card:nth-child(3) {
    transition-delay: 0.15s;
}

.featured-card:nth-child(4) {
    transition-delay: 0.2s;
}

.featured-card:nth-child(5) {
    transition-delay: 0.25s;
}

.featured-card:nth-child(6) {
    transition-delay: 0.3s;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .featured-card {
        flex: 0 0 calc((100% - 36px) / 4);
    }

    .featured-prev {
        left: -15px;
    }

    .featured-next {
        right: -15px;
    }

}


@media (max-width: 900px) {

    .featured-section {
        padding-top: 70px;
    }

    .featured-card {
        flex: 0 0 calc((100% - 24px) / 3);
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

}


@media (max-width: 650px) {

    .featured-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .featured-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .featured-title span {
        margin: 0 5px;
    }

    .featured-description br {
        display: none;
    }

    .featured-card {
        flex: 0 0 82%;
    }

    .property-image {
        height: 240px;
    }

    .featured-arrow {
        width: 40px;
        height: 40px;

        font-size: 28px;
    }

    .featured-prev {
        left: 5px;
    }

    .featured-next {
        right: 5px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .featured-benefits {
        padding: 35px 0;
    }

}


@media (max-width: 450px) {

    .featured-title {
        font-size: 32px;
    }

    .featured-label {
        font-size: 15px;
    }

    .featured-card {
        flex: 0 0 88%;
    }

    .property-image {
        height: 220px;
    }

}





/* =========================================================
   STATS SECTION
   NAVY + PURPLE REAL ESTATE THEME
========================================================= */

.stats-section {
    position: relative;
    padding: 115px 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(118, 100, 238, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(118, 100, 238, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06112d 0%,
            #081536 45%,
            #0d1740 100%
        );
}


/* =========================================================
   BACKGROUND DECORATIONS
========================================================= */

.stats-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(118, 100, 238, 0.12);
}

.stats-bg-circle-1 {
    width: 520px;
    height: 520px;

    left: -300px;
    top: -240px;

    box-shadow:
        0 0 0 70px rgba(118, 100, 238, 0.025),
        0 0 0 140px rgba(118, 100, 238, 0.018),
        0 0 0 210px rgba(118, 100, 238, 0.012);
}

.stats-bg-circle-2 {
    width: 430px;
    height: 430px;

    right: -250px;
    bottom: -250px;

    box-shadow:
        0 0 0 60px rgba(118, 100, 238, 0.025),
        0 0 0 120px rgba(118, 100, 238, 0.018),
        0 0 0 180px rgba(118, 100, 238, 0.012);
}


/* =========================================================
   SUBTLE GRID
========================================================= */

.stats-bg-grid {
    position: absolute;
    inset: 0;

    opacity: 0.12;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 25%,
        black 75%,
        transparent
    );
}


/* =========================================================
   CONTAINER
========================================================= */

.stats-container {
    position: relative;
    z-index: 5;

    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 38px;

    align-items: center;
}


/* =========================================================
   STAT CARD
========================================================= */

.stat-card {
    position: relative;

    width: 245px;
    height: 245px;

    margin: 0 auto;

    border-radius: 50%;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(118, 100, 238, 0.16),
            rgba(8, 21, 54, 0.96) 60%,
            #06112d 100%
        );

    border: 1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.32),
        inset 0 0 40px rgba(118,100,238,0.04);

    isolation: isolate;

    transition:
        transform 0.55s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.55s ease,
        border-color 0.45s ease;
}


/* =========================================================
   OUTER PURPLE RING
========================================================= */

.stat-card::before {
    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 50%;

    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            rgba(118,100,238,0.05) 45deg,
            rgba(118,100,238,0.85) 95deg,
            transparent 145deg,
            transparent 225deg,
            rgba(118,100,238,0.45) 285deg,
            transparent 335deg
        );

    z-index: -2;

    opacity: 0.65;

    transition:
        transform 0.8s ease,
        opacity 0.5s ease;
}


/* =========================================================
   INNER BORDER
========================================================= */

.stat-card::after {
    content: "";

    position: absolute;

    inset: 9px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.07);

    pointer-events: none;

    z-index: 5;
}


/* =========================================================
   PROPERTY IMAGE
========================================================= */

.stat-image {
    position: absolute;

    inset: 0;

    z-index: -1;

    background-size: cover;
    background-position: center;

    transform: scale(1.02);

    opacity: 0.72;

    filter: saturate(0.85);

    transition:
        transform 0.9s cubic-bezier(.2,.8,.2,1),
        opacity 0.6s ease,
        filter 0.6s ease;
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.stat-overlay {
    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(118,100,238,0.08),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(6,17,45,0.42),
            rgba(6,17,45,0.88)
        );

    transition:
        background 0.6s ease;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.stat-featured {
    border-color: rgba(118,100,238,0.45);

    box-shadow:
        0 28px 70px rgba(0,0,0,0.42),
        0 0 40px rgba(118,100,238,0.12),
        inset 0 0 35px rgba(118,100,238,0.08);
}

.stat-featured::before {
    opacity: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.stat-content {
    position: relative;

    z-index: 3;

    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}


/* =========================================================
   ICON
========================================================= */

.stat-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(118,100,238,0.10);

    border: 1px solid rgba(118,100,238,0.30);

    backdrop-filter: blur(8px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.18),
        inset 0 0 18px rgba(118,100,238,0.06);

    transition:
        transform 0.5s ease,
        background 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}


/* =========================================================
   SVG ICON
========================================================= */

.stat-icon svg {
    width: 31px;
    height: 31px;

    fill: none;

    stroke: #9d91ff;

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.5s ease,
        stroke 0.5s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.stat-number {
    position: relative;

    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 50px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: -1px;

    margin-bottom: 13px;

    text-shadow:
        0 5px 20px rgba(0,0,0,0.30);

    transition:
        color 0.4s ease,
        transform 0.4s ease,
        text-shadow 0.4s ease;
}


/* PLUS SIGN */

.stat-number span {
    color: #9d91ff;

    font-size: 34px;

    margin-left: 2px;

    transition:
        color 0.4s ease;
}


/* =========================================================
   NUMBER UNDERLINE
========================================================= */

.stat-number::after {
    content: "";

    position: absolute;

    width: 32px;
    height: 1px;

    left: 50%;
    bottom: -7px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #7664ee,
            transparent
        );

    opacity: 0.8;
}


/* =========================================================
   TITLE
========================================================= */

.stat-title {
    max-width: 155px;

    color: rgba(255,255,255,0.70);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 1.8px;

    line-height: 1.5;

    transition:
        color 0.4s ease,
        letter-spacing 0.4s ease;
}


/* =========================================================
   HOVER
========================================================= */

.stat-card:hover {

    transform:
        translateY(-14px)
        scale(1.045);

    border-color:
        rgba(118,100,238,0.65);

    box-shadow:
        0 35px 80px rgba(0,0,0,0.48),
        0 0 45px rgba(118,100,238,0.18),
        inset 0 0 40px rgba(118,100,238,0.09);
}


.stat-card:hover::before {

    opacity: 1;

    transform: rotate(180deg);
}


.stat-card:hover .stat-image {

    transform: scale(1.13);

    opacity: 0.82;

    filter: saturate(1);
}


.stat-card:hover .stat-overlay {

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(118,100,238,0.18),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(6,17,45,0.30),
            rgba(6,17,45,0.80)
        );
}


.stat-card:hover .stat-icon {

    transform:
        translateY(-5px)
        rotate(-4deg)
        scale(1.05);

    background:
        rgba(118,100,238,0.18);

    border-color:
        rgba(157,145,255,0.60);

    box-shadow:
        0 0 28px rgba(118,100,238,0.25),
        inset 0 0 15px rgba(118,100,238,0.08);
}


.stat-card:hover .stat-icon svg {

    transform: scale(1.08);

    stroke: #b7afff;
}


.stat-card:hover .stat-number {

    color: #ffffff;

    transform: scale(1.08);

    text-shadow:
        0 0 25px rgba(157,145,255,0.25);
}


.stat-card:hover .stat-number span {

    color: #b7afff;
}


.stat-card:hover .stat-title {

    color: #ffffff;

    letter-spacing: 2.2px;
}


/* =========================================================
   FEATURED CARD EXTRA GLOW
========================================================= */

.stat-featured:hover {

    box-shadow:
        0 40px 90px rgba(0,0,0,0.52),
        0 0 60px rgba(118,100,238,0.22),
        inset 0 0 45px rgba(118,100,238,0.10);
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .stats-section {
        padding: 100px 20px;
    }

    .stats-container {

        grid-template-columns:
            repeat(2, 1fr);

        max-width: 650px;

        gap: 55px 45px;
    }

}


/* =========================================================
   RESPONSIVE - 700px
========================================================= */

@media (max-width: 700px) {

    .stats-section {
        padding: 85px 15px;
    }

    .stats-container {

        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 400px;
    }

}


/* =========================================================
   RESPONSIVE - 500px
========================================================= */

@media (max-width: 500px) {

    .stats-section {
        padding: 70px 15px;
    }

    .stat-card {

        width: 225px;
        height: 225px;
    }

    .stat-icon {

        width: 51px;
        height: 51px;

        margin-bottom: 13px;
    }

    .stat-icon svg {

        width: 28px;
        height: 28px;
    }

    .stat-number {

        font-size: 44px;

        margin-bottom: 12px;
    }

    .stat-number span {

        font-size: 30px;
    }

    .stat-title {

        font-size: 10px;

        letter-spacing: 1.6px;

        max-width: 145px;
    }

}


/* =========================================================
   RESPONSIVE - 380px
========================================================= */

@media (max-width: 380px) {

    .stat-card {

        width: 210px;
        height: 210px;
    }

    .stat-number {

        font-size: 41px;
    }

    .stat-title {

        font-size: 9px;

        letter-spacing: 1.4px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stat-card,
    .stat-card::before,
    .stat-image,
    .stat-overlay,
    .stat-icon,
    .stat-icon svg,
    .stat-number,
    .stat-number span,
    .stat-title {

        transition: none !important;
    }

}


/* =========================================
   TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    position: relative;
    width: 100%;
    min-height: 760px;
    overflow: hidden;
    background: #101a3d;
    color: #fff;
    box-sizing: border-box;
}

.testimonials-section *,
.testimonials-section *::before,
.testimonials-section *::after {
    box-sizing: border-box;
}


/* =========================================
   BACKGROUND
========================================= */

.testimonials-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(8, 17, 48, 0.96),
            rgba(12, 24, 59, 0.96)
        );

    z-index: 0;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.testimonials-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1500px;
    min-height: 760px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 48% 52%;

    align-items: center;
}


/* =========================================
   LEFT IMAGE
========================================= */

.testimonial-image-wrap {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    overflow: visible;
}


.testimonial-image-circle {
    position: relative;

    width: 850px;
    height: 760px;

    margin-left: -110px;

    overflow: hidden;

    border-radius: 0 48% 48% 0;
}


.testimonial-image-circle img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.testimonials-content {
    width: 100%;
    min-width: 0;

    padding: 70px 30px 70px 40px;
}


.testimonial-label {
    color: #7564ff;

    font-size: 16px;
    font-weight: 700;

    margin-bottom: 14px;
}


.testimonials-content h2 {
    margin: 0 0 48px;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}


/* =========================================
   SLIDER
========================================= */

.testimonial-slider {
    position: relative;

    width: 100%;
    max-width: 100%;

    display: flex;
    gap: 28px;

    overflow: hidden;

    scroll-behavior: smooth;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    flex: 0 0 700px;

    width: 700px;
    max-width: 100%;

    min-height: 270px;

    padding: 48px 48px 42px;

    background: #fff;

    border-radius: 16px;

    color: #111827;

    border-top: 3px solid #6857ff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.18);
}


/* =========================================
   CARD TOP
========================================= */

.testimonial-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 30px;
}


/* =========================================
   CLIENT
========================================= */

.client-info {
    display: flex;
    align-items: center;

    gap: 20px;

    min-width: 0;
}


.client-avatar {
    width: 96px;
    height: 96px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;

    background: #eee;
}


.client-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.client-info h3 {
    margin: 0 0 5px;

    font-size: 19px;
    font-weight: 800;

    line-height: 1.25;
}


.client-info span {
    display: block;

    font-size: 15px;

    color: #8a8f9c;

    margin-bottom: 8px;

    line-height: 1.4;
}


/* =========================================
   STARS
========================================= */

.testimonial-stars {
    color: #ff9d00;

    font-size: 19px;

    letter-spacing: 1px;

    white-space: nowrap;
}


/* =========================================
   QUOTE
========================================= */

.quote-icon {
    color: #6656ed;

    font-family: Georgia, serif;

    font-size: 90px;

    font-weight: 900;

    line-height: 0.7;

    opacity: 0.95;

    flex-shrink: 0;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-text {
    margin: 0;

    max-width: 620px;

    font-size: 16px;

    line-height: 1.7;

    color: #202534;

    overflow-wrap: break-word;
}


/* =========================================
   DOTS
========================================= */

.testimonial-dots {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 55px;
}


.testimonial-dot {
    width: 50px;
    height: 2px;

    border: 0;

    background: rgba(255, 255, 255, 0.65);

    cursor: pointer;

    padding: 0;

    transition: 0.3s;
}


.testimonial-dot.active {
    background: #6656ff;

    width: 50px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

    .testimonials-container {
        grid-template-columns: 44% 56%;
    }


    .testimonial-image-circle {
        width: 700px;
        height: 680px;

        margin-left: -180px;

        border-radius: 0 48% 48% 0;
    }


    .testimonials-content {
        padding-left: 30px;
        padding-right: 25px;
    }


    .testimonials-content h2 {
        font-size: 38px;
    }


    .testimonial-card {
        flex-basis: 100%;
        width: 100%;

        padding: 40px 35px;
    }
}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 900px) {

    .testimonials-section {
        min-height: auto;
    }


    .testimonials-container {
        width: 100%;
        min-height: auto;

        display: grid;
        grid-template-columns: 1fr;

        padding: 0 25px 70px;
    }


    /* IMAGE */

    .testimonial-image-wrap {
        width: 100%;

        height: 430px;

        margin-bottom: 50px;

        overflow: hidden;

        justify-content: flex-start;
    }


    .testimonial-image-circle {
        width: 85%;
        height: 430px;

        margin-left: -60px;

        border-radius: 0 45% 45% 0;
    }


    /* CONTENT */

    .testimonials-content {
        width: 100%;

        padding: 0;

        min-width: 0;
    }


    .testimonials-content h2 {
        font-size: 38px;

        margin-bottom: 35px;
    }


    /* SLIDER */

    .testimonial-slider {
        width: 100%;
        max-width: 100%;
    }


    .testimonial-card {
        flex: 0 0 100%;

        width: 100%;
        max-width: 100%;

        min-height: auto;

        padding: 35px 30px;
    }


    .testimonial-text {
        max-width: 100%;
    }


    .testimonial-dots {
        margin-top: 35px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .testimonials-section {
        width: 100%;

        min-height: auto;

        overflow: hidden;
    }


    /* CONTAINER */

    .testimonials-container {
        width: 100%;

        padding: 0 16px 55px;

        overflow: hidden;
    }


    /* =====================================
       IMAGE
    ===================================== */

    .testimonial-image-wrap {
        width: 100%;
        height: 300px;

        margin-bottom: 38px;

        overflow: hidden;
    }


    .testimonial-image-circle {
        width: calc(100% + 55px);
        height: 300px;

        margin-left: -55px;

        border-radius: 0 42% 42% 0;
    }


    .testimonial-image-circle img {
        object-position: center;
    }


    /* =====================================
       CONTENT
    ===================================== */

    .testimonials-content {
        width: 100%;

        padding: 0;
    }


    .testimonial-label {
        font-size: 14px;

        margin-bottom: 10px;
    }


    .testimonials-content h2 {
        font-size: 30px;

        line-height: 1.2;

        letter-spacing: -0.5px;

        margin-bottom: 28px;
    }


    /* =====================================
       SLIDER
    ===================================== */

    .testimonial-slider {
        width: 100%;

        display: flex;

        gap: 0;

        overflow: hidden;
    }


    /* =====================================
       CARD
    ===================================== */

    .testimonial-card {
        flex: 0 0 100%;

        width: 100%;
        max-width: 100%;

        min-height: auto;

        padding: 26px 20px 25px;

        border-radius: 14px;

        border-top-width: 3px;
    }


    /* =====================================
       CARD HEADER
    ===================================== */

    .testimonial-top {
        width: 100%;

        display: flex;

        align-items: flex-start;

        gap: 10px;

        margin-bottom: 22px;
    }


    /* =====================================
       CLIENT
    ===================================== */

    .client-info {
        min-width: 0;

        flex: 1;

        gap: 12px;
    }


    .client-avatar {
        width: 62px;
        height: 62px;
    }


    .client-info h3 {
        font-size: 15px;

        margin-bottom: 3px;

        line-height: 1.25;
    }


    .client-info span {
        font-size: 12px;

        margin-bottom: 5px;

        line-height: 1.3;
    }


    /* =====================================
       STARS
    ===================================== */

    .testimonial-stars {
        font-size: 13px;

        letter-spacing: 0.5px;
    }


    /* =====================================
       QUOTE
    ===================================== */

    .quote-icon {
        font-size: 55px;

        line-height: 0.7;

        margin-top: 3px;
    }


    /* =====================================
       TEXT
    ===================================== */

    .testimonial-text {
        width: 100%;

        max-width: 100%;

        font-size: 14px;

        line-height: 1.65;

        overflow-wrap: anywhere;
    }


    /* =====================================
       DOTS
    ===================================== */

    .testimonial-dots {
        gap: 12px;

        margin-top: 28px;
    }


    .testimonial-dot,
    .testimonial-dot.active {
        width: 35px;

        height: 2px;
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .testimonials-container {
        padding-left: 12px;
        padding-right: 12px;
    }


    .testimonial-image-wrap {
        height: 260px;
    }


    .testimonial-image-circle {
        height: 260px;

        width: calc(100% + 45px);

        margin-left: -45px;
    }


    .testimonials-content h2 {
        font-size: 27px;
    }


    .testimonial-card {
        padding: 23px 17px;
    }


    .client-avatar {
        width: 55px;
        height: 55px;
    }


    .client-info {
        gap: 10px;
    }


    .client-info h3 {
        font-size: 14px;
    }


    .client-info span {
        font-size: 11px;
    }


    .testimonial-stars {
        font-size: 12px;
    }


    .quote-icon {
        font-size: 48px;
    }


    .testimonial-text {
        font-size: 13px;
    }
}


/* =========================================
   EXTRA SAFETY AGAINST PAGE OVERFLOW
========================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}