/* ==========================================================
   COMPONENTS.CSS
   Navbar, Hero, About, Range, Why Us, Vision, Features,
   Projects, Testimonials, Footer, Newsletter, Swiper
   ========================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 30, 0.35);
    pointer-events: none;
    z-index: 1;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px;
    z-index: 5;
}

.navbar .logo {
    color: #fff;

    font-weight: 800;
    letter-spacing: 1px;
}

.navbar .logo img {
    width: 200px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 28px;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 24px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar .right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar .phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 14px;
}

.navbar .book {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

/* ===== Mobile menu toggle ===== */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
}

.navbar__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform .3s ease, opacity .3s ease;
}

.navbar.is-open .navbar__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .navbar__toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .navbar__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-content {
    position: absolute;
    left: 40px;
    top: 46%;
    transform: translateY(-50%);
    max-width: 800px;

    z-index: 2;
}

.hero-content h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    margin: 40px 0;
}

.hero-content p {
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 26px;
}

.hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.35);
    padding: 8px 16px;
    border-radius: 20px;
}

.logo img {
    filter: brightness(0) invert(1);
}

/* ===== About section ===== */
.about-sec {
    background: #F8F8F8;
    padding: 90px 0;
}

.about-sec .about-img {
    border-radius: 10px;
   
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.about-sec .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-sec .eyebrow {
    color: #8f8e8e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-sec h2 {
    color: #1C1C1C;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 22px;
}

.about-sec p.lead-text {
    color: #434343;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-sec .divider {
    border-top: 1px solid #C9C9C9;
    margin: 26px 0;
}

.about-sec .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
    column-gap: 20px;
}

.about-sec .feature-list .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1C1C1C;
    font-weight: 600;
    font-size: 15.5px;
}

.about-sec .feature-list .feature-item .icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #8f8e8e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.about-sec .about-cta-bar {
    margin-top: 34px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgba(18, 20, 17, 0.92) 0%, rgba(18, 20, 17, 0.55) 60%, rgba(18, 20, 17, 0.35) 100%), url('assets/images/about-unit.jpg') center/cover;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.about-sec .about-cta-bar .btn-know-more {
    background: #8f8e8e;
    color: #fff;
    border: none;
    padding: 15px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    white-space: nowrap;
}

.about-sec .about-cta-bar .btn-know-more:hover {
    background: #2B2B2B;
    color: #fff;
}

.about-sec .about-cta-bar .view-reels {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
}

.about-sec .about-cta-bar .view-reels .play-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #1C1C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* =========================================
   OUR VISION & MISSION
========================================= */

.vision-section {
    padding: 110px 20px;
    background: #F8F8F8;
}

.vision-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   SECTION HEADING
========================================= */

.vision-section__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 65px;
}

.vision-section__eyebrow {
    display: inline-block;
    margin-bottom: 16px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #8f8e8e;
}

.vision-section__title {
    margin: 0;

    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;

    color: #1C1C1C;
}

.vision-section__title span {
    color: #8f8e8e;
}

.vision-section__intro {
    max-width: 650px;
    margin: 22px auto 0;

    font-size: 17px;
    line-height: 1.7;

    color: #434343;
}

/* =========================================
   GRID
========================================= */

.vision-section__grid {
    /* Bootstrap .row.g-4 now provides the 3-column grid (see index.php) */
}

/* =========================================
   CARD
========================================= */

.vision-card {
    position: relative;
    min-height: 500px;

    overflow: hidden;
    border-radius: 8px;

    background: #fff;

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

/* =========================================
   CARD IMAGE
========================================= */

.vision-card__image {
    position: absolute;
    inset: 0;

    background-image: var(--card-image);
    background-size: cover;
    background-position: center;

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity .45s ease,
        transform .7s ease;
}

/* =========================================
   DARK IMAGE OVERLAY
========================================= */

.vision-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .25) 0%,
            rgba(0, 0, 0, .55) 55%,
            rgba(0, 0, 0, .82) 100%);

    opacity: 0;

    transition: opacity .45s ease;
}

/* =========================================
   CENTER CARD IMAGE DEFAULT
========================================= */

.vision-card.is-active .vision-card__image {
    opacity: 1;
    transform: scale(1);
}

