/* Home Page Styles converted from SCSS */

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    padding: 0px 0 clamp(3.125rem, -1.563rem + 25vw, 6.25rem);
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(335px, 650px) 50px minmax(200px, 335px);
    grid-template-areas:
        'calc . alert'
        'calc . qr'
        'calc . service';
    row-gap: 50px;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        grid-template-areas:
            'alert'
            'calc'
            'qr'
            'service';
        justify-items: center;
    }
}

/* Hero Alert Block (Anti-Scam) */
.hero__alert {
    grid-area: alert;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(135deg, hsla(350, 80%, 15%, 0.8) 0%, hsla(208, 100%, 12%, 0.7) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(350, 80%, 45%, 0.4);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: clamp(1rem, 1.5vw, 1.5rem);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__alert:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -5px hsla(350, 80%, 40%, 0.25);
    border-color: hsla(350, 80%, 55%, 0.6);
}

.hero__alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff3366, #ff9933);
}

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

.hero__alert__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: hsla(350, 80%, 50%, 0.15);
    color: #ff4d4d;
}

.hero__alert__icon svg {
    width: 18px;
    height: 18px;
}

.hero__alert__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ff4d4d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.hero__alert__text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

.hero__alert__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
    margin-top: 5px;
}

.hero__alert__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero__alert__btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.hero__alert__btn:hover svg {
    transform: translateX(3px);
}

