/* ============================================
   GLOBAL
============================================ */

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #b32d3b;
    --active: #f20b4f;
    --text: #a0a0a0;
    --border: #eba4aa;
    --white: #ffffff;
}

body {
    font-family: "Poppins", sans-serif;
    color: #222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cantarell", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}


/* ============================================
   ACCESSIBLE FOCUS STATES
   (keyboard users get a visible outline;
   mouse/touch users don't see it)
============================================ */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--active);
    outline-offset: 3px;
    border-radius: 6px;
}


/* ============================================
   REDUCED MOTION
   Respect the user's OS-level preference and
   drop non-essential animation/transitions.
============================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

/* ============================================
   HEADER
============================================ */

.main-header {
    background: #fff;
    border-top: 3px solid #333;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08);

    position: sticky;
    top: 0;
    z-index: 100;

    transition:
        box-shadow 0.3s ease,
        border-top-width 0.3s ease;
}

.main-header.scrolled {
    border-top-width: 0;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.12);
}

.main-header.scrolled .nav-container {
    min-height: 58px;
}

.main-header.scrolled .logo img {
    height: 46px;
}

.nav-container {
    width: min(1400px, calc(100% - 50px));
    min-height: 70px;

    margin: auto;

    display: flex;
    align-items: center;

    transition: min-height 0.3s ease;
}


/* ============================================
   LOGO
============================================ */

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 10px;
}

.logo img {
    display: block;
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;

    transition: height 0.3s ease;
}


/* ============================================
   NAVIGATION
============================================ */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-left: 305px;
}

.nav-menu a {
    color: #a80018;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--active);
}

.menu-btn {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 32px;
    cursor: pointer;
}


/* ============================================
   HERO
============================================ */

.hero-section {
    padding: 50px 0 60px;
}

.hero-container {
    width: min(1400px, calc(100% - 50px));
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 55px;
    align-items: start;
}


/* ============================================
   HERO CONTENT
============================================ */

.hero-content {
    padding-top: 2px;
}

.hero-content h1 {
    color: var(--primary);
    font-size: clamp(42px, 3vw, 53px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 700;
    margin-bottom: 28px;
}

.hero-description {
    max-width: 670px;
    color: #999;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.hero-content h2 {
    color: var(--primary);
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 32px;
}


/* ============================================
   APP BUTTONS
============================================ */

.app-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    align-items: center;

    margin-left: 15px;

    margin-bottom: 37px;
}

.app-buttons a {
    display: flex;
    line-height: 0;
}

.app-buttons img {
    height: 54px;
    width: auto;
    display: block;
}



/* ============================================
   LOCATIONS
============================================ */

.locations-box {
    max-width: 665px;
    min-height: 195px;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 12px;
    position: relative;
    background: linear-gradient( 135deg,  rgba(179, 45, 59, 0.015),  rgba(255, 255, 255, 0.5));
}

.location-title {
    position: absolute;
    top: 25px;
    left: 25px;
    height: 39px;
    padding: 0 13px;
    border: 1px solid #f0d3d5;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

.location-small-icon {
    font-size: 17px;
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
    padding-top: 63px;
}

.location-item {
    min-height: 38px;
    padding: 6px 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #222;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.location-item i {
    font-size: 15px;
}

.location-item:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-color: #ddd;
}

.location-item:active {
  transform: translateY(0);
}


/* ============================================
   HERO IMAGE
============================================ */

.hero-image {
    padding-top: 1px;
}

.hero-image img {
    display: block;

    width: 100%;

    height: 505px;

    object-fit: cover;

    border-radius: 12px;
}


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

