/* ==========================================================================
   Peach View Ltd — Premium Layer
   Layered on top of main.css. Adds refined tokens, a modern premium
   product slider, floating WhatsApp button and general polish.
   ========================================================================== */

:root {
    --gold: #E3B65C;
    --gold-deep: #C99A3F;
    --cream: #F7F3EC;
    --sand: #FBF7EF;
    --ink: #142220;
    --shadow-sm: 0 6px 20px rgba(5, 31, 13, .08);
    --shadow-md: 0 18px 45px rgba(5, 31, 13, .14);
    --shadow-lg: 0 30px 70px rgba(5, 31, 13, .22);
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-pill: 999px;
    --ease-out: cubic-bezier(.22, .61, .36, 1);
}

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body { font-family: 'Inter', 'Outfit', sans-serif; }

::selection { background: var(--gold); color: var(--ink); }

/* --- Refined links & buttons ------------------------------------------- */
a { transition: color .3s var(--ease-out); }

.common__btn, .transparent__btn {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: .4px;
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), color .3s ease, background-color .3s ease;
}
.common__btn:hover, .transparent__btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.common__btn { background: linear-gradient(135deg, var(--main-clr) 0%, #3E7A72 100%); }
.common__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--btn-clr) 0%, #B97A5C 100%);
    transform: translateY(101%);
    transition: transform .45s var(--ease-out);
    z-index: 0;
    border-radius: inherit;
}
.common__btn:hover::before { transform: translateY(0); }
.common__btn > * { position: relative; z-index: 1; }

/* --- Section heading accent -------------------------------------------- */
.title__area h2, .section-title h2, .about__title h2, .contact__title h2,
.s_title h2, .choose .title__area h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -.4px;
}
.title__area p { color: var(--gry-clr); }

.premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-deep);
    margin-bottom: 14px;
}
.premium-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ==========================================================================
   Premium Product Slider
   ========================================================================== */

.premium-slider {
    position: relative;
    margin: -10px -12px 0;
    padding: 10px 12px 46px;
}
.premium-slider__viewport {
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
    border-radius: var(--radius-lg);
}
.premium-slider__viewport.is-dragging { cursor: grabbing; }
.premium-slider__track {
    display: flex;
    will-change: transform;
    transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}
.premium-slider__slide {
    flex: 0 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
}
.premium-slider__track .premium-slider__slide { opacity: 1; }
.premium-slider__track.is-animating .premium-slider__slide .product-card { animation: slide-card-in .75s cubic-bezier(.22, .61, .36, 1) both; }
.premium-slider__track.is-animating .premium-slider__slide:nth-child(1) .product-card { animation-delay: .04s; }
.premium-slider__track.is-animating .premium-slider__slide:nth-child(2) .product-card { animation-delay: .12s; }
.premium-slider__track.is-animating .premium-slider__slide:nth-child(3) .product-card { animation-delay: .2s; }
.premium-slider__track.is-animating .premium-slider__slide:nth-child(4) .product-card { animation-delay: .28s; }
@keyframes slide-card-in {
    from { opacity: 0; transform: translateY(34px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Autoplay progress bar */
.premium-slider__progress {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 3px;
    border-radius: 3px;
    background: rgba(20, 34, 32, .1);
    overflow: hidden;
    z-index: 4;
}
.premium-slider__progress span {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--main-clr), var(--gold));
    transform-origin: left;
    transform: scaleX(0);
}
.premium-slider__progress span.is-running { animation: progress-run var(--slide-duration, 3.8s) linear forwards; }
.premium-slider__progress span.is-paused { animation-play-state: paused; }
@keyframes progress-run {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.product-card {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card__media { position: relative; padding-bottom: 78%; overflow: hidden; background: #eef3f0; }
.product-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
    will-change: transform;
}
.product-card:hover .product-card__media img { transform: scale(1.08) translateY(-2px); }
.product-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 34, 32, 0) 50%, rgba(20, 34, 32, .35) 100%);
    opacity: 0;
    transition: opacity .45s ease;
}
.product-card:hover .product-card__media::after { opacity: 1; }
.product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(20, 34, 32, 0) 40%, rgba(20, 34, 32, .72) 100%);
    opacity: 0;
    transition: opacity .45s var(--ease-out);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__title {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transform: translateY(12px);
    transition: transform .45s var(--ease-out);
}
.product-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    transform: translateY(14px);
    transition: transform .45s var(--ease-out), background .3s ease, color .3s ease;
}
.product-card__btn i { font-size: 11px; }
.product-card__btn:hover { background: #fff; color: var(--main-clr); }
.product-card:hover .product-card__title,
.product-card:hover .product-card__btn { transform: translateY(0); }
.product-card__num {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .92);
    color: var(--main-clr);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 14px rgba(5, 31, 13, .18);
}