/* Hero QR Block */
.hero__qr {
    grid-area: qr;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: hsla(208, 100%, 12%, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(208, 100%, 55%, 0.15);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero__qr:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px hsla(208, 100%, 55%, 0.15);
}

.hero__qr img {
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero__qr p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .hero__qr {
        display: none;
    }
}

/* Calculator Styles */
.hero .calc {
    grid-area: calc;
    /* Mixin: card-box */
    background-color: var(--color-cards-bg);
    border: solid 1px var(--color-cards-border);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    box-shadow: 2px 4px 10px 1px hsla(0, 0%, 0%, 25%);

    max-width: 650px;
    padding: clamp(0.625rem, -0.19rem + 3.26vw, 2.5rem);
    transition: all 0.3s ease;
}

.hero .calc:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .calc>p {
    text-align: center;
    margin-bottom: 30px;
}

.hero .calc__rates {
    /* Mixin: card-box */
    background-color: var(--color-cards-bg);
    border: solid 1px var(--color-cards-border);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    box-shadow: 2px 4px 10px 1px hsla(0, 0%, 0%, 25%);

    margin-bottom: 30px;
}

.hero .calc__rates .rates__top,
.hero .calc__rates .rates__row {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
}

.hero .calc__rates .label {
    padding: 5px 15px;
    border: solid 1px var(--color-accent);
    border-radius: 20px;
    justify-self: start;
}

.hero .calc__rates .row-label {
    justify-self: start;
}

@media (max-width: 800px) {

    .hero .calc__rates .rates__top,
    .hero .calc__rates .rates__row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero .calc__rates .row-label,
    .hero .calc__rates .label {
        display: none;
    }
}

@media (max-width: 500px) {
    .hero .calc {
        border: none;
        box-shadow: none;
    }
}

.hero .calc__input,
.hero .calc__output {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.hero .calc__input input:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .calc__input input,
.hero .calc__output input {
    flex: 1;
    color: #fff;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 1rem;
    /* Mixin: card-box */
    background-color: var(--color-cards-bg);
    border: solid 1px var(--color-cards-border);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    box-shadow: 2px 4px 10px 1px hsla(0, 0%, 0%, 25%);

    transition: all 0.3s ease;
}

.hero .calc__input input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.hero .calc__input select,
.hero .calc__output select {
    font-family: Montserrat;
    font-weight: 700;
    text-align: center;
    color: #fff;
    /* Mixin: card-box */
    background-color: var(--color-cards-bg);
    border: solid 1px var(--color-cards-border);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    box-shadow: 2px 4px 10px 1px hsla(0, 0%, 0%, 25%);

    font-size: 1rem;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('/assets/icons/arrows/Arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.hero .calc__input select:hover,
.hero .calc__output select:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .calc__output input {
    /* Mixin: card-box */
    background-color: var(--color-cards-bg);
    border: solid 1px var(--color-cards-border);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    box-shadow: 2px 4px 10px 1px hsla(0, 0%, 0%, 25%);
}

.hero input[type="number"]::-webkit-outer-spin-button,
.hero input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 600px) {

    .hero .calc__input,
    .hero .calc__output {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .calc__input select,
    .hero .calc__output select {
        width: 100%;
    }
}

/* Hero Service (Slider) */
.hero .hero__service {
    grid-area: service;
}

@media (max-width: 725px) {
    .hero .hero__service {
        width: 100%;
        max-width: 400px;
    }
}

.hero .hero-card {
    /* Mixin: card-box */
    background-color: var(--color-cards-bg);
    border: solid 1px var(--color-cards-border);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: 0;
    box-shadow: 2px 4px 10px 1px hsla(0, 0%, 0%, 25%);

    min-height: 150px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.hero .hero-card .slider-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease;
}

.hero .hero-card .slider-slide {
    min-width: 100%;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.hero .hero-card .slider-slide:not(.active) {
    display: none;
}

.hero .hero-card .slider-arrow {
    align-self: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1;
}

.hero .hero-card .slider-arrow img {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .hero .hero-card .slider-container {
        touch-action: pan-y;
    }
}

.hero .srv-card {
    align-items: center;
}

.hero .hero-card__content {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero .hero-card__content .service-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.hero .hero-card__content .service-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    transition: color 0.3s ease;
}

.hero .hero-card:hover .service-title {
    color: var(--color-accent);
}

.hero .hero-card:hover {
    border-color: var(--color-primary);
}

.hero .hero-card__content .service-body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero .hero-card__content .service-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero .hero-card__content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.3;
}

.hero .hero__adress {
    grid-area: adress;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Holiday Schedule Ticker */
.holiday-schedule {
    width: 100%;
    background: linear-gradient(135deg, var(--color-cards-bg), rgba(26, 148, 255, 0.1));
    border: 1px solid var(--color-cards-border);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: 25px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.holiday-schedule:hover {
    border-color: var(--color-accent);
}

.holiday-schedule .schedule-title {
    padding: 0 20px;
    font-weight: 800;
    color: var(--color-accent);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(255, 154, 0, 0.3);
}

.schedule-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-content {
    display: flex;
    width: max-content;
    animation: ticker-h 50s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-items {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.ticker-items span {
    white-space: nowrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ticker-items span:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
    color: #fff;
}

@keyframes ticker-h {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 725px) {
    .hero .hero__adress {
        width: 100%;
        max-width: 400px;
    }
}

/* About Us Section */
.about-us {
    /* Mixin: padding-section */
    padding: clamp(3.125rem, -0.893rem + 14.29vw, 6.25rem) 0 clamp(3.125rem, -0.893rem + 14.29vw, 6.25rem);
    background-image: linear-gradient(315deg, var(--color-bg), var(--color-primary));
}

/* Shared Text Area Mixin/Class */
.text-area {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.text-area h1,
.text-area h2 {
    margin-bottom: 1.5rem;
}

.text-area p {
    margin: 1.5rem 0;
    width: 100%;
    max-width: 600px;
    line-height: 1.6;
}

.text-area a {
    align-self: flex-start;
}

@media (max-width: 930px) {
    .text-area {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .text-area p {
        margin: 1.5rem 0;
        max-width: 100%;
    }

    .text-area a {
        align-self: center;
        max-width: 100%;
    }
}

.about-us .container {
    /* Mixin: text-container */
    display: flex;
    justify-content: space-between;
}

@media (max-width: 930px) {
    .about-us .container {
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }
}



.about-us .card-area {
    /* Mixin: card-area */
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

@media (max-width: 930px) {
    .about-us .card-area {
        width: 100%;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Services Section */
.servises {
    /* Mixin: padding-section */
    padding: clamp(3.125rem, -0.893rem + 14.29vw, 6.25rem) 0 clamp(3.125rem, -0.893rem + 14.29vw, 6.25rem);
}

.servises .container h2 {
    text-align: center;
}

.servises .cards-wrap {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.servises .service-card {
    /* Mixin: card-box */
    background-color: var(--color-cards-bg);
    border: solid 1px var(--color-cards-border);
    border-radius: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    padding: clamp(0.625rem, 0.353rem + 1.09vw, 1.25rem);
    box-shadow: 2px 4px 10px 1px hsla(0, 0%, 0%, 25%);

    max-width: 350px;
    transition: all 0.2s ease-in;
}

.servises .service-card h3 {
    margin: 30px 0px 20px;
    text-transform: none;
}

.servises .service-card:hover {
    transform: translateY(-5px);
    border: solid 1px var(--color-accent);
    box-shadow: 0px 0px 10px 0px var(--color-accent);
}

.servises .more {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.servises .more::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(/assets/icons/service/bitcoin-convert.svg);
    background-repeat: no-repeat;
}

.servises .crypto--card .more::before {
    background-image: url('/assets/icons/service/bitcoin-convert.svg');
}

.servises .moving--card .more::before {
    background-image: url('/assets/icons/service/routing.svg');
}

.servises .sepa--card .more::before {
    background-image: url('/assets/icons/service/sepa.svg');
}

.servises .invoice--card .more::before {
    background-image: url('/assets/icons/service/invoice.svg');
}

.servises .wize--card .more::before {
    background-image: url('/assets/icons/service/wize.svg');
}

.servises .china--card .more::before {
    background-image: url('/assets/icons/service/china.svg');
}

/* Reviews Section */
.reviews {
    /* Mixin: padding-section */
    padding: clamp(3.125rem, -0.893rem + 14.29vw, 6.25rem) 0 clamp(3.125rem, -0.893rem + 14.29vw, 6.25rem);
    background: radial-gradient(circle at top right, rgba(26, 148, 255, 0.15), transparent 40%),
                radial-gradient(circle at bottom left, rgba(255, 154, 0, 0.1), transparent 40%),
                linear-gradient(135deg, #002244, #003366);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.reviews .container {
    /* Mixin: text-container */
    display: flex;
    justify-content: space-between;
    gap: 100px; /* Increased gap between text and cards */
    position: relative;
    z-index: 1;
}

@media (max-width: 930px) {
    .reviews .container {
        flex-direction: column;
        justify-content: center;
        gap: 50px;
    }
}

.reviews .button-wrap {
    display: flex;
    gap: 30px;
}

@media (max-width: 930px) {
    .reviews .button-wrap {
        justify-content: center;
    }
}

@media (max-width: 450px) {
    .reviews .button-wrap {
        flex-wrap: wrap;
    }
}

.reviews .button-wrap .button {
    border: solid 1px transparent;
}

.reviews .button-wrap .button:hover {
    background-color: transparent;
    border: solid 1px #fff;
}

.reviews .card-area {
    /* Mixin: card-area */
    width: 50%; /* Increased width for better slider visibility */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 930px) {
    .reviews .card-area {
        width: 100%;
        justify-content: center;
        gap: 30px;
    }
}

.reviews .reviews-widget {
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 40px 30px;
    position: relative;
}

.reviews .reviews-widget::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.reviews .widget-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.reviews .widget-header span {
    text-transform: none;
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.reviews .google-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.reviews .google-logo:hover {
    background: rgba(255, 255, 255, 0.1);
}

.reviews .google-logo__text {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.reviews .google-logo a {
    position: absolute;
    inset: 0;
}

.reviews .slider-container {
    overflow: hidden;
    padding: 10px 0; 
}

.reviews .slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
}

.reviews .review-card {
    flex: 0 0 calc(50% - 10px); /* Desktop: 2 cards per view with gap */
    min-width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.reviews .review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
}

.reviews .review-header {
    font-family: montserrat;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.reviews .reviewer-info {
    flex: 1;
}

.reviews .reviewer-name {
    text-transform: capitalize;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.reviews .review-date {
    font-size: 0.85rem;
    color: rgba(240, 248, 255, 0.6);
}

.reviews .stars {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.reviews .star.gold {
    fill: #FFD700;
    stroke: #FFD700;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
}

.reviews .star {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1.5;
    transition: fill 0.3s ease;
    margin-right: 2px;
}

.reviews .review-content {
    margin-bottom: 25px;
    flex-grow: 1;
}

.reviews .review-text {
    color: rgba(240, 248, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* Limit lines */
    line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reviews .read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.reviews .read-more:hover {
    color: var(--color-accent);
}

.reviews .read-more:hover svg,
.reviews .read-more:hover img {
    transform: translateX(3px);
}

.reviews .pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.reviews .pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews .pagination-dot.active {
    background: var(--color-primary);
    width: 24px; /* Elongated active dot */
    box-shadow: 0 0 10px var(--color-primary);
}

@media (max-width: 992px) {
    .reviews .review-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .reviews .review-card {
        flex: 0 0 100%; /* Mobile: 1 card per view */
        min-width: 100%;
    }

    .reviews .widget-header span {
        font-size: 1.1rem;
    }

    .reviews .reviews-widget {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .reviews .review-header {
        flex-direction: row; /* Keep row on mobile for better look */
        align-items: center;
        gap: 15px;
    }

    .reviews .widget-header span {
        font-size: 1rem;
    }
}