@media (max-width: 1200px) {

    .nav-menu {
        margin-left: auto;
    }

    .hero-container {
        gap: 35px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .app-buttons {
        margin-left: 0;
    }

    .app-buttons img {
        height: 48px;
    }

    .hero-image img {
        height: 480px;
    }
}


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

@media (max-width: 850px) {

    .nav-container {
        min-height: 82px;

        width: calc(100% - 30px);
    }

    .logo img {
        height: 46px;
        max-width: 140px;
    }

    .menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        margin: 0;

        padding: 0 25px;

        background: #fff;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        box-shadow:
            0 8px 15px rgba(0, 0, 0, 0.08);

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        pointer-events: none;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            padding 0.35s ease;
    }

    .nav-menu.show {
        max-height: 400px;

        padding: 25px;

        opacity: 1;

        pointer-events: auto;
    }


    /* HERO */

    .hero-section {
        padding-top: 45px;
    }

    .hero-container {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 9vw, 46px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-content h2 {
        font-size: 29px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        height: auto;

        aspect-ratio: 4 / 3;
    }
}


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

@media (max-width: 600px) {

    .hero-section {
        padding:
            30px
            0
            45px;
    }

    .hero-image img {
        aspect-ratio: 16 / 11;
    }

    .hero-content h1 {
        font-size: 35px;

        line-height: 1.1;

        letter-spacing: -1px;

        margin-bottom: 20px;
    }

    .hero-description {
        line-height: 1.6;
    }

    .hero-content h2 {
        font-size: 27px;

        margin-top: 25px;

        margin-bottom: 22px;
    }

    .app-buttons {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;

        margin-bottom: 30px;
    }

    .app-buttons img {
        height: 40px;
        max-width: 100%;
    }


    /* Location */

    .locations-box {
        padding:
            10px;

        min-height: auto;
    }

    .location-title {
        position: static;

        margin-bottom: 20px;
    }

    .location-list {
        padding-top: 0;

        gap: 10px;
    }

    .location-item {
        font-size: 13px;

        padding:
            6px
            10px;
    }
}


/* ============================================
   VERY SMALL DEVICES
============================================ */

@media (max-width: 380px) {

    .app-buttons {
        grid-template-columns: 1fr;
    }

    .app-buttons img {
        max-width: 200px;
    }

}


/* ============================================
   WHY CHOOSE CLUB MABIEAT
============================================ */

.why-choose-section {
    padding: 60px 0 70px;

    background: #ffffff;
}

.why-choose-container {
    width: min(1400px, calc(100% - 50px));
    margin: 50px auto;
}


/* ============================================
   TOP CONTENT
============================================ */

.why-badge {
    width: fit-content;

    margin: 0 auto 25px;

    padding: 8px 15px;

    border: 1px solid #efc9cc;
    border-radius: 30px;

    color: #b32d3b;

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

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 1.5px;
}


.why-title {
    max-width: 1000px;

    margin: 0 auto;

    text-align: center;

    color: #050505;

    font-size: clamp(30px, 2.5vw, 40px);

    font-weight: 600;

    line-height: 1.12;

    letter-spacing: 1px;
}


.why-description {
    margin: 27px auto 30px;

    text-align: center;

    color: #a0a0a0;

    font-size: 17px;

    line-height: 1.6;

    font-weight: 400;
}


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

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


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

.benefit-card {
    background: #fff;

    padding: 12px;

    border-radius: 14px;

    box-shadow:
        0 2px 14px rgba(0, 0, 0, 0.09);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.benefit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}


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

.benefit-image {
    width: 100%;

    height: 280px;

    overflow: hidden;

    border-radius: 11px;
}


.benefit-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.benefit-card:hover .benefit-image img {
    transform: scale(1.04);
}


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

.benefit-content {
    padding: 18px 2px 5px;
}


.benefit-content h3 {
    color: #b20d23;

    font-size: 21px;

    line-height: 1.15;

    font-weight: 500;

    margin-bottom: 25px;
}


.benefit-content p {
    color: #686868;

    font-size: 17px;

    line-height: 1.55;

    font-weight: 400;
}


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

@media (max-width: 1100px) {

    .benefit-image {
        height: 230px;
    }

    .benefit-content h3 {
        font-size: 19px;
    }

    .benefit-content p {
        font-size: 15px;
    }
}


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

@media (max-width: 850px) {

    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-container {
        width: calc(100% - 30px);
    }

    .why-title {
        font-size: 31px;
    }

    .desktop-break {
        display: none;
    }

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

        font-size: 15px;

        margin-bottom: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }

    .benefit-image {
        height: 240px;
    }
}


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

@media (max-width: 600px) {

    .why-choose-section {
        padding: 42px 0;
    }

    .why-badge {
        margin-bottom: 20px;

        padding: 7px 13px;

        font-size: 13px;

        letter-spacing: 1px;
    }

    .why-title {
        font-size: 26px;

        line-height: 1.25;
    }

    .why-description {
        margin-top: 18px;

        font-size: 14px;

        line-height: 1.6;
    }


    /* Cards */

    .benefits-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .benefit-card {
        padding: 10px;
    }

    .benefit-image {
        height: auto;

        aspect-ratio: 16 / 10;
    }

    .benefit-content {
        padding: 15px 5px 8px;
    }

    .benefit-content h3 {
        font-size: 19px;

        margin-bottom: 12px;
    }

    .benefit-content p {
        font-size: 14px;

        line-height: 1.6;
    }
}

/* ============================================
   MEMBERSHIP PERKS & BENEFITS
============================================ */

.membership-perks-section {
    padding: 70px 0 75px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffdfd 100%
        );
}


.membership-perks-container {
    width: min(1400px, calc(100% - 50px));

    margin: 0 auto;
}


/* ============================================
   BADGE
============================================ */

.perks-badge {
    width: fit-content;

    margin: 0 auto 30px;

    padding: 8px 16px;

    border: 1px solid #efc9cc;

    border-radius: 30px;

    background: #fff;

    color: #b32d3b;

    font-size: 16px;

    font-weight: 500;

    letter-spacing: 1.5px;
}


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

.perks-title {
    margin: 0 auto;

    text-align: center;

    color: #050505;

    font-size: clamp(30px, 2.6vw, 42px);

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 1px;
}


/* ============================================
   DESCRIPTION
============================================ */

.perks-description {
    margin: 25px auto 35px;

    text-align: center;

    color: #a0a0a0;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.6;
}


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

.perks-grid {
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 27px;
}


/* ============================================
   PERK ITEM
============================================ */

.perk-item {
    display: block;

    color: inherit;

    text-decoration: none;
}


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

.perk-image {
    width: 100%;

    height: 280px;

    overflow: hidden;

    border-radius: 6px;

    background: #eee;
}


.perk-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}


/* Hover */