.vision-card.is-active .vision-card__overlay {
    opacity: 1;
}

/* =========================================
   CARD CONTENT
========================================= */

.vision-card__content {
    position: relative;
    z-index: 2;

    height: 100%;
    min-height: 500px;

    padding: 42px 36px;

    display: flex;
    flex-direction: column;
}

/* =========================================
   NUMBER
========================================= */

.vision-card__num {
    font-size: 52px;
    line-height: 1;

    font-weight: 700;

    color: transparent;

    -webkit-text-stroke: 1.3px #cfcfcf;

    transition:
        color .35s ease,
        -webkit-text-stroke .35s ease;
}

/* =========================================
   BOTTOM CONTENT
========================================= */

.vision-card__bottom {
    margin-top: auto;
}

/* =========================================
   TITLE
========================================= */

.vision-card__title {
    margin: 0 0 18px;

    font-size: 25px;
    line-height: 1.25;
    font-weight: 650;

    color: #1C1C1C;

    transition: color .35s ease;
}

/* =========================================
   LINE
========================================= */

.vision-card__line {
    width: 100%;
    height: 1px;

    margin-bottom: 24px;

    background: #C9C9C9;

    transition: background .35s ease;
}

/* =========================================
   TEXT
========================================= */

.vision-card__text {
    margin: 0;

    font-size: 17px;
    line-height: 1.75;

    color: #434343;

    transition: color .35s ease;
}

/* =========================================
   ICON
========================================= */

.vision-card__icon {
    width: 48px;
    height: 48px;

    margin-top: 28px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-card__icon svg {
    width: 34px;
    height: 34px;

    stroke: #1C1C1C;

    transition: stroke .35s ease;
}

/* =========================================
   HOVER IMAGE
========================================= */

.vision-card:hover .vision-card__image {
    opacity: 1;
    transform: scale(1);
}

.vision-card:hover .vision-card__overlay {
    opacity: 1;
}

/* =========================================
   HOVER CONTENT
========================================= */

.vision-card:hover .vision-card__num,
.vision-card.is-active .vision-card__num {
    -webkit-text-stroke: 1.3px rgba(255, 255, 255, .9);
}

.vision-card:hover .vision-card__title,
.vision-card.is-active .vision-card__title {
    color: #fff;
}

.vision-card:hover .vision-card__line,
.vision-card.is-active .vision-card__line {
    background: rgba(255, 255, 255, .3);
}

.vision-card:hover .vision-card__text,
.vision-card.is-active .vision-card__text {
    color: rgba(255, 255, 255, .88);
}

.vision-card:hover .vision-card__icon svg,
.vision-card.is-active .vision-card__icon svg {
    stroke: #fff;
}

/* =========================================
   HOVER LIFT
========================================= */

.vision-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, .15);
}

/* =========================================
   TABLET
========================================= */

/* =========================================
   MOBILE
========================================= */

/* =========================================
   MAIN FEATURES
========================================= */
.features-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    background: #ffffff;
}

/* Shape background */
/* .features-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("assets/shape.png");
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;

    opacity: 0.1;

    pointer-events: none;
} */

/* Content ko shape ke upar rakho */
.features-container {
    position: relative;
    z-index: 2;
    padding: 100px 60px 100px 100px;
}

/* =========================================
   HEADING
========================================= */

.features-heading {
    max-width: 850px;
    /* margin: 0 auto 65px; */

}

.features-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: #3A3A3A;
}

.features-title {
    margin: 0;

    font-family: 'Playfair Display', serif;

    font-size: 48px;
    line-height: 1.15;
    font-weight: 500;

    color: #111111;
}

.features-description {
    max-width: 700px;

    font-size: 17px;
    line-height: 1.7;

    color: #626262;
}

/* =========================================
   GRID
========================================= */

.features-grid {
    display: grid;

    grid-template-columns: repeat(6, 0.8fr);
    padding: 20px;
    border-radius: 20px;
    width: fit-content;
    background-color: #626262;
    gap: 20px;
}

/* =========================================
   FEATURE ITEM
========================================= */

