*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #2d2d2d;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    border: none;
    background: none
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

@media(max-width: 576px) {
    .container {
        padding: 0 16px
    }
}

.section {
    padding: 80px 0
}

@media(max-width: 768px) {
    .section {
        padding: 60px 0
    }
}

@media(max-width: 576px) {
    .section {
        padding: 48px 0
    }
}

.section__header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 52px
}

@media(max-width: 768px) {
    .section__header {
        margin-bottom: 36px
    }
}

.section__header--light .section__title {
    color: #fff
}

.section__header--light .section__desc {
    color: hsla(0, 0%, 100%, .8)
}

.section__badge {
    display: inline-block;
    background: #fff0f0;
    color: #d42b2b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 14px;
    border: 1px solid rgba(212, 43, 43, .2)
}

.section__badge--light {
    background: hsla(0, 0%, 100%, .18);
    color: #fff;
    border-color: hsla(0, 0%, 100%, .3)
}

.section__title {
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 14px
}

.section__desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.75
}

.section__desc--light {
    color: hsla(0, 0%, 100%, .8)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
    white-space: nowrap
}

.btn--primary {
    background: #d42b2b;
    color: #fff;
    box-shadow: 0 4px 20px rgba(212, 43, 43, .3)
}

.btn--primary:hover {
    background: #a81e1e;
    transform: translateY(-2px);
    color: #fff
}

.btn--outline {
    background: rgba(0, 0, 0, 0);
    color: #d42b2b;
    border: 2px solid #d42b2b
}

.btn--outline:hover {
    background: #d42b2b;
    color: #fff;
    transform: translateY(-2px)
}

.btn--outline-white {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: 2px solid hsla(0, 0%, 100%, .6)
}

.btn--outline-white:hover {
    background: hsla(0, 0%, 100%, .12);
    border-color: #fff;
    transform: translateY(-2px)
}

.btn--full {
    width: 100%;
    justify-content: center
}

@media(max-width: 576px) {
    .btn {
        padding: 11px 20px;
        font-size: 14px
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    transition: all .3s ease
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.navbar__logo-img {
    height: 42px;
    width: auto
}

.navbar__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.navbar .logo-name {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: .5px
}

.navbar .logo-sub {
    font-size: 10px;
    color: #6b7280
}

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

@media(max-width: 992px) {
    .navbar__menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 12px 20px 32px;
        overflow-y: auto;
        gap: 4px;
        border-top: 2px solid #d42b2b
    }

    .navbar__menu.open {
        display: flex
    }
}

.navbar .nav-link {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .3s ease
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #d42b2b;
    background: #fff0f0
}

.navbar .nav-link--cta {
    background: #d42b2b;
    color: #fff !important;
    padding: 8px 18px;
    margin-left: 6px
}

.navbar .nav-link--cta:hover {
    background: #a81e1e;
    color: #fff !important
}

@media(max-width: 992px) {
    .navbar .nav-link--cta {
        margin-left: 0;
        margin-top: 8px;
        padding: 16px;
        text-align: center;
        border-radius: 8px;
        font-size: 15px
    }
}

@media(max-width: 992px) {
    .navbar .nav-link {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        font-size: 16px;
        font-weight: 500;
        color: #2d2d2d;
        border-radius: 8px;
        border-bottom: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        gap: 12px
    }

    .navbar .nav-link::before {
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #e5e7eb;
        flex-shrink: 0;
        transition: all .3s ease
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: #d42b2b;
        background: #fff0f0;
        border-bottom-color: rgba(212, 43, 43, .15)
    }

    .navbar .nav-link:hover::before,
    .navbar .nav-link.active::before {
        background: #d42b2b;
        width: 6px;
        height: 6px
    }

    .navbar .nav-link--cta {
        border-bottom: none;
        justify-content: center
    }

    .navbar .nav-link--cta::before {
        display: none
    }
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px
}

@media(max-width: 992px) {
    .navbar__toggle {
        display: flex
    }
}

.navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all .3s ease
}

.navbar__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.navbar__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.hero {
    padding-top: 70px;
    background: #fff;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center
}

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 43, 43, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 43, 43, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 60px
}