.perk-item:hover .perk-image img {
    transform: scale(1.05);
}


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

.perk-item h3 {
    margin: 10px 0 0;

    text-align: center;

    color: #090909;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 0.3px;

    transition: color 0.3s ease;
}


.perk-item:hover h3 {
    color: #b32d3b;
}


/* ============================================
   LARGE SCREEN
============================================ */

@media (min-width: 1500px) {

    .membership-perks-container {
        max-width: 1400px;
    }

    .perk-image {
        height: 285px;
    }

}


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

@media (max-width: 1100px) {

    .membership-perks-section {
        padding: 60px 0;
    }

    .perks-grid {
        gap: 20px;
    }

    .perk-image {
        height: 230px;
    }

    .perk-item h3 {
        font-size: 18px;
    }

}


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

@media (max-width: 850px) {

    .membership-perks-container {
        width: calc(100% - 30px);
    }

    .perks-title {
        max-width: 650px;

        font-size: 30px;
    }

    .perks-description {
        max-width: 600px;

        font-size: 15px;

        margin-top: 18px;
    }

    .perks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .perk-image {
        height: auto;

        aspect-ratio: 16 / 10;
    }

}


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

@media (max-width: 600px) {

    .membership-perks-section {
        padding: 45px 0 50px;
    }


    /* Badge */

    .perks-badge {
        margin-bottom: 20px;

        padding: 7px 13px;

        font-size: 13px;

        letter-spacing: 1px;
    }


    /* Heading */

    .perks-title {
        font-size: 26px;

        line-height: 1.3;
    }


    /* Description */

    .perks-description {
        margin: 16px auto 27px;

        font-size: 14px;

        line-height: 1.6;
    }


    /* Grid */

    .perks-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    /* Images */

    .perk-image {
        aspect-ratio: 16 / 10;

        border-radius: 7px;
    }


    /* Titles */

    .perk-item h3 {
        margin-top: 9px;

        font-size: 18px;
    }

}

/* ============================================
   OUR SERVICES
============================================ */

.services-section {
    padding: 65px 0 80px;
    background: #fff;
}

.services-container {
    width: min(1150px, calc(100% - 40px));
    margin: 0 auto;
}


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

.services-heading {
    text-align: center;
    margin-bottom: 25px;
}

.services-heading h2 {
    margin: 0 0 15px;

    color: #050505;

    font-size: 32px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 0.5px;
}

.services-heading p {
    margin: 0;

    color: #a0a0a0;

    font-size: 16px;
    line-height: 1.6;

    font-weight: 400;
}


/* ============================================
   SERVICES LIST
============================================ */

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


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

.service-card {
    min-height: 340px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 40px;

    padding: 20px;

    border: 1px solid #efb6bb;

    border-radius: 14px;

    background:
        linear-gradient(
            120deg,
            rgba(179, 45, 59, 0.025) 0%,
            rgba(255, 255, 255, 1) 55%,
            rgba(179, 45, 59, 0.025) 100%
        );

    overflow: hidden;
}


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

.service-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 2px 0;

    min-width: 0;
}


/* Badge */

.service-badge {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    min-height: 32px;

    padding: 5px 10px;

    border: 1px solid #f0d3d5;

    border-radius: 20px;

    background: #fff;

    color: #b32d3b;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 500;

    letter-spacing: 1px;
}


/* Title */

.service-content h3 {
    margin: 30px 0 25px;

    color: #0a0a0a;

    font-size: 18px;

    line-height: 1.45;

    font-weight: 600;

    letter-spacing: 0.2px;
}


/* Paragraph */

.service-content p {
    max-width: 510px;

    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.55;

    font-weight: 400;
}


/* ============================================
   SERVICE IMAGE
============================================ */

.service-image {
    width: 100%;
    height: 100%;

    min-height: 295px;

    overflow: hidden;

    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.035);
}


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

.service-card-reverse .service-content {
    padding-left: 0;
}


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

@media (max-width: 1000px) {

    .services-section {
        padding: 55px 0 65px;
    }

    .service-card {
        gap: 25px;

        min-height: 310px;
    }

    .service-content h3 {
        margin: 22px 0 18px;

        font-size: 17px;
    }

    .service-content p {
        font-size: 14px;
    }

    .service-image {
        min-height: 270px;
    }
}


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

@media (max-width: 768px) {

    .services-container {
        width: calc(100% - 30px);
    }

    .services-heading {
        margin-bottom: 25px;
    }

    .services-heading h2 {
        font-size: 28px;
    }

    .services-heading p {
        max-width: 550px;

        margin: auto;

        font-size: 14px;
    }


    /* Cards */

    .service-card,
    .service-card-reverse {
        display: flex;

        flex-direction: column;

        gap: 0;

        padding: 12px;

        min-height: auto;
    }


    /*
       Always display image first on mobile
    */

    .service-card .service-image {
        order: 1;
    }

    .service-card .service-content {
        order: 2;
    }


    /* Image */

    .service-image {
        height: auto;

        min-height: 0;

        aspect-ratio: 16 / 9;

        border-radius: 9px;
    }


    /* Content */

    .service-content {
        padding: 20px 5px 10px;
    }

    .service-card-reverse .service-content {
        padding: 20px 5px 10px;
    }

    .service-badge {
        font-size: 12px;

        padding: 5px 9px;

        letter-spacing: 0.7px;
    }

    .service-content h3 {
        margin: 18px 0 12px;

        font-size: 18px;

        line-height: 1.4;
    }

    .service-content p {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.6;
    }
}


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