.features-section .feature-item {

    width: 200px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #F5F5F5;
    border-radius: 10px;

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

/* =========================================
   ICON
========================================= */

.features-section .feature-icon {
    width: 78px;
    height: 78px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #3A3A3A;
}

.features-section .feature-icon svg {
    width: 68px;
    height: 68px;
}

/* =========================================
   TITLE
========================================= */

.features-section .feature-item h3 {
    margin: 0;

    font-family: 'Playfair Display', serif;

    font-size: 25px;
    line-height: 1.25;
    font-weight: 500;

    color: #111111;
}

/* =========================================
   HOVER
========================================= */

.feature-item:hover {
    background: #EFEFEF;

    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .07);
}

.feature-item:hover .feature-icon {
    color: #2B2B2B;
}

/* =========================================
   TABLET
========================================= */

/* =========================================
   MOBILE
========================================= */

/* =========================================================
   WHY US - PREMIUM SECTION
========================================================= */

.why-us {
    position: relative;

    padding: 110px 20px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.78)),
        url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Subtle background glow */
.why-us::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: 10%;
    background: #8f8e8e;
    opacity: 0.06;
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.why-us::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: 5%;
    background: #8f8e8e;
    opacity: 0.05;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

/* =========================================================
   INNER
========================================================= */

.why-us__inner {
    position: relative;
    z-index: 2;

    max-width: 1300px;
    margin: 0 auto;
    /* Bootstrap .row.g-4 now provides the 2-column layout (see index.php);
       .why-us__left keeps position: sticky below, a design-specific behaviour
       Bootstrap's grid does not provide. */
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.why-us__left {
    position: sticky;
    top: 50px;
    padding-top: 5px;
}

.why-us__eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #8f8e8e;
    margin-bottom: 20px;
}

/* Small line before eyebrow */
.why-us__eyebrow::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #8f8e8e;
    display: inline-block;
}

/* Heading */

.why-us__title {
    max-width: 650px;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;

    letter-spacing: -1px;

    color: #fff;

    margin: 0 0 28px;
}

/* Paragraph */

.why-us__text {
    max-width: 650px;

    font-size: 15px;
    line-height: 1.9;

    color: rgba(255, 255, 255, 0.68);

    margin: 0 0 22px;
}

/* =========================================================
   BUTTON
========================================================= */

.why-us__btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 15px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #1C1C1C;
    background: #8f8e8e;

    padding: 16px 30px;

    border-radius: 3px;

    text-decoration: none;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.why-us__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.2);

    transform: skewX(-20deg);

    transition: left 0.5s ease;
}

.why-us__btn:hover::before {
    left: 100%;
}

.why-us__btn:hover {
    transform: translateY(-3px);

    background: #fff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 255, 255, 0.08);
}

.why-us__btn svg {
    position: relative;
    z-index: 2;

    width: 17px;
    height: 17px;

    stroke: currentColor;

    transition: transform 0.35s ease;
}

.why-us__btn:hover svg {
    transform: translateX(5px);
}

/* =========================================================
   RIGHT CARDS
========================================================= */

.why-us__cards {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

/* Card */

.why-us__card {
    position: relative;
    overflow: hidden;

    background: rgba(18, 18, 18, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 8px;

    padding: 30px 30px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Left accent line */

.why-us__card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: #8f8e8e;

    transition: height 0.4s ease;
}

/* Hover */

.why-us__card:hover {
    transform: translateX(7px);

    background: rgba(35, 35, 35, 0.92);

    border-color: rgba(255, 255, 255, 0.18);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        inset 0 0 30px rgba(255, 255, 255, 0.015);
}

.why-us__card:hover::before {
    height: 100%;
}

/* =========================================================
   CARD TOP
========================================================= */

.why-us__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

/* Number */

.why-us__num {
    font-size: 50px;
    line-height: 1;

    font-weight: 700;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);

    transition:
        color 0.35s ease,
        -webkit-text-stroke 0.35s ease,
        transform 0.35s ease;
}

.why-us__card:hover .why-us__num {
    color: #8f8e8e;

    -webkit-text-stroke: 0;

    transform: translateX(3px);
}

/* =========================================================
   ICON
========================================================= */

.why-us__icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.09);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.why-us__icon svg {
    width: 27px;
    height: 27px;

    stroke: #8f8e8e;

    transition: transform 0.35s ease;
}