@media(max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width: 992px) {
    .hero__content {
        text-align: center
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff0f0;
    color: #d42b2b;
    border: 1px solid rgba(212, 43, 43, .25);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 22px
}

.hero__title {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 18px
}

.hero__title-highlight {
    color: #d42b2b;
    display: block
}

.hero__subtitle {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 36px
}

@media(max-width: 992px) {
    .hero__subtitle {
        margin: 0 auto 36px
    }
}

.hero__stats {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    row-gap: 16px
}

@media(max-width: 992px) {
    .hero__stats {
        justify-content: center
    }
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px
}

@media(max-width: 576px) {
    .hero__stat {
        padding: 0 12px
    }
}

.hero__stat .stat-num {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #d42b2b;
    line-height: 1
}

.hero__stat .plus {
    font-size: .65em;
    vertical-align: top;
    margin-top: 4px;
    display: inline-block
}

.hero__stat .stat-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
    white-space: nowrap
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: #e5e7eb
}

@media(max-width: 576px) {
    .hero__stat-divider {
        display: none
    }
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

@media(max-width: 992px) {
    .hero__actions {
        justify-content: center
    }
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center
}

@media(max-width: 992px) {
    .hero__visual {
        order: -1
    }
}

.hero__circle-wrap {
    position: relative;
    width: 380px;
    height: 380px
}

@media(max-width: 768px) {
    .hero__circle-wrap {
        width: 300px;
        height: 300px
    }
}

@media(max-width: 576px) {
    .hero__circle-wrap {
        width: 240px;
        height: 240px
    }
}

.hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 43, 43, .15);
    animation: rotate 20s linear infinite
}

.hero__ring--1 {
    inset: 0;
    border-style: dashed
}

.hero__ring--2 {
    inset: 18px;
    border-color: rgba(212, 43, 43, .08);
    animation-direction: reverse;
    animation-duration: 28s
}

.hero__circle-main {
    position: absolute;
    inset: 38px;
    border-radius: 50%;
    background: linear-gradient(145deg, #FFF0F0 0%, #fff 60%, #fdf0f0 100%);
    border: 2px solid rgba(212, 43, 43, .15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .13), inset 0 1px 0 hsla(0, 0%, 100%, .8);
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 576px) {
    .hero__circle-main {
        inset: 26px
    }
}

.hero__circle-content {
    text-align: center
}

.hero__circle-logo {
    margin: 0 auto 10px
}

.hero__circle-logo img {
    width: 96px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px
}

@media(max-width: 576px) {
    .hero__circle-logo img {
        width: 70px
    }
}

.hero__circle-label {
    font-size: 10px;
    color: #6b7280;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px
}

.hero__circle-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 2px 0 12px;
    letter-spacing: 1px
}

@media(max-width: 576px) {
    .hero__circle-title {
        font-size: 12px
    }
}

.hero__brands-row {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap
}

.hero__brands-row span {
    background: #fff0f0;
    color: #d42b2b;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(212, 43, 43, .2)
}

.hero__floating {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(212, 43, 43, .2);
    color: #2d2d2d;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    animation: float 6s ease-in-out infinite
}

.hero__floating--1 {
    top: 8%;
    left: 0;
    animation-delay: 0s
}

.hero__floating--2 {
    top: 8%;
    right: 0;
    animation-delay: 1.5s
}

.hero__floating--3 {
    bottom: 10%;
    left: 0;
    animation-delay: 3s
}

.hero__floating--4 {
    bottom: 10%;
    right: 0;
    animation-delay: 4.5s
}

@media(max-width: 576px) {
    .hero__floating {
        display: none
    }
}

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%)
}

.hero__scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    color: #6b7280;
    animation: bounce 2.5s ease-in-out infinite
}

.hero__scroll a:hover {
    border-color: #d42b2b;
    color: #d42b2b
}

.about {
    background: #f8f8f8
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

@media(max-width: 992px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.about__text h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px
}

.about__text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 14px
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px
}

@media(max-width: 576px) {
    .about__features {
        grid-template-columns: 1fr
    }
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2d2d2d
}

.about__feature i {
    color: #d42b2b;
    font-size: 14px;
    flex-shrink: 0
}

.about__stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.about__stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    border: 1px solid #e5e7eb;
    transition: all .3s ease
}