@media (max-width: 480px) {

    .services-section {
        padding: 45px 0 50px;
    }

    .services-heading h2 {
        font-size: 26px;
    }

    .services-heading p {
        font-size: 13px;
    }

    .services-list {
        gap: 16px;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-content h3 {
        font-size: 17px;
    }

    .service-content p {
        font-size: 13.5px;
    }
}


/* ============================================
   TRUST BUILDERS
============================================ */

.trust-builders-section {
    padding: 70px 0 80px;
    background: #fff;
}

.trust-builders-container {
    width: min(1500px, calc(100% - 50px));

    margin: 0 auto;

    padding: 38px 65px 60px;

    background:
        linear-gradient(
            135deg,
            #fffafa 0%,
            #fff8f8 50%,
            #fffafa 100%
        );

    border-radius: 22px;
}


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

.trust-heading {
    margin-bottom: 48px;
}

.trust-heading h2 {
    margin: 0;

    color: #050505;

    font-size: 38px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 1.5px;
}


/* Black line below heading */

.trust-heading > span {
    display: block;

    width: 64px;
    height: 5px;

    margin-top: 14px;

    background: #050505;
}


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

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    align-items: center;
}


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

.trust-item {
    position: relative;

    text-align: center;

    padding: 0 25px;
}


/* Optional separators */

.trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 20%;

    width: 1px;
    height: 70%;

    background: rgba(0, 0, 0, 0.04);
}


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

.trust-icon {
    height: 52px;

    margin-bottom: 18px;

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

    color: #111;

    font-size: 37px;
}

.trust-icon i {
    display: block;

    line-height: 1;
}


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

.trust-item h3 {
    margin: 0 0 10px;

    color: #000;

    font-size: 42px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1px;
}


/* ============================================
   LABEL
============================================ */

.trust-item p {
    margin: 0;

    color: #252934;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 400;
}


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

@media (max-width: 1100px) {

    .trust-builders-container {
        padding:
            35px
            40px
            50px;
    }

    .trust-heading {
        margin-bottom: 40px;
    }

    .trust-heading h2 {
        font-size: 34px;
    }

    .trust-item {
        padding: 0 15px;
    }

    .trust-item h3 {
        font-size: 35px;
    }

    .trust-item p {
        font-size: 17px;
    }

    .trust-icon {
        font-size: 32px;
    }
}


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

@media (max-width: 768px) {

    .trust-builders-section {
        padding: 50px 0;
    }

    .trust-builders-container {
        width: calc(100% - 30px);

        padding:
            30px
            20px
            40px;

        border-radius: 18px;
    }

    .trust-heading {
        margin-bottom: 35px;
    }

    .trust-heading h2 {
        font-size: 30px;
    }

    .trust-heading > span {
        width: 55px;
        height: 4px;

        margin-top: 10px;
    }


    /* 2 x 2 grid */

    .trust-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap: 45px;
    }


    /* Remove desktop separators */

    .trust-item:not(:last-child)::after {
        display: none;
    }


    .trust-item h3 {
        font-size: 32px;
    }

    .trust-item p {
        font-size: 15px;
    }

    .trust-icon {
        height: 40px;

        margin-bottom: 15px;

        font-size: 29px;
    }
}


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

@media (max-width: 480px) {

    .trust-builders-section {
        padding: 40px 0;
    }

    .trust-builders-container {
        padding:
            25px
            15px
            35px;
    }

    .trust-heading h2 {
        font-size: 27px;
    }

    .trust-grid {
        row-gap: 38px;
    }

    .trust-item {
        padding: 0 5px;
    }

    .trust-item h3 {
        font-size: 27px;

        margin-bottom: 8px;
    }

    .trust-item p {
        font-size: 12px;
    }

    .trust-icon {
        font-size: 26px;

        margin-bottom: 12px;
    }
}


/* ============================================
   HOW IT WORKS
============================================ */

.how-it-works-section {
    padding: 65px 0 75px;
    background: #ffffff;
}

.how-it-works-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


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

.how-it-works-heading {
    text-align: center;
    margin-bottom: 35px;
}

.how-it-works-heading h2 {
    margin: 0;

    color: #080808;

    font-size: 32px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 1px;
}


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

.how-it-works-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        70px
        minmax(0, 1fr)
        70px
        minmax(0, 1fr);

    align-items: center;

    gap: 10px;
}


/* ============================================
   STEP
============================================ */

.how-step {
    min-width: 0;

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

    text-align: center;
}


/* ============================================
   PHONE
============================================ */

.how-phone {
    height: 510px;

    width: 100%;

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

.how-phone img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: 100%;

    object-fit: contain;
}


/* ============================================
   DESCRIPTION
============================================ */

.how-step p {
    margin: 10px 0 0;

    min-height: 50px;

    color: #777;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.55;
}


/* ============================================
   ARROWS
============================================ */