.premium-slider__arrow {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--main-clr);
    font-size: 15px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: background .3s ease, color .3s ease, transform .3s var(--ease-out), box-shadow .3s ease;
}
.premium-slider__arrow:hover { background: var(--main-clr); color: #fff; transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-lg); }
.premium-slider__arrow--prev { left: -6px; }
.premium-slider__arrow--next { right: -6px; }
.premium-slider__arrow[disabled] { opacity: .35; pointer-events: none; }

.premium-slider__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}
.premium-slider__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: var(--radius-pill);
    background: rgba(20, 34, 32, .18);
    cursor: pointer;
    transition: width .35s var(--ease-out), background .35s ease;
}
.premium-slider__dots button.is-active {
    width: 26px;
    background: var(--gold);
}

@media (max-width: 767px) {
    .premium-slider { margin: 0; padding: 0 4px 44px; }
    .premium-slider__arrow { width: 42px; height: 42px; top: 40%; }
    .premium-slider__arrow--prev { left: 2px; }
    .premium-slider__arrow--next { right: 2px; }
}

/* ==========================================================================
   Hero banner refinements
   ========================================================================== */

.banner_1 { background: linear-gradient(135deg, #142220 0%, #25534C 52%, #417972 100%); }
.banner__content_title h5 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
}
.banner__content_title h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.6px;
}
.banner__content_title h3 span { color: var(--gold); }
.banner__content_title p { color: rgba(255, 255, 255, .82); }

/* ------------------------------------------------------------------ *
 *  Hero image slider (banner__right)
 * ------------------------------------------------------------------ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 688px;
    min-height: 608px;
    border-radius: 35px;
    border-bottom-left-radius: 322px;
    overflow: hidden;
    background: #1d3b36;
}
.hero-slider__viewport,
.hero-slider__track,
.hero-slider__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-slider__slide {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
    transition: opacity 1s cubic-bezier(.22, .61, .36, 1), transform 6s linear, visibility 0s linear 1s;
}
.hero-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 1s cubic-bezier(.22, .61, .36, 1), transform 7s linear, visibility 0s;
}
.hero-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slider__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(20, 34, 32, .05) 30%, rgba(20, 34, 32, .72) 100%);
}
.hero-slider__caption {
    position: absolute;
    left: 34px;
    bottom: 40px;
    right: 34px;
    z-index: 2;
    color: #fff;
}
.hero-slider__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .2px;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .18);
}
.hero-slider__caption a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.hero-slider__caption a i { transition: transform .3s var(--ease-out); }
.hero-slider__caption a:hover i { transform: translateX(4px); }
.hero-slider__dots {
    position: absolute;
    left: 34px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    gap: 8px;
}
.hero-slider__dots button {
    width: 26px;
    height: 5px;
    border: 0;
    padding: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background .3s ease, width .3s var(--ease-out);
}
.hero-slider__dots button.is-active { background: var(--gold); width: 40px; }
.hero-slider__badge {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .3px;
    color: #142220;
    background: var(--gold);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

/* ==========================================================================
   Services cards polish
   ========================================================================== */