.about__stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    border-color: rgba(212, 43, 43, .3)
}

.about__stat-icon {
    width: 46px;
    height: 46px;
    background: #fff0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px
}

.about__stat-icon i {
    color: #d42b2b;
    font-size: 18px
}

.about__stat-num {
    font-size: 34px;
    font-weight: 800;
    color: #d42b2b;
    line-height: 1;
    margin-bottom: 6px;
    display: block
}

.about__stat-num span {
    font-size: .6em;
    vertical-align: top;
    margin-top: 6px;
    display: inline-block
}

.about__stat-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px
}

.about__stat-card p {
    font-size: 12px;
    color: #6b7280
}

.products {
    background: #fff
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

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

@media(max-width: 576px) {
    .products__grid {
        grid-template-columns: 1fr
    }
}

.products__cta {
    text-align: center;
    margin-top: 44px;
    padding: 36px;
    background: #fff5f5;
    border-radius: 24px;
    border: 1px solid rgba(212, 43, 43, .15)
}

.products__cta p {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px
}

.product__card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 28px 22px;
    border: 1.5px solid #e5e7eb;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.product__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d42b2b;
    transform: scaleX(0);
    transition: all .3s ease;
    transform-origin: left
}

.product__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .13);
    border-color: rgba(212, 43, 43, .3);
    background: #fff
}

.product__card:hover::before {
    transform: scaleX(1)
}

.product__card--featured {
    background: #fff;
    border-color: rgba(212, 43, 43, .35);
    box-shadow: 0 0 0 1px rgba(212, 43, 43, .15)
}

.product__card--featured::before {
    transform: scaleX(1)
}

.product__card--featured h3 {
    color: #1a1a1a
}

.product__card--featured p {
    color: #6b7280
}

.product__card--featured .product__link {
    color: #d42b2b
}

.product__card--featured .product__tag {
    background: #fff0f0;
    color: #d42b2b;
    border-color: rgba(212, 43, 43, .2)
}

.product__card--featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .13);
    border-color: #d42b2b
}

.product__card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px
}

.product__card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px
}

.product__card__featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #d42b2b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px
}

.product__card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto
}

.product__card__tag {
    background: #fff0f0;
    color: #d42b2b;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(212, 43, 43, .18)
}

.product__card__link {
    font-size: 13px;
    font-weight: 600;
    color: #d42b2b;
    display: flex;
    align-items: center;
    gap: 4px
}

.product__card__link:hover {
    gap: 8px
}

.product__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px
}

.product__icon-wrap i {
    color: #fff;
    font-size: 20px
}

.product__icon-wrap--1 {
    background: #d42b2b
}

.product__icon-wrap--2 {
    background: #c03030
}

.product__icon-wrap--3 {
    background: #a81e1e
}

.product__icon-wrap--4 {
    background: linear-gradient(135deg, #D42B2B, #A81E1E)
}

.product__icon-wrap--5 {
    background: #e84444
}

.product__icon-wrap--6 {
    background: #8b1a1a
}

.brands {
    background: #f8f8f8
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

@media(max-width: 992px) {
    .brands__grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto
    }
}

.brand__card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.brand__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .13);
    border-color: rgba(212, 43, 43, .25)
}

.brand__card--featured {
    border-color: #d42b2b;
    box-shadow: 0 4px 20px rgba(212, 43, 43, .3);
    transform: scale(1.03)
}

.brand__card--featured:hover {
    transform: scale(1.03) translateY(-5px)
}

@media(max-width: 992px) {
    .brand__card--featured {
        transform: scale(1)
    }

    .brand__card--featured:hover {
        transform: translateY(-5px)
    }
}

.brand__card__featured-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #d42b2b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 0 0 10px 10px
}

.brand__card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 18px
}

.brand__emblem {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px
}