.how-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #b32d3b;

    font-size: 58px;

    transform: translateY(-5px);
}

.how-arrow i {
    line-height: 1;
}


/* ============================================
   LARGE DESKTOP
============================================ */

@media (min-width: 1400px) {

    .how-it-works-container {
        max-width: 1200px;
    }

    .how-phone {
        height: 520px;
    }
}


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

@media (max-width: 1100px) {

    .how-it-works-grid {
        grid-template-columns:
            minmax(0, 1fr)
            50px
            minmax(0, 1fr)
            50px
            minmax(0, 1fr);

        gap: 5px;
    }

    .how-phone {
        height: 430px;
    }

    .how-arrow {
        font-size: 45px;
    }

    .how-step p {
        font-size: 14px;
    }
}


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

@media (max-width: 850px) {

    .how-it-works-section {
        padding: 55px 0 65px;
    }

    .how-it-works-heading {
        margin-bottom: 30px;
    }

    .how-it-works-heading h2 {
        font-size: 29px;
    }

    .how-it-works-grid {
        grid-template-columns:
            minmax(0, 1fr)
            35px
            minmax(0, 1fr)
            35px
            minmax(0, 1fr);
    }

    .how-phone {
        height: 350px;
    }

    .how-arrow {
        font-size: 35px;
    }

    .how-step p {
        font-size: 12px;
    }

    .how-step p br {
        display: none;
    }
}


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

@media (max-width: 650px) {

    .how-it-works-section {
        padding: 45px 0 55px;
    }

    .how-it-works-container {
        width: calc(100% - 30px);
    }

    .how-it-works-heading {
        margin-bottom: 35px;
    }

    .how-it-works-heading h2 {
        font-size: 27px;
    }


    /* Vertical layout */

    .how-it-works-grid {
        display: flex;

        flex-direction: column;

        gap: 0;
    }


    /* Steps */

    .how-step {
        width: 100%;
    }

    .how-phone {
        height: 450px;
    }

    .how-step p {
        min-height: 0;

        max-width: 300px;

        margin-top: 10px;

        font-size: 14px;

        line-height: 1.6;
    }


    /* Change arrow direction */

    .how-arrow {
        height: 80px;

        font-size: 42px;

        transform: none;
    }

    .how-arrow i {
        transform: rotate(90deg);
    }
}


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

@media (max-width: 420px) {

    .how-phone {
        height: 400px;
    }

    .how-arrow {
        height: 65px;

        font-size: 36px;
    }

    .how-step p {
        font-size: 13px;
    }
}

/* ============================================
   TESTIMONIALS
============================================ */

.testimonials-section {
    padding: 55px 0 80px;

    background:
        linear-gradient(
            180deg,
            #fffafa 0%,
            #fffafa 100%
        );

    overflow: hidden;
}


.testimonials-container {
    width: min(1165px, calc(100% - 40px));

    margin: 0 auto;
}


/* ============================================
   BADGE
============================================ */

.testimonials-badge {
    width: fit-content;

    margin: 0 auto 25px;

    padding: 7px 12px;

    border: 1px solid #efd4d6;

    border-radius: 30px;

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

    color: #b32d3b;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 500;

    letter-spacing: 1.5px;
}


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

.testimonials-title {
    margin: 0 0 42px;

    text-align: center;

    color: #080808;

    font-size: 31px;

    line-height: 1.3;

    font-weight: 600;

    letter-spacing: 0.7px;
}


/* ============================================
   SLIDER
============================================ */

.testimonials-slider {
    width: 100%;

    overflow: hidden;

    padding:
        0
        5px
        35px;
}


.testimonials-track {
    display: flex;

    gap: 30px;

    transition:
        transform 0.6s
        cubic-bezier(0.22, 1, 0.36, 1);
}


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

.testimonial-card {
    position: relative;

    flex:
        0
        0
        calc((100% - 60px) / 3);

    height: 415px;

    padding:
        37px
        37px
        35px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border-radius:
        20px
        20px
        20px
        20px;

    box-shadow:
        0 16px 30px
        rgba(0, 0, 0, 0.06);

    overflow: hidden;
}


/* Red line */

.testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background: #b52332;
}


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

.testimonial-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 22px;
}


/* ============================================
   STARS
============================================ */

.testimonial-stars {
    color: #ffae00;

    font-size: 24px;

    line-height: 1;

    letter-spacing: 1px;

    white-space: nowrap;
}


/* ============================================
   QUOTE
============================================ */

.testimonial-quote {
    height: 40px;

    color: #f9e9ea;

    font-family: Georgia, serif;

    font-size: 65px;

    line-height: 0.75;

    font-weight: 700;

    user-select: none;
}


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

.testimonial-text {
    margin: 0;

    color: #595959;

    font-size: 17px;

    line-height: 1.75;

    font-weight: 400;
}


/* ============================================
   USER
============================================ */

.testimonial-user {
    margin-top: auto;

    display: flex;

    align-items: center;

    gap: 16px;
}


/* Avatar */

.testimonial-avatar {
    flex: 0 0 63px;

    width: 63px;
    height: 63px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #b92333;

    color: #ffffff;

    font-size: 19px;

    line-height: 1;

    font-weight: 600;
}


/* User details */