.why-us__card:hover .why-us__icon {
    background: #8f8e8e;

    border-color: #8f8e8e;

    transform: rotate(5deg);
}

.why-us__card:hover .why-us__icon svg {
    stroke: #1C1C1C;

    transform: scale(1.08);
}

/* =========================================================
   CARD TITLE
========================================================= */

.why-us__card-title {
    position: relative;

    font-size: 20px;
    font-weight: 650;

    line-height: 1.35;

    color: #fff;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    margin: 0 0 15px;
}

/* =========================================================
   CARD TEXT
========================================================= */

.why-us__card-text {
    font-size: 14px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.58);

    margin: 0;

    transition: color 0.35s ease;
}

.why-us__card:hover .why-us__card-text {
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   TABLET
========================================================= */

/* =========================================================
   MOBILE
========================================================= */

/* =========================================================
   SMALL MOBILE
========================================================= */

/* =========================================================
   REDUCED MOTION
========================================================= */

.projects {
    padding: 90px 0 110px;
    background: #F8F8F8;
    overflow: hidden;
}

.projects__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.projects__title {
    font-size: 46px;
    font-weight: 600;
    color: #1C1C1C;
    line-height: 1.2;
}

.projects__title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.5em;
    color: #8f8e8e;
    padding: 0 6px;
    vertical-align: middle;
}

.projects__subtitle {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #434343;
}

/* SWIPER */
.projects__stage {
    position: relative;
}

.projects__slider {
    width: 100%;
    padding: 40px 0 0;
}

.projects__slider .swiper-slide {
    width: 72%;
    max-width: 960px;
    opacity: .35;
    filter: blur(1px);
    transition: opacity .5s ease, filter .5s ease;
}

.projects__slider .swiper-slide-active {
    opacity: 1;
    filter: blur(0);
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
    background: #F8F8F8;
    transform: scale(.92) translateY(0);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0);
    transition: transform .6s cubic-bezier(.25, .8, .25, 1), box-shadow .6s ease;
    will-change: transform;
}

.swiper-slide-active {
    z-index: 3;
}

.swiper-slide-active .project-card {
    transform: scale(1) translateY(-22px);

}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-card__badge {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(28, 28, 28, .85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card__badge svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

.project-card__info {
    position: absolute;
    left: 40px;
    width: 300px;
    top: 50%;
    background: #fff;
    padding: 30px 32px 34px;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .14);
    z-index: 5;
    transition: left .6s cubic-bezier(.25, .8, .25, 1), top .6s cubic-bezier(.25, .8, .25, 1), opacity .25s ease, transform .25s ease;
}

.project-card__info.is-fading .project-card__eyebrow,
.project-card__info.is-fading .project-card__title,
.project-card__info.is-fading .project-card__btn {
    opacity: 0;
    transform: translateY(6px);
}

.project-card__eyebrow,
.project-card__title,
.project-card__btn {
    transition: opacity .25s ease, transform .25s ease;
}

.project-card__eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8f8e8e;
    margin-bottom: 12px;
}

.project-card__title {
    font-size: 26px;
    font-weight: 600;
    color: #1C1C1C;
    line-height: 1.25;
    margin-bottom: 20px;
}

.project-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8f8e8e;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background .3s ease, transform .3s ease;
}

.project-card__btn svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    transition: transform .3s ease;
}

.project-card__btn:hover {
    transform: translateX(2px);
}

.project-card__btn:hover svg {
    transform: translateX(3px);
}

/* NAV + COUNTER */
.projects__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 40px;
}

.projects__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #C9C9C9;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease;
}

.projects__arrow svg {
    width: 17px;
    height: 17px;
    stroke: #1C1C1C;
    transition: stroke .3s ease;
}

.projects__arrow:hover {
    background: #8f8e8e;
    border-color: #8f8e8e;
}

.projects__arrow:hover svg {
    stroke: #fff;
}

.projects__count {
    font-size: 16px;
    color: #1C1C1C;
    font-weight: 600;
    letter-spacing: .5px;
}

.projects__count .total {
    color: #8f8e8e;
    font-weight: 400;
}

.range {
    padding: 90px 40px 110px;

}

.range__head {
    text-align: center;
    margin-bottom: 50px;
}

.range__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 40px;
    color: #1C1C1C;
}