.brand__emblem--ganga {
    background: linear-gradient(135deg, #800000, #A81E1E)
}

.brand__emblem--akshar {
    background: linear-gradient(135deg, #D42B2B, #A81E1E)
}

.brand__emblem--happy {
    background: linear-gradient(135deg, #E84444, #D42B2B)
}

.brand__letter {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    font-family: "Playfair Display", serif
}

.brand__name {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px
}

.brand__tagline {
    font-size: 13px;
    color: #d42b2b;
    font-style: italic;
    margin-bottom: 14px;
    font-weight: 500
}

.brand__oils {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center
}

.brand__oils span {
    background: #f8f8f8;
    color: #6b7280;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb
}

.why-us {
    background: #d42b2b
}

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

@media(max-width: 992px) {
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 576px) {
    .why-us__grid {
        grid-template-columns: 1fr
    }
}

.why-us__card {
    background: hsla(0, 0%, 100%, .1);
    border: 1px solid hsla(0, 0%, 100%, .15);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s ease
}

.why-us__card:hover {
    background: hsla(0, 0%, 100%, .18);
    transform: translateY(-4px)
}

.why-us__card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 14px 0 8px
}

.why-us__card p {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .8);
    line-height: 1.7
}

.why-us__icon {
    width: 56px;
    height: 56px;
    background: hsla(0, 0%, 100%, .15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.why-us__icon i {
    color: #fff;
    font-size: 22px
}

.units {
    background: #f8f8f8
}

.units__row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0
}

@media(max-width: 992px) {
    .units__row {
        grid-template-columns: 1fr
    }
}

.units__line {
    position: absolute;
    top: 30px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: repeating-linear-gradient(90deg, #D42B2B 0px, #D42B2B 6px, transparent 6px, transparent 14px);
    opacity: .3;
    pointer-events: none
}

@media(max-width: 992px) {
    .units__line {
        display: none
    }
}

.unit__loc {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px 40px;
    position: relative
}

@media(max-width: 992px) {
    .unit__loc {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 0 0 28px;
        border-bottom: 1px dashed rgba(212, 43, 43, .2)
    }

    .unit__loc:last-child {
        border-bottom: none;
        padding-bottom: 0
    }
}

@media(max-width: 992px) {
    .unit__loc:not(:last-child)::after {
        display: none
    }
}

.unit__pin {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all .3s ease
}

.unit__pin i {
    color: #6b7280;
    font-size: 20px
}

.unit__pin--active {
    background: #d42b2b;
    border-color: #d42b2b;
    box-shadow: 0 0 0 6px rgba(212, 43, 43, .12)
}

.unit__pin--active i {
    color: #fff
}

@media(max-width: 992px) {
    .unit__pin {
        margin-bottom: 0;
        margin-right: 20px;
        margin-top: 4px
    }
}

@media(max-width: 992px) {
    .unit__loc-body {
        flex: 1
    }
}

.unit__count {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 2px;
    margin-bottom: 6px
}

.unit__loc h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: "Playfair Display", serif
}

@media(max-width: 992px) {
    .unit__loc h3 {
        font-size: 22px
    }
}

.unit__tag {
    display: inline-block;
    background: #fff0f0;
    color: #d42b2b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(212, 43, 43, .2);
    margin-bottom: 12px
}

.unit__tag--ho {
    background: #d42b2b;
    color: #fff;
    border-color: #d42b2b
}

.unit__loc p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto
}

@media(max-width: 992px) {
    .unit__loc p {
        max-width: 100%;
        margin: 0
    }
}

.team {
    background: #f8f8f8
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

@media(max-width: 576px) {
    .team__grid {
        grid-template-columns: 1fr
    }
}

.team__card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1.5px solid #e5e7eb;
    transition: all .3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.team__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    border-color: rgba(212, 43, 43, .25)
}

.team__card--leader {
    background: #d42b2b;
    border-color: #d42b2b
}

.team__card--leader .team__info h3 {
    color: #fff
}

.team__card--leader .team__info p {
    color: hsla(0, 0%, 100%, .8)
}

.team__card--leader .team__role {
    background: hsla(0, 0%, 100%, .2);
    color: #fff;
    border-color: hsla(0, 0%, 100%, .3)
}

.team__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg, #D42B2B);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid hsla(0, 0%, 100%, .3)
}

.team__info {
    flex: 1
}

.team__info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px
}

.team__info p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 7px
}

.team__role {
    display: inline-block;
    background: #fff0f0;
    color: #d42b2b;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid rgba(212, 43, 43, .2)
}

.team__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: hsla(0, 0%, 100%, .9)
}

.team__phone i {
    font-size: 11px
}

.team__phone:hover {
    opacity: .8
}