.testimonial-user-info h3 {
    margin: 0 0 3px;

    color: #262626;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 500;
}


.testimonial-user-info p {
    margin: 0;

    color: #969696;

    font-size: 14px;

    line-height: 1.3;
}


/* ============================================
   DOTS
============================================ */

.testimonial-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}


.testimonial-dot {
    width: 13px;
    height: 13px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #d3d3d3;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.testimonial-dot.active {
    background: #b92333;

    transform: scale(1.05);
}


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

@media (max-width: 1000px) {

    .testimonials-container {
        width: min(780px, calc(100% - 30px));
    }

    .testimonial-card {
        flex:
            0
            0
            calc((100% - 25px) / 2);

        height: 400px;

        padding: 30px;
    }

    .testimonials-track {
        gap: 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

}


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

@media (max-width: 650px) {

    .testimonials-section {
        padding:
            45px
            0
            55px;
    }

    .testimonials-container {
        width: calc(100% - 30px);
    }


    /* Heading */

    .testimonials-badge {
        margin-bottom: 18px;

        font-size: 11px;
    }


    .testimonials-title {
        margin-bottom: 30px;

        font-size: 25px;

        line-height: 1.35;
    }


    /* Slider */

    .testimonials-slider {
        padding-bottom: 25px;
    }


    .testimonials-track {
        gap: 15px;
    }


    /* Card */

    .testimonial-card {
        flex: 0 0 100%;

        min-height: 390px;
        height: auto;

        padding:
            30px
            25px;
    }


    /* Text */

    .testimonial-text {
        font-size: 15px;

        line-height: 1.7;
    }


    /* User */

    .testimonial-avatar {
        flex-basis: 55px;

        width: 55px;
        height: 55px;

        font-size: 16px;
    }


    .testimonial-user-info h3 {
        font-size: 16px;
    }


    .testimonial-user-info p {
        font-size: 13px;
    }

}


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

@media (max-width: 400px) {

    .testimonials-title {
        font-size: 23px;
    }

    .testimonial-card {
        padding:
            27px
            21px;

        min-height: 370px;
    }

    .testimonial-stars {
        font-size: 21px;
    }

}

/* ============================================
   CONTACT SECTION
============================================ */

.contact-section {
    padding: 55px 0 80px;

    background:
        linear-gradient(
            180deg,
            #fffafa 0%,
            #fffafa 100%
        );
}

.contact-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ============================================
   BADGE / TITLE / DESCRIPTION
============================================ */

.contact-badge {
    width: fit-content;

    margin: 0 auto 25px;

    padding: 7px 11px;

    border: 1px solid #efd7d9;
    border-radius: 30px;

    background: #fff;

    color: #b32d3b;

    font-size: 13px;
    line-height: 1;

    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.contact-title {
    margin: 0 auto 18px;

    max-width: 700px;

    text-align: center;

    color: #080808;

    font-size: clamp(28px, 2.5vw, 36px);
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 1px;
}


.contact-description {
    max-width: 620px;

    margin: 0 auto 45px;

    text-align: center;

    color: #a0a0a0;

    font-size: 16px;
    line-height: 1.6;

    font-weight: 400;
}


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

.contact-grid {
    display: grid;

    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr);

    gap: 30px;

    align-items: stretch;
}


/* ============================================
   CONTACT INFO (LEFT)
============================================ */

.contact-info {
    display: flex;
    flex-direction: column;

    gap: 22px;

    padding: 34px 28px;

    border-radius: 18px;

    background: #b32d3b;

    box-shadow:
        0 8px 25px rgba(179, 45, 59, 0.25);
}


.contact-info-item {
    display: flex;
    align-items: flex-start;

    gap: 16px;
}


.contact-info-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

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

    border-radius: 12px;

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

    color: #ffffff;

    font-size: 19px;
}


.contact-info-text h3 {
    margin-bottom: 4px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 0.5px;
}


.contact-info-text a,
.contact-info-text p {
    color: rgba(255, 255, 255, 0.85);

    font-size: 14.5px;
    line-height: 1.5;

    font-weight: 400;

    text-decoration: none;
}


.contact-info-text a:hover {
    color: #ffffff;

    text-decoration: underline;
}


/* ============================================
   CONTACT FORM (RIGHT)
============================================ */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 18px;

    padding: 34px 30px;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 2px 14px rgba(0, 0, 0, 0.09);
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}


.form-group label {
    color: #292929;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 0.3px;
}


.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #ecdcdd;
    border-radius: 10px;

    background: #fff9f9;

    color: #222;

    font-family: "Poppins", sans-serif;
    font-size: 14.5px;

    resize: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b7b0b0;
}


.form-group input:focus,
.form-group textarea:focus {
    outline: none;

    border-color: #b32d3b;

    background: #ffffff;
}


.form-error {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #dc3545;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #dc3545;
}