.range__grid {
    max-width: 1400px;
    margin: 0 auto;
}

.room-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3.4 / 5;
    cursor: pointer;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.room-card:hover img {
    transform: scale(1.06);
}

.room-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, 0) 65%);
}

.room-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border: 1px solid rgba(255, 255, 255, .7);
    padding: 16px 10px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.room-card__front {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 26px;
    transition: opacity .35s ease, transform .35s ease;
}

.room-card__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    line-height: 1.25;
}

/* HOVER PANEL (BACK) */
.room-card__back {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .88);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .4s ease, transform .4s ease;
}

.room-card:hover .room-card__front {
    opacity: 0;
    transform: translateY(10px);
}

.room-card:hover .room-card__back {
    opacity: 1;
    transform: translateY(0);
}

.room-card__back-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.room-card__back-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 26px;
}

.room-card__btn {
    display: inline-block;
    align-self: flex-start;
    background: #8f8e8e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 3px;
    text-decoration: none;
    transition: background .3s ease;
}

.room-card__btn:hover {
    background: #111111;
}

.footer {
    position: relative;
    padding: 90px 60px 0;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .97) 0%, rgba(0, 0, 0, .93) 45%, rgba(0, 0, 0, .75) 100%);
    z-index: -1;
}

.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* NEWSLETTER CARD */
.newsletter {
    background: linear-gradient(120deg, #8f8e8e, #8f8e8e);
    border-radius: 18px;
    padding: 44px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.newsletter__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 34px;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter__text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    max-width: 380px;
}

.newsletter__form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 6px 6px 6px 24px;
    flex: 1 1 460px;
    max-width: 560px;
    gap: 12px;
}

.newsletter__form svg {
    width: 18px;
    height: 18px;
    stroke: #8f8e8e;
    flex-shrink: 0;
}

.newsletter__form input {
    border: none;
    outline: none;
    flex: 1;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    padding: 12px 0;
    color: #1C1C1C;
    background: transparent;
}

.newsletter__form input::placeholder {
    color: #9a9a9a;
}

.newsletter__btn {
    border: none;
    cursor: pointer;
    background: #1C1C1C;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background .3s ease;
}

.newsletter__btn:hover {
    background: #8f8e8e;
}

/* COLUMNS */
.footer__cols {
    /* Bootstrap .row.g-4 now provides the column layout (see index.php) */
    padding: 80px 0 60px;
}

.footer__col-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
}

.footer__rule {
    width: 46px;
    height: 2px;
    background: #4A4A4A;
    position: relative;
    margin-bottom: 26px;
}

.footer__rule::before {
    content: '';
    position: absolute;
    left: -12px;
    top: -1px;
    width: 6px;
    height: 4px;
    background: #4A4A4A;
}

.footer__text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .6);
    max-width: 260px;
}

.footer__list {
    list-style: none;
}

.footer__list li+li {
    margin-top: 16px;
}

.footer__list a {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .3s ease;
}

.footer__list a:hover {
    color: #8f8e8e;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
}

.footer__row+.footer__row {
    margin-top: 20px;
}

.footer__row span:last-child {
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .75);
}

.footer__contact li+li {
    margin-top: 18px;
}

.footer__contact svg {
    width: 16px;
    height: 16px;
    stroke: #4A4A4A;
    flex-shrink: 0;
    margin-top: 3px;
}

/* BOTTOM BAR */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    transition: color .3s ease;
}

.footer__social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer__social a:hover {
    color: #8f8e8e;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
}

.footer__legal a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .3s ease;
}

.footer__legal a:hover {
    color: #8f8e8e;
}

.footer__copy {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
}

.footer__copy span {
    color: #8f8e8e;
}

/* WORDMARK */
.footer__brand {
    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer__brand-logo img {
    display: inline-flex;
    align-items: center;
    width: 400px;
}

.footer__brand-icon span {
    background: #fff;
    border-radius: 2px;
}

.testi {
    padding: 90px 40px 120px;
    background: #F8F8F8;
}

.testi__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.testi__head {
    /* Bootstrap .row.g-4.align-items-end now provides the 2-column layout (see index.php) */
    margin-bottom: 50px;
}

.testi__eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8f8e8e;
    margin-bottom: 16px;
}