.services_1 .sr__card {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease-out), box-shadow .4s ease;
}
.services_1 .sr__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.services_1 .sr__card .info h4 { font-family: 'Outfit', sans-serif; }
.services_1 .sr__card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(48, 102, 95, .08);
    color: var(--main-clr);
    transition: background .35s ease, color .35s ease, transform .35s var(--ease-out);
}
.services_1 .sr__card:hover .icon { background: var(--main-clr); color: #fff; transform: scale(1.06); }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
    transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 18px 42px rgba(37, 211, 102, .55); color: #fff; }
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: whatsapp-pulse 2.4s infinite;
    z-index: -1;
}
@keyframes whatsapp-pulse {
    0%   { transform: scale(1); opacity: .55; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}
.whatsapp-float__label {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .3s ease, transform .3s var(--ease-out);
    box-shadow: var(--shadow-md);
}
.whatsapp-float:hover .whatsapp-float__label { opacity: 1; transform: translateX(0); }

@media (max-width: 575px) {
    .whatsapp-float { width: 52px; height: 52px; font-size: 26px; right: 16px; bottom: 16px; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 6px 24px rgba(5, 31, 13, .12);
    transition: box-shadow .4s ease;
}
.header.is-scrolled { box-shadow: 0 10px 30px rgba(5, 31, 13, .18); }
.header .header__bottom { padding: 12px 0; }
.header .header__bottom_logo img {
    width: 110px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(48, 102, 95, .35);
}
.header__bottom_navbar .menu__list a { position: relative; }
.header__bottom_navbar .menu__list a.active { color: var(--secondary-clr); }
.header__bottom_navbar .menu__list a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    border-radius: 2px;
    background: var(--secondary-clr);
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .85);
    color: var(--secondary-clr);
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background .3s ease, transform .3s var(--ease-out), rotate .35s var(--ease-out);
}
.menu-toggle:hover { background: #fff; transform: translateY(-2px); }
.menu-toggle.is-open { rotate: 90deg; background: #fff; }

body.menu-open { overflow: hidden; }

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 31, 13, .55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
.menu-backdrop.is-visible { opacity: 1; visibility: visible; }

@media (max-width: 1199px) {
    .header__bottom_navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        min-height: auto;
        min-width: 300px;
        max-width: 85vw;
        background-color: var(--btn-clr);
        box-shadow: var(--shadow-lg);
        transition: left .45s cubic-bezier(.22, .61, .36, 1);
        overflow-y: auto;
        max-height: calc(100vh - 80px);
        padding: 20px 0 28px;
        border-bottom-right-radius: var(--radius-lg);
    }
    .header__bottom_navbar.is-open { left: 0; }
    .header__bottom_navbar .menu__list { flex-direction: column; gap: 2px; }
    .header__bottom_navbar .menu__list li { margin-bottom: 2px; padding: 0 24px; opacity: 0; transform: translateX(-24px); }
    .header__bottom_navbar.is-open .menu__list li {
        opacity: 1;
        transform: translateX(0);
        transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
    }
    .header__bottom_navbar.is-open .menu__list li:nth-child(1) { transition-delay: .08s; }
    .header__bottom_navbar.is-open .menu__list li:nth-child(2) { transition-delay: .14s; }
    .header__bottom_navbar.is-open .menu__list li:nth-child(3) { transition-delay: .2s; }
    .header__bottom_navbar.is-open .menu__list li:nth-child(4) { transition-delay: .26s; }
    .header__bottom_navbar.is-open .menu__list li:nth-child(5) { transition-delay: .32s; }
    .header__bottom_navbar .menu__list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 14px;
        border-radius: 10px;
        color: var(--secondary-clr);
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        transition: background .25s ease, color .25s ease, transform .25s var(--ease-out);
    }
    .header__bottom_navbar .menu__list a:hover { background: rgba(255, 255, 255, .45); transform: translateX(4px); }
    .header__bottom_navbar .menu__list a.active { background: rgba(255, 255, 255, .6); color: var(--main-clr); }
    .header__bottom_navbar .menu__list a.active::after { display: none; }
}

/* ==========================================================================
   About white card
   ========================================================================== */

.white__card {
    background-color: #fff;
    padding: 34px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.white__card h4 { color: var(--main-clr) !important; }
.white__card p { color: var(--gry-clr) !important; }

.about_1 { position: relative; overflow: hidden; }
.about_1 .about__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { position: relative; overflow: hidden; }
.footer__info_row { row-gap: 34px; }
.footer .box h3.footer__info_group {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    letter-spacing: .3px;
}
.footer__blurb {
    color: rgba(255, 255, 255, .72);
    line-height: 26px;
    font-size: 15px;
    margin-bottom: 22px;
    max-width: 340px;
}
.footer__socal { gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer__socal li { margin: 0; }
.footer__socal a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    transition: all .35s var(--ease-out);
}
.footer__socal a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }

.footer__info_links { list-style: none; margin: 0; padding: 0; }
.footer__info_links li { margin-bottom: 12px; }
.footer__info_links li:last-child { margin-bottom: 0; }
.footer__info_links a {
    color: rgba(255, 255, 255, .78);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: color .3s ease, transform .3s var(--ease-out);
}
.footer__info_links a::before {
    content: '\203A';
    color: var(--gold);
    font-weight: 700;
    transition: transform .3s var(--ease-out);
}
.footer__info_links a:hover { color: var(--gold); transform: translateX(4px); }
.footer__info_links a:hover::before { transform: translateX(2px); }

.footer__info_contact li i { color: var(--gold); }
.footer__info_contact li p,
.footer__info_contact li a { color: rgba(255, 255, 255, .85); font-size: 15px; }
.footer__info_contact li a:hover { color: var(--gold); }

@media (max-width: 991px) {
    .footer__info { gap: 24px; }
    .footer__blurb { max-width: 100%; }
}

/* ==========================================================================
   Page header / breadcrumb
   ========================================================================== */

.page__header { background: linear-gradient(135deg, #142220 0%, #25534C 55%, #417972 100%); }
.page__header .title h2 { font-family: 'Outfit', sans-serif; letter-spacing: -.5px; }
.breadcrumb a, .breadcrumb span { color: rgba(255, 255, 255, .78); font-size: 14px; }
.breadcrumb a:hover { color: var(--gold); }

/* ==========================================================================
   Generic reveal on scroll
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .premium-slider__track { transition: none !important; }
    .menu-toggle.is-open { rotate: 0deg; }
}

/* ==========================================================================
   Responsive layer
   ========================================================================== */

/* ---------- Mobile header ---------- */
@media (max-width: 1199px) {
    .header .header__bottom { padding: 10px 0; }
    .header .header__bottom_logo img { width: 92px; height: 30px; }
    .header__bottom .container > .d-flex { gap: 10px; }
    .header__cta { display: none !important; }
}

/* ---------- Hero banner ---------- */
@media (max-width: 991px) {
    .banner { padding-top: 150px; padding-bottom: 70px; }
    .banner__content_title h3 { font-size: 38px; line-height: 46px; }
    .banner__content_title p { margin-top: 24px; font-size: 16px; line-height: 26px; }
    .banner__content_title h5 { font-size: 12px; }
}
@media (max-width: 575px) {
    .banner { padding-top: 130px; padding-bottom: 56px; }
    .banner__content_title h3 { font-size: 30px; line-height: 37px; }
    .banner__content_title p { margin-top: 18px; font-size: 15px; }
    .banner__content .common__btn,
    .banner__content .transparent__btn { width: 100%; justify-content: center; text-align: center; }
    .banner__content .d-flex { flex-direction: column; }
    .banner .banner__shap_3 { width: 300px; height: 300px; }
    .banner .banner__shap_4 { width: 280px; height: 280px; }
}

/* ---------- Sections & spacing ---------- */
@media (max-width: 991px) {
    .pt__130, .py__130 { padding-top: 70px; }
    .pb__130 { padding-bottom: 70px; }
    .py__150 { padding-top: 70px; padding-bottom: 70px; }
    .py__200 { padding-top: 90px; padding-bottom: 90px; }
    .footer__copyright { margin-top: 60px; }
    .t__40 { font-size: 30px; line-height: 38px; }
}
@media (max-width: 575px) {
    .t__40 { font-size: 26px; line-height: 33px; }
    .t__22 { font-size: 19px; line-height: 26px; }
    .white__card { padding: 24px 20px; }
    .about_1 .about__img { margin-bottom: 20px; }
    .title__area p, .section-description { font-size: 15px; line-height: 25px; }
}

/* ---------- Services cards ---------- */
@media (max-width: 575px) {
    .services_1 .wapper { grid-template-columns: 1fr; gap: 22px; }
    .services_1 .sr__card .card__footer h3 { font-size: 18px; }
}

/* ---------- Page header ---------- */
@media (max-width: 575px) {
    .page__header { padding: 120px 0 60px; }
    .page__header .t__40 { font-size: 28px; }
}

/* ---------- Contact ---------- */
@media (max-width: 575px) {
    .address .row { row-gap: 18px; }
    .add__card { padding: 22px 16px; }
    .contact .contact__form input,
    .contact .contact__form textarea { font-size: 15px; }
}

/* ---------- Footer ---------- */
@media (max-width: 575px) {
    .footer__info { padding-top: 24px; }
    .footer__info_contact li { flex-wrap: wrap; }
    .footer__copyright p { font-size: 13px; }
}