.contact-form input.is-invalid:focus,
.contact-form textarea.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert {
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-submit-btn {
    width: fit-content;

    margin-top: 6px;

    padding: 14px 28px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border: 0;
    border-radius: 10px;

    background: #b32d3b;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.3px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.contact-submit-btn:hover {
    background: #8f2430;

    transform: translateY(-2px);
}


.contact-submit-btn i {
    font-size: 15px;
}


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

@media (max-width: 900px) {

    .contact-section {
        padding: 50px 0 65px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;

        gap: 20px 28px;
    }

}


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

@media (max-width: 600px) {

    .contact-section {
        padding: 40px 0 50px;
    }

    .contact-container {
        width: calc(100% - 30px);
    }

    .contact-badge {
        margin-bottom: 18px;

        font-size: 11px;
    }

    .contact-title {
        margin-bottom: 14px;

        font-size: 24px;

        line-height: 1.35;
    }

    .contact-description {
        margin-bottom: 30px;

        font-size: 14px;
    }

    .contact-grid {
        gap: 20px;
    }

    .contact-info {
        flex-direction: column;

        padding: 26px 22px;

        gap: 20px;
    }

    .contact-form {
        padding: 26px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .contact-submit-btn {
        width: 100%;

        justify-content: center;
    }


}


/* ============================================
   FAQ SECTION
============================================ */

.faq-section {
    padding: 45px 0 80px;
    background: #ffffff;
}

.faq-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ============================================
   BADGE
============================================ */

.faq-badge {
    width: fit-content;

    margin: 0 auto 25px;

    padding: 7px 11px;

    border: 1px solid #efd7d9;
    border-radius: 30px;

    background: #fff;

    color: #b32d3b;

    font-size: 13px;
    line-height: 1;

    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


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

.faq-title {
    margin: 0 0 28px;

    text-align: center;

    color: #080808;

    font-size: 31px;
    line-height: 1.25;

    font-weight: 600;

    letter-spacing: 2px;
}


/* ============================================
   FAQ LIST
============================================ */

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* ============================================
   FAQ ITEM
============================================ */

.faq-item {
    width: 100%;
}


/* ============================================
   QUESTION
============================================ */

.faq-question {
    width: 100%;

    min-height: 55px;

    padding: 15px 16px;

    display: flex;
    align-items: center;

    gap: 12px;

    border: 0;

    border-radius: 16px;

    background: #fff9f9;

    color: #292929;

    font-family: "Poppins", sans-serif;

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

    font-weight: 400;

    text-align: left;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-radius 0.3s ease;
}


/* +/- icon */

.faq-icon {
    flex: 0 0 13px;

    width: 13px;

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

    color: inherit;

    font-size: 20px;
    line-height: 1;

    font-weight: 500;
}


/* ============================================
   ACTIVE QUESTION
============================================ */

.faq-item.active .faq-question {
    background: #b32d3b;

    color: #ffffff;

    border-radius: 16px;
}


/* ============================================
   ANSWER
============================================ */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    transition:
        grid-template-rows 0.35s ease,
        opacity 0.3s ease;
}


.faq-answer-inner {
    overflow: hidden;

    color: #686868;

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

    font-weight: 400;
}


/* ============================================
   OPEN ANSWER
============================================ */

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;

    opacity: 1;
}


.faq-item.active .faq-answer-inner {
    margin-top: 12px;

    padding: 12px 11px;

    border: 1px solid #e1dddd;

    background: #fffafa;
}


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

.faq-item:not(.active) .faq-question:hover {
    background: #fff3f4;

    color: #b32d3b;
}


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

@media (max-width: 900px) {

    .faq-section {
        padding: 50px 0 65px;
    }

    .faq-title {
        font-size: 28px;

        letter-spacing: 1.5px;
    }

}


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

@media (max-width: 600px) {

    .faq-section {
        padding: 40px 0 50px;
    }

    .faq-container {
        width: calc(100% - 30px);
    }


    /* Badge */

    .faq-badge {
        margin-bottom: 18px;

        font-size: 11px;
    }


    /* Heading */

    .faq-title {
        margin-bottom: 25px;

        font-size: 24px;

        line-height: 1.35;

        letter-spacing: 1px;
    }


    /* FAQ spacing */

    .faq-list {
        gap: 13px;
    }


    /* Questions */

    .faq-question {
        min-height: 54px;

        padding:
            13px
            14px;

        border-radius: 12px;

        gap: 10px;

        font-size: 13px;
    }


    .faq-item.active .faq-question {
        border-radius: 12px;
    }


    /* Answer */

    .faq-answer-inner {
        font-size: 13px;

        line-height: 1.6;
    }


    .faq-item.active .faq-answer-inner {
        margin-top: 8px;

        padding: 12px;
    }

}


/* ============================================
   FOOTER
============================================ */

.site-footer {
    position: relative;

    margin-top: 25px;

    background: #222222;

    color: #ffffff;

    border-left: 1px solid #4a4a4a;
    border-right: 1px solid #4a4a4a;
    border-bottom: 1px solid #4a4a4a;

    border-radius: 0 0 30px 30px;

    overflow: hidden;
}


/* ============================================
   CONTAINER
============================================ */

.footer-container {
    width: min(1250px, calc(100% - 50px));

    margin: 0 auto;

    padding: 75px 0 65px;
}


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

.footer-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1fr;

    gap: 70px;
}


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

.footer-column h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 600;

    letter-spacing: 0.7px;
}


/* ============================================
   LINKS
============================================ */

.footer-links,
.footer-contact ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-links li {
    margin-bottom: 8px;
}