.testi__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1C1C1C;
    max-width: 480px;
}

.testi__desc {
    font-size: 15px;
    line-height: 1.8;
    color: #434343;
    max-width: 460px;
}

/* STAGE */
.testi__stage {
    position: relative;
}

.testi__icon-panel {
    width: 100%;
    max-height: 500px;
    max-width: 80%;
    overflow: hidden;

    /* background: #F8F8F8; */
    /* border: 1px solid #CBCCCF; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi__icon-panel img {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* SWIPER CARD */
.testi__slider {
    position: absolute;
    right: 0;
    bottom: -60px;
    width: 58%;
    max-width: 740px;
    z-index: 5;
}

.testi-card {
    position: relative;
    background: #1C1C1C;
    color: #fff;
    padding: 46px 54px 40px;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testi-card__accent {
    position: absolute;
    top: -18px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #8f8e8e;
}

.testi-card__text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px;
}

.testi-card__name {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.testi-card__role {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
}

.testi-card__meta {
    font-size: 13px;
    color: #8f8e8e;
    margin-top: 2px;
}

.testi-card__quote {
    position: absolute;
    right: 40px;
    bottom: 30px;
    width: 44px;
    height: 34px;
    stroke: none;
    fill: rgba(255, 255, 255, .15);
}

/* NAV */
.testi__nav {
    margin-top: 110px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 640px;
}

.testi__rule {
    flex: 1;
    height: 1px;
    background: #C9C9C9;
}

.testi__arrow {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .3s ease, border-color .3s ease;
}

.testi__prev {
    background: #F8F8F8;
    border: 1px solid #CBCCCF;
}

.testi__next {
    background: #8f8e8e;
}

.testi__arrow svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.testi__prev svg {
    stroke: #1C1C1C;
}

.testi__next svg {
    stroke: #fff;
}

.testi__prev:hover {
    background: #8f8e8e;
    border-color: #8f8e8e;
}

.testi__prev:hover svg {
    stroke: #fff;
}

.testi__next:hover {
    background: #8f8e8e;
}

   .breadcrumb {
        position: relative;
        min-height: 380px;
        display: flex;
        align-items: center;
        background-image: url('/../assets/breadcrumb.png');
        background-size: cover;
        background-position: center;
        isolation: isolate;
    }

    .breadcrumb::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(20, 18, 16, .55);
        z-index: -1;
    }

    .breadcrumb__inner {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 40px;
        width: 100%;
    }

    .breadcrumb__eyebrow {
        display: block;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 18px;
    }

    .breadcrumb__title {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        font-size: 56px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 22px;
    }

    .breadcrumb__trail {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(255,255,255,.75);
    }

    .breadcrumb__trail a {
        color: rgba(255,255,255,.75);
        text-decoration: none;
        transition: color .3s ease;
    }

    .breadcrumb__trail a:hover { color: var(--gold); }

    .breadcrumb__trail span.sep {
        color: var(--gold);
        font-size: 12px;
    }

    .breadcrumb__trail span.current {
        color: var(--gold);
    }


 .stats {
        position: relative;
        background-image: url('/../assets/stats.png');
        background-size: cover;
        background-position: center;
        padding: 80px 40px;
        isolation: isolate;
    }

    .stats::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(10, 10, 10, .82);
        z-index: -1;
    }

    .stats__inner {
        max-width: 1300px;
        margin: 0 auto;
    }

    .stats__head {
        text-align: center;
        margin-bottom: 56px;
    }

    .stats__eyebrow {
        display: block;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--tw-accent);
        margin-bottom: 14px;
    }

    .stats__title {
        font-size: 34px;
        font-weight: 700;
        color: var(--white);
    }

    .stats__row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .stats__item {
        position: relative;
        text-align: center;
        padding: 0 20px;
    }

    .stats__item + .stats__item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        bottom: 6px;
        width: 1px;
        background: rgba(255,255,255,.15);
    }

    .stats__number {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
        font-size: 56px;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        margin-bottom: 16px;
    }

    .stats__suffix {
        color: var(--text-2);
        font-size: 56px;
        font-weight: 800;
    }

    .stats__label {
        font-size: 15px;
        color: rgba(255,255,255,.6);
    }

          /* ===== CONTACT ===== */
        .contact {
            padding: 90px 40px 20px;
        }

        .contact__head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 50px;
        }

        .contact__eyebrow {
            display: block;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--theme);
            margin-bottom: 14px;
        }

        .contact__title {
            font-size: 40px;
            font-weight: 700;
            color: var(--header);
        }

        .contact__grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 28px;
            align-items: start;
        }

        .card {
            background: var(--bg-3);
            border: 1px solid var(--border-2);
            border-radius: 8px;
            padding: 40px;
        }

        .card+.card {
            margin-top: 28px;
        }

        .card__title {
            font-size: 24px;
            font-weight: 700;
            color: var(--header);
            margin-bottom: 18px;
        }

        .card__text {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 26px;
        }

        .info-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .info-row+.info-row {
            margin-top: 22px;
        }

        .info-label {
            font-size: 15px;
            font-weight: 600;
            color: var(--header);
            margin-bottom: 6px;
        }

        .info-value {
            font-size: 14px;
            color: var(--text);
            text-decoration: none;
            transition: color .3s ease;
        }

        .info-value:hover {
            color: var(--text-2);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: var(--text);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-2);
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-row span:last-child {
            color: var(--header);
            font-weight: 500;
        }

        /* FORM */
        .form-group {
            margin-bottom: 22px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .5px;
            text-transform: uppercase;
            color: var(--header);
            margin-bottom: 10px;
        }

        input,
        select,
        textarea {
            width: 100%;
            border: 1px solid var(--border-2);
            background: var(--white);
            border-radius: 4px;
            padding: 14px 16px;
            font-family: 'Poppins', Arial, sans-serif;
            font-size: 14px;
            color: var(--header);
            outline: none;
            transition: border-color .3s ease;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--text-2);
        }

        input::placeholder,
        textarea::placeholder {
            color: #9a9a9a;
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            border: none;
            cursor: pointer;
            background: var(--header);
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            padding: 16px 34px;
            border-radius: 4px;
            transition: background .3s ease;
        }

        .btn-submit:hover {
            background: var(--text-2);
        }

        /* ===== MAP ===== */
        .map-wrap {
            max-width: 1300px;
            margin: 60px auto 0;
            padding: 0 40px;
        }

        .map-wrap iframe {
            width: 100%;
            height: 420px;
            border: 0;
            border-radius: 8px;
            display: block;
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 90px 40px 110px;
        }

        .faq__grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 60px;
            align-items: start;
        }

        .faq__eyebrow {
            display: block;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--theme);
            margin-bottom: 16px;
        }

        .faq__title {
            font-size: 38px;
            font-weight: 700;
            color: var(--header);
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .faq__text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text);
            max-width: 420px;
        }

        .faq-item {
            background: var(--bg-3);
            border: 1px solid var(--border-2);
            border-radius: 6px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: border-color .3s ease, box-shadow .3s ease;
        }

        .faq-item.active {
            border-color: var(--header);
            box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 26px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--header);
        }

        .faq-q svg {
            width: 18px;
            height: 18px;
            stroke: var(--header);
            flex-shrink: 0;
            transition: transform .3s ease;
        }

        .faq-item.active .faq-q svg {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .faq-a p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text);
            padding: 0 26px 24px;
        }

        .products-features-section {
    padding: clamp(56px, 8vw, 100px) 0;
}

.products-features-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 60px);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: var(--radius-pill, 999px);
}

.products-features-head .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--ink);
    line-height: 1.2;
    margin: 0 0 16px;
}

.products-features-head .section-desc {
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.75;
    margin: 0;
}

.products-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.products-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--accent-rgb), .3);
}

.products-feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.products-feature-text h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1.3;
}

.products-feature-text p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}
.product-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: 10px;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-feature-item .product-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--header);
    color: var(--white);
    border-radius: 50%;
    font-size: 17px;
    transition: all 0.3s ease;
}

.product-feature-item:hover {
    background: var(--bg);
    border-color: var(--theme);
    transform: translateX(5px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.product-feature-item:hover .product-icon {
    background: var(--theme);
    transform: scale(1.08);
}

.product-img {
    position: sticky;
    top: 20px;
   
}

.product-img img{
     border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}