.contact {
    background: #fff
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px
}

@media(max-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr
    }
}

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

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.contact__icon {
    width: 42px;
    height: 42px;
    background: #fff0f0;
    border-radius: 8px;
    border: 1px solid rgba(212, 43, 43, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

.contact__icon i {
    color: #d42b2b;
    font-size: 15px
}

.contact__detail h4 {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px
}

.contact__detail a {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: block
}

.contact__detail a:hover {
    color: #d42b2b
}

.contact__detail p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5
}

.contact__form-wrap {
    background: #f8f8f8;
    border-radius: 24px;
    padding: 36px;
    border: 1.5px solid #e5e7eb
}

@media(max-width: 576px) {
    .contact__form-wrap {
        padding: 22px
    }
}

.contact__form-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px
}

.contact__form-success {
    display: none;
    text-align: center;
    padding: 48px 20px
}

.contact__form-success.show {
    display: block
}

.contact__form-success i {
    font-size: 48px;
    color: #2d7d32;
    margin-bottom: 12px;
    display: block
}

.contact__form-success h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px
}

.contact__form-success p {
    color: #6b7280
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

@media(max-width: 576px) {
    .form__row {
        grid-template-columns: 1fr
    }
}

.form__group {
    margin-bottom: 14px
}

.form__group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 5px
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #2d2d2d;
    background: #fff;
    transition: all .3s ease;
    outline: none
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: #d42b2b;
    box-shadow: 0 0 0 3px rgba(212, 43, 43, .1)
}

.form__group input::placeholder,
.form__group select::placeholder,
.form__group textarea::placeholder {
    color: #b0b7c3
}

.form__group textarea {
    resize: vertical;
    min-height: 95px
}

.form__group select {
    cursor: pointer
}

.footer {
    background: #1a1a1a;
    padding: 56px 0 0;
    border-top: 3px solid #d42b2b
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 44px
}

@media(max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

.footer__brand p {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .45);
    line-height: 1.75;
    margin: 14px 0 18px
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.footer__logo-img {
    height: 40px;
    width: auto
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.footer__logo-name {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px
}

.footer__logo-sub {
    font-size: 10px;
    color: hsla(0, 0%, 100%, .4)
}

.footer__brand-tags {
    display: flex;
    gap: 6px
}

.footer__brand-tags span {
    background: rgba(212, 43, 43, .15);
    color: hsla(0, 0%, 100%, .7);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    border: 1px solid rgba(212, 43, 43, .25)
}

.footer__col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px
}

.footer__col ul li {
    margin-bottom: 9px
}

.footer__col ul li a {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .45);
    display: flex;
    align-items: center;
    gap: 7px
}

.footer__col ul li a i {
    font-size: 9px;
    color: #d42b2b
}

.footer__col ul li a:hover {
    color: hsla(0, 0%, 100%, .85);
    padding-left: 4px
}

.footer__col ul li:not(:has(a)) {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .45);
    display: flex;
    align-items: center;
    gap: 8px
}

.footer__col ul li:not(:has(a)) i {
    font-size: 5px;
    color: #d42b2b
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px
}

.footer__contact-item i {
    color: #d42b2b;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0
}

.footer__contact-item a,
.footer__contact-item span {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .5);
    line-height: 1.5
}

.footer__contact-item a:hover,
.footer__contact-item span:hover {
    color: hsla(0, 0%, 100%, .85)
}

.footer__bottom {
    border-top: 1px solid hsla(0, 0%, 100%, .06);
    padding: 18px 0;
    text-align: center
}

.footer__bottom p {
    font-size: 13px;
    color: hsla(0, 0%, 100%, .25)
}

.whatsapp-fab {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    z-index: 999;
    transition: all .3s ease;
    animation: pulse-green 3s ease-in-out infinite
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    color: #fff
}

@media(max-width: 576px) {
    .whatsapp-fab {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 18px;
        right: 18px
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(6px)
    }
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .45)
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, .75)
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.bg-alt {
    background: #f8f8f8 !important
}

::selection {
    background: rgba(212, 43, 43, .15)
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #f8f8f8
}

::-webkit-scrollbar-thumb {
    background: #d42b2b;
    border-radius: 3px
}

/*# sourceMappingURL=styles.css.map */