.footer-links a {
    color: #aaa;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 400;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


.footer-links a:hover {
    color: #ffffff;

    padding-left: 4px;
}


/* ============================================
   CONTACT
============================================ */

.footer-contact li {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 10px;

    color: #aaa;
}


.footer-contact i {
    flex-shrink: 0;

    color: #c6c6c6;

    font-size: 15px;
}


.footer-contact a {
    color: #aaa;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 400;

    text-decoration: none;

    transition: color 0.25s ease;
}


.footer-contact a:hover {
    color: #ffffff;
}


/* ============================================
   SOCIAL ICONS
============================================ */

.footer-socials {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 5px;
}


.footer-socials a {
    width: 40px;
    height: 40px;

    display: inline-flex;

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

    border: 1px solid #59606a;

    border-radius: 50%;

    color: #ffffff;

    background: transparent;

    text-decoration: none;

    font-size: 17px;

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


.footer-socials a:hover {
    background: #b32d3b;

    border-color: #b32d3b;

    transform: translateY(-3px);
}


/* ============================================
   FOOTER BOTTOM
============================================ */

.footer-bottom {
    padding: 25px 20px;

    border-top: 1px solid #343434;

    text-align: center;
}


.footer-bottom p {
    margin: 0;

    color: #e3e3e3;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 400;
}


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

@media (max-width: 1050px) {

    .footer-container {
        padding:
            60px
            0
            55px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            45px
            70px;
    }
}


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

@media (max-width: 650px) {

    .site-footer {
        margin-top: 10px;

        border-radius:
            0
            0
            20px
            20px;
    }


    .footer-container {
        width: calc(100% - 40px);

        padding:
            45px
            0
            40px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-column h3 {
        margin-bottom: 14px;

        font-size: 19px;
    }


    .footer-links a,
    .footer-contact a {
        font-size: 14px;
    }


    /* Social */

    .footer-socials a {
        width: 43px;
        height: 43px;

        font-size: 15px;
    }


    /* Copyright */

    .footer-bottom {
        padding:
            20px
            15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

}

/* ============================================
   LEGAL PAGES
   (Privacy Policy, Terms & Conditions,
   Return & Refund Policy)
============================================ */

.legal-hero {
    padding: 55px 0 40px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(179, 45, 59, 0.06),
            transparent 55%
        ),
        #fff;

    border-bottom: 1px solid #f1e4e5;
}

.legal-breadcrumb {
    margin-bottom: 16px;

    color: #a0a0a0;

    font-size: 14px;

    font-weight: 400;
}

.legal-breadcrumb a {
    color: #b32d3b;

    text-decoration: none;
}

.legal-breadcrumb a:hover {
    text-decoration: underline;
}

.legal-breadcrumb .sep {
    margin: 0 8px;

    color: #d7c9ca;
}

.legal-hero h1 {
    color: #080808;

    font-size: clamp(30px, 3.5vw, 42px);
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 1px;
}


.legal-section {
    padding: 55px 0 90px;

    background: #ffffff;
}

.legal-container {
    width: min(880px, calc(100% - 40px));

    margin: 0 auto;
}

.legal-meta {
    margin-bottom: 30px;

    padding: 16px 20px;

    display: flex;
    flex-wrap: wrap;

    gap: 10px 24px;

    border: 1px solid #efd7d9;
    border-radius: 12px;

    background: #fff9f9;

    color: #686868;

    font-size: 14px;
}

.legal-meta strong {
    color: #292929;

    font-weight: 600;
}

.legal-content h2 {
    margin: 40px 0 16px;

    color: #b32d3b;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 600;

    letter-spacing: 0.3px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin: 24px 0 10px;

    color: #292929;

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

    font-weight: 600;
}

.legal-content p {
    margin-bottom: 14px;

    color: #4a4a4a;

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

    font-weight: 400;
}

.legal-content ul {
    margin: 0 0 16px;
    padding-left: 20px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.legal-content ul li {
    color: #4a4a4a;

    font-size: 15.5px;
    line-height: 1.65;

    font-weight: 400;
}

.legal-content ul li::marker {
    color: #b32d3b;
}

.legal-content a {
    color: #b32d3b;

    text-decoration: underline;

    text-underline-offset: 2px;
}

.legal-content strong {
    color: #292929;

    font-weight: 600;
}

.legal-content hr {
    margin: 34px 0;

    border: 0;
    border-top: 1px solid #f1e4e5;
}


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

@media (max-width: 900px) {

    .legal-hero {
        padding: 45px 0 32px;
    }

    .legal-section {
        padding: 45px 0 70px;
    }
}


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

@media (max-width: 600px) {

    .legal-hero {
        padding: 36px 0 26px;
    }

    .legal-breadcrumb {
        font-size: 12.5px;
    }

    .legal-section {
        padding: 36px 0 55px;
    }

    .legal-container {
        width: calc(100% - 30px);
    }

    .legal-meta {
        padding: 14px 16px;

        font-size: 13px;
    }

    .legal-content h2 {
        margin: 30px 0 12px;

        font-size: 18.5px;
    }

    .legal-content h3 {
        font-size: 16px;
    }

    .legal-content p,
    .legal-content ul li {
        font-size: 14.5px;
    }
}
