@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
    --primary: #074bc8;
    --primary-dark: #062a79;
    --primary-deep: #041d55;
    --primary-light: #eaf2ff;
    --secondary: #ff8500;
    --secondary-dark: #e66f00;
    --secondary-light: #fff1df;
    --success: #168a4a;
    --danger: #d9363e;
    --dark: #101828;
    --dark-soft: #344054;
    --text: #475467;
    --text-light: #667085;
    --border: #e4e7ec;
    --border-light: #eef1f5;
    --background: #f7f9fc;
    --white: #fff;
    --header-height: 82px;
    --container-width: 1240px;
    --shadow-small: 0 8px 24px rgba(16, 24, 40, .07);
    --shadow-medium: 0 18px 45px rgba(16, 24, 40, .12);
    --shadow-large: 0 32px 80px rgba(0, 28, 83, .18);
    --transition: .25s ease
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6
}

body.sidebar-open {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none
}

button,
input {
    font: inherit
}

button {
    border: 0;
    cursor: pointer
}

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

ion-icon {
    pointer-events: none
}

.container {
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto
}

.section {
    padding: 90px 0
}

.page-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    visibility: hidden;
    background: rgba(5, 16, 42, .58);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: .25s
}

.page-overlay.active {
    visibility: visible;
    opacity: 1
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1300;
    width: min(360px, 92vw);
    height: 100dvh;
    overflow-y: auto;
    background: var(--white);
    box-shadow: var(--shadow-large);
    transform: translateX(-105%);
    transition: transform .3s ease
}

.sidebar.open {
    transform: translateX(0)
}

.sidebar-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 15px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light)
}

.sidebar-brand img {
    width: 88px;
    height: 62px;
    object-fit: contain
}

.sidebar-close,
.menu-button {
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--background);
    color: var(--dark);
    transition: var(--transition)
}

.sidebar-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px
}

.menu-button {
    width: 44px;
    height: 44px;
    font-size: 26px
}

.sidebar-close:hover,
.menu-button:hover {
    background: var(--primary-light);
    color: var(--primary)
}

.sidebar-search {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 20px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--background)
}

.sidebar-search ion-icon {
    color: var(--text-light);
    font-size: 21px
}

.sidebar-search input {
    width: 100%;
    height: 50px;
    border: 0;
    outline: 0;
    background: transparent
}

.sidebar-navigation {
    padding: 0 14px 24px
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 52px;
    margin-bottom: 4px;
    padding: 8px 12px;
    border-radius: 12px;
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition)
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--primary-light);
    color: var(--primary)
}

.sidebar-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: var(--background);
    font-size: 19px
}

.sidebar-divider {
    height: 1px;
    margin: 16px 10px;
    background: var(--border-light)
}

.sidebar-app-box {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 0 20px 28px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--primary-deep), var(--primary));
    color: var(--white)
}

.sidebar-app-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .14);
    font-size: 24px
}

.sidebar-app-box h3 {
    font-size: 14px
}

.sidebar-app-box p {
    margin: 4px 0 8px;
    color: rgba(255, 255, 255, .74);
    font-size: 12px
}

.sidebar-app-box a {
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(228, 231, 236, .8);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    transition: .25s
}

.site-header.header-scrolled {
    box-shadow: 0 10px 35px rgba(16, 24, 40, .09)
}

.header-container {
    display: flex;
    width: min(calc(100% - 40px), 1380px);
    height: 100%;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.header-left,
.header-actions {
    display: flex;
    align-items: center
}

.header-left {
    gap: 14px
}

.header-actions {
    gap: 10px
}

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

.header-logo img {
    width: 160px;
    height: 92px;
    object-fit: contain
}

.header-logo-text {
    display: flex;
    flex-direction: column;
    color: var(--primary-deep);
    line-height: 1.05;
    text-transform: uppercase
}

.header-logo-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800
}

.header-logo-text span {
    margin-top: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em
}

.desktop-navigation {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 30px
}

.desktop-navigation a {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 600
}

.desktop-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 5px 5px 0 0;
    background: var(--primary);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: .25s
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
    color: var(--primary)
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after {
    opacity: 1;
    transform: scaleX(1)
}

.login-button,
.header-cta {
    display: flex;
    height: 48px;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    transition: .25s
}

.login-button {
    color: var(--dark-soft)
}

.login-button:hover {
    background: var(--primary-light);
    color: var(--primary)
}

.header-cta {
    padding: 0 17px;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(7, 75, 200, .2);
    animation: soft-pulse 3s ease-in-out infinite
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px)
}

.hero-section {
    position: relative;
    min-height: 710px;
    overflow: hidden;
    background-image: linear-gradient(115deg, rgba(3, 20, 61, .94) 0%, rgba(5, 48, 127, .88) 48%, rgba(7, 75, 200, .76) 100%), url("../images/hero-marondera-background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.hero-section::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent);
    animation: background-move 15s linear infinite
}

.hero-pattern {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%
}

.hero-pattern-one {
    top: -300px;
    right: -180px;
    width: 760px;
    height: 760px
}

.hero-pattern-two {
    right: 270px;
    bottom: -380px;
    width: 700px;
    height: 700px
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 680px;
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr);
    gap: 70px;
    padding: 40px 0 80px
}

.hero-content {
    max-width: 730px;
    animation: hero-content-enter .85s ease both
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    font-weight: 700
}

.hero-label ion-icon {
    color: var(--secondary);
    font-size: 18px
}

.hero-content h1 {
    max-width: 720px;
    margin-bottom: 22px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.04
}

.hero-content h1 span {
    display: block;
    color: var(--secondary)
}

.hero-content>p {
    max-width: 660px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    line-height: 1.8
}

.hero-search {
    display: flex;
    max-width: 760px;
    min-height: 74px;
    align-items: center;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 26px 60px rgba(0, 16, 55, .32)
}

.search-field {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    padding: 0 16px
}

.search-main-field {
    flex: 1
}

.search-field ion-icon {
    color: var(--primary);
    font-size: 22px
}

.search-field input {
    width: 100%;
    height: 50px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--dark);
    font-size: 14px
}

.search-submit {
    display: flex;
    height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 26px;
    border-radius: 13px;
    background: var(--secondary);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    transition: .25s
}

.search-submit:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px)
}

.hero-action-buttons {
    display: flex;
    margin-top: 20px
}

.whatsapp-channel-button {
    display: inline-flex;
    min-height: 60px;
    align-items: center;
    gap: 12px;
    padding: 7px 17px 7px 8px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    background: linear-gradient(135deg, #13a950, #08783a);
    color: var(--white);
    animation: whatsapp-pulse 3s ease-in-out infinite;
    transition: .25s
}

.whatsapp-channel-button:hover {
    transform: translateY(-3px)
}

.whatsapp-button-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .17);
    font-size: 26px
}

.whatsapp-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3
}

.whatsapp-button-text small {
    font-size: 9px;
    font-weight: 500;
    opacity: .76
}

.whatsapp-arrow {
    font-size: 19px
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px
}

.popular-searches strong {
    color: var(--white)
}

.popular-searches a {
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06)
}

.hero-visual {
    position: relative;
    display: flex;
    min-height: 470px;
    align-items: center;
    justify-content: center;
    animation: hero-visual-enter .95s .15s ease both
}

.hero-logo-card {
    position: relative;
    width: min(390px, 88%);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 36px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 35px 90px rgba(0, 15, 55, .35);
    animation: logo-card-float 6s 1s ease-in-out infinite
}

.hero-logo-card img {
    width: 100%;
    border-radius: 20px
}

.hero-slogan {
    margin-top: 18px;
    color: var(--primary-deep);
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-align: center
}

.hero-logo-glow {
    position: absolute;
    inset: -40px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(0, 106, 255, .22);
    filter: blur(35px)
}

.floating-card {
    position: absolute;
    display: flex;
    min-width: 205px;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 15px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-medium);
    color: var(--dark);
    animation: float-card 4s ease-in-out infinite
}

.floating-card-one {
    top: 40px;
    left: -30px
}

.floating-card-two {
    right: -25px;
    bottom: 75px;
    animation-delay: .8s
}

.floating-card-three {
    bottom: -10px;
    left: 30px;
    animation-delay: 1.5s
}

.floating-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 23px
}

.floating-card strong,
.floating-card small {
    display: block
}

.floating-card strong {
    font-size: 13px
}

.floating-card small {
    font-size: 10px;
    color: var(--text-light)
}

.hero-bottom-wave {
    position: absolute;
    right: -5%;
    bottom: -2px;
    left: -5%;
    height: 58px;
    border-radius: 50% 50% 0 0/100% 100% 0 0;
    background: var(--white)
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px
}

.section-kicker {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase
}

.section-heading h2,
.centered-heading h2 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.15
}

.section-heading p,
.centered-heading p {
    max-width: 650px;
    color: var(--text-light);
    font-size: 15px
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800
}

.centered-heading {
    max-width: 710px;
    margin: 0 auto 45px;
    text-align: center
}

.categories-section {
    padding-top: 70px
}

.category-carousel-wrap {
    position: relative
}

.category-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    overflow-x: auto;
    gap: 16px;
    padding: 4px 4px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

.category-grid::-webkit-scrollbar {
    display: none
}

.category-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-small);
    scroll-snap-align: start;
    transition: .25s
}

.category-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px)
}

.category-icon {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border-radius: 16px;
    font-size: 27px
}

.category-card h3 {
    color: var(--dark);
    font-size: 14px;
    font-weight: 800
}

.category-card p {
    font-size: 11px;
    color: var(--text-light)
}

.category-arrow {
    margin-left: auto;
    color: #98a2b3
}

.category-orange {
    background: #fff0df;
    color: #f27500
}

.category-blue {
    background: #e8f0ff;
    color: #185ac6
}

.category-green {
    background: #e6f8ee;
    color: #128249
}

.category-red {
    background: #ffeaeb;
    color: #d9363e
}

.category-purple {
    background: #f1eaff;
    color: #7047d7
}

.category-dark {
    background: #e9edf3;
    color: #344054
}

.category-cyan {
    background: #e3f8fc;
    color: #0785a1
}

.category-pink {
    background: #ffe9f2;
    color: #c93d73
}

.category-scroll-button {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    color: var(--primary);
    font-size: 20px;
    transform: translateY(-50%)
}

.category-scroll-button.left {
    left: -18px
}

.category-scroll-button.right {
    right: -18px
}

.promo-section {
    padding-top: 20px
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px
}

.promo-banner {
    position: relative;
    display: flex;
    min-height: 340px;
    overflow: hidden;
    align-items: center;
    border-radius: 30px;
    color: var(--white)
}

.promo-banner-primary {
    background: linear-gradient(130deg, #041d55, #0754d0)
}

.promo-banner-secondary {
    background: linear-gradient(130deg, #ff9500, #ff7500)
}

.promo-banner-content {
    position: relative;
    z-index: 3;
    width: 68%;
    padding: 45px
}

.promo-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: .78
}

.promo-banner h2 {
    margin: 13px 0 14px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(25px, 2.5vw, 36px);
    line-height: 1.18
}

.promo-banner p {
    margin-bottom: 24px;
    font-size: 13px;
    opacity: .77
}

.light-button,
.dark-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800
}

.light-button {
    background: var(--white);
    color: var(--primary)
}

.dark-button {
    background: var(--primary-deep);
    color: var(--white)
}

.promo-graphic {
    position: absolute;
    right: -35px;
    bottom: -35px;
    display: grid;
    width: 260px;
    height: 260px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    font-size: 120px
}

.promo-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 50%
}

.promo-circle-one {
    width: 340px;
    height: 340px
}

.promo-circle-two {
    width: 430px;
    height: 430px
}

.listings-section {
    background: var(--background)
}

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

.listing-card {
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 8px 28px rgba(16, 24, 40, .05);
    transition: .25s
}

.listing-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px)
}

.listing-image {
    position: relative;
    display: block;
    height: 205px;
    overflow: hidden
}

.image-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    font-size: 76px;
    transition: .45s
}

.listing-card:hover .image-placeholder {
    transform: scale(1.06)
}

.placeholder-food {
    background: linear-gradient(140deg, #ff9a3d, #ce5000);
    color: #fff
}

.placeholder-shop {
    background: linear-gradient(140deg, #2c6bd1, #063183);
    color: #fff
}

.placeholder-service {
    background: linear-gradient(140deg, #269c60, #075c35);
    color: #fff
}

.placeholder-place {
    background: linear-gradient(140deg, #5ba86c, #1b5930);
    color: #fff
}

.listing-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--secondary);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase
}

.favourite-button {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .93);
    font-size: 20px
}

.favourite-button.active {
    background: var(--danger);
    color: #fff
}

.listing-content {
    padding: 19px
}

.listing-category {
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase
}

.listing-content h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 16px
}

.listing-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 11px
}

.listing-rating ion-icon {
    color: #ffae00
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 11px
}

.listing-location ion-icon {
    color: var(--secondary)
}

.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light)
}

.open-status {
    position: relative;
    padding-left: 15px;
    color: var(--success);
    font-size: 10px;
    font-weight: 800
}

.open-status::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    content: "";
    transform: translateY(-50%)
}

.listing-footer a {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary)
}

.experience-section {
    padding: 95px 0
}

.experience-banner {
    position: relative;
    display: flex;
    min-height: 510px;
    overflow: hidden;
    align-items: center;
    padding: 70px;
    border-radius: 38px;
    background: radial-gradient(circle at 82% 25%, rgba(80, 151, 255, .35), transparent 28%), linear-gradient(130deg, #031743, #063995 60%, #0754d0);
    box-shadow: var(--shadow-large)
}

.experience-content {
    position: relative;
    z-index: 2;
    width: 58%
}

.experience-label {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase
}

.experience-content h2 {
    margin: 16px 0 20px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(35px, 4.4vw, 61px);
    line-height: 1.08
}

.experience-content h2 span {
    color: var(--secondary)
}

.experience-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .73)
}

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

.primary-button,
.outline-light-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800
}

.primary-button {
    background: var(--secondary);
    color: #fff
}

.outline-light-button {
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.experience-phone {
    position: absolute;
    right: 9%;
    bottom: -70px
}

.phone-frame {
    width: 270px;
    height: 535px;
    padding: 12px;
    border: 7px solid #15223d;
    border-radius: 44px;
    background: #1d2a45;
    box-shadow: 0 35px 75px rgba(0, 7, 30, .45);
    transform: rotate(5deg)
}

.phone-speaker {
    width: 80px;
    height: 7px;
    margin: 0 auto 8px;
    border-radius: 10px;
    background: #0f182b
}

.phone-screen {
    height: calc(100% - 15px);
    padding: 18px 14px;
    border-radius: 31px;
    background: #f5f7fb
}

.app-header {
    display: flex;
    justify-content: center;
    margin-bottom: 16px
}

.app-header img {
    width: 92px
}

.app-search {
    display: flex;
    height: 38px;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 0 11px;
    border-radius: 10px;
    background: #fff;
    color: #98a2b3;
    font-size: 9px
}

.app-category-row {
    display: grid;
    margin-bottom: 15px;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px
}

.app-category-row span {
    display: grid;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary)
}

.app-list-card {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    padding: 10px;
    border-radius: 12px;
    background: #fff
}

.app-list-image {
    display: grid;
    width: 53px;
    height: 53px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(140deg, #ffaf53, #f17300);
    color: #fff
}

.app-list-lines {
    display: block;
    flex: 1
}

.app-list-lines i {
    display: block;
    height: 5px;
    margin-bottom: 6px;
    border-radius: 10px;
    background: #dfe4ec
}

.app-list-lines i:first-child {
    width: 85%;
    background: #667085
}

.app-list-lines i:nth-child(2) {
    width: 65%
}

.app-list-lines i:last-child {
    width: 45%
}

.how-section {
    background: var(--background)
}

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

.step-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-small);
    text-align: center;
    transition: .25s
}

.step-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px)
}

.step-number {
    position: absolute;
    top: 8px;
    right: 19px;
    color: #eef2f7;
    font: 800 64px/1 "Manrope"
}

.step-icon {
    position: relative;
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 21px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 33px
}

.step-card h3 {
    margin-bottom: 9px;
    color: var(--dark)
}

.step-card p {
    font-size: 13px;
    color: var(--text-light)
}

.business-cta-section {
    padding: 70px 0 90px;
    background: var(--background)
}

.business-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 36px 42px;
    border: 1px solid #ffe0b8;
    border-radius: 25px;
    background: linear-gradient(125deg, #fff8ed, #ffead1)
}

.business-cta-icon {
    display: grid;
    width: 75px;
    height: 75px;
    place-items: center;
    border-radius: 21px;
    background: var(--secondary);
    color: #fff;
    font-size: 36px
}

.business-cta-content {
    flex: 1
}

.business-cta-content>span {
    color: var(--secondary-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase
}

.business-cta-content h2 {
    margin: 4px 0 7px;
    color: var(--dark);
    font-family: "Manrope";
    font-size: clamp(24px, 2.5vw, 34px)
}

.business-cta-content p {
    font-size: 13px
}

.business-cta-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: 13px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800
}

.ai-ask-button {
    position: fixed;
    right: 22px;
    bottom: 110px;
    z-index: 1150;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    background: linear-gradient(135deg, #5b2fd4, #074bc8);
    color: #fff;
    box-shadow: 0 16px 38px rgba(50, 32, 150, .35);
    animation: ai-bounce 2.3s ease-in-out infinite
}

.ai-ask-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    font-size: 22px
}

.ai-ask-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.ai-ask-text strong {
    font-size: 13px
}

.ai-ask-text small {
    margin-top: 4px;
    font-size: 9px;
    opacity: .78
}

.site-footer {
    background: #061839;
    color: rgba(255, 255, 255, .7)
}

.footer-grid {
    display: grid;
    padding: 72px 0 55px;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 45px
}

.footer-brand img {
    width: 132px;
    margin-bottom: 20px;
    border-radius: 10px
}

.footer-brand p {
    max-width: 340px;
    margin-bottom: 14px;
    font-size: 12px
}

.footer-brand strong {
    color: #fff;
    font-size: 12px
}

.social-links {
    display: flex;
    gap: 9px;
    margin-top: 22px
}

.social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: #fff
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px
}

.footer-column h3 {
    margin-bottom: 9px;
    color: #fff;
    font-size: 13px
}

.footer-column>a,
.footer-column p {
    font-size: 11px
}

.footer-contact a,
.footer-contact p {
    display: flex;
    gap: 8px
}

.footer-contact ion-icon {
    color: var(--secondary)
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 10px
}

.footer-bottom>div {
    display: flex;
    gap: 20px
}

.mobile-bottom-navigation {
    display: none
}

.reveal-element {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms)
}

.reveal-element.revealed {
    opacity: 1;
    transform: none
}

@keyframes float-card {
    50% {
        transform: translateY(-10px)
    }
}

@keyframes hero-content-enter {
    from {
        opacity: 0;
        transform: translateY(38px)
    }
}

@keyframes hero-visual-enter {
    from {
        opacity: 0;
        transform: translateX(50px) scale(.94)
    }
}

@keyframes logo-card-float {

    0%,
    100% {
        transform: rotate(2deg) translateY(0)
    }

    50% {
        transform: rotate(0) translateY(-12px)
    }
}

@keyframes soft-pulse {
    50% {
        box-shadow: 0 14px 38px rgba(7, 75, 200, .38)
    }
}

@keyframes whatsapp-pulse {
    50% {
        box-shadow: 0 18px 42px rgba(20, 177, 89, .42)
    }
}

@keyframes background-move {
    to {
        background-position: 96px 96px
    }
}

@keyframes ai-bounce {

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

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

@media(max-width:1220px) {
    .desktop-navigation {
        display: none
    }

    .hero-container {
        grid-template-columns: 1.15fr .85fr;
        gap: 30px
    }

    .listing-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr)
    }

    .footer-contact {
        grid-column: 2/-1
    }
}

@media(max-width:980px) {
    :root {
        --header-height: 74px
    }

    .header-logo-text {
        display: none
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 75px;
        padding-bottom: 130px;
        text-align: center
    }

    .hero-content {
        max-width: 850px;
        margin: auto
    }

    .hero-content h1,
    .hero-content>p {
        margin-left: auto;
        margin-right: auto
    }

    .hero-action-buttons,
    .popular-searches {
        justify-content: center
    }

    .hero-visual {
        width: min(550px, 100%);
        margin: auto
    }

    .promo-grid {
        grid-template-columns: 1fr
    }

    .experience-banner {
        min-height: 690px;
        align-items: flex-start;
        padding: 55px
    }

    .experience-content {
        width: 100%;
        text-align: center
    }

    .experience-actions {
        justify-content: center
    }

    .experience-phone {
        right: 50%;
        bottom: -155px;
        transform: translateX(50%)
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .business-cta {
        flex-wrap: wrap
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-contact {
        grid-column: auto
    }
}

@media(max-width:720px) {
    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom))
    }

    .container {
        width: min(calc(100% - 28px), var(--container-width))
    }

    .section {
        padding: 68px 0
    }

    .site-header {
        height: 68px
    }

    .header-container {
        width: calc(100% - 24px)
    }

    .header-logo img {
        margin-left: -20px;
        margin-top: -4px;
        width: 155px;
        height: 92px;
    }

    .login-button {
        display: none
    }

    .header-cta {
        height: 43px
    }

    .header-cta span {
        display: none
    }

    .hero-container {
        padding-top: 58px;
        padding-bottom: 110px
    }

    .hero-content h1 {
        font-size: clamp(38px, 12vw, 54px)
    }

    .hero-content>p {
        font-size: 14px
    }

    .hero-search {
        display: grid;
        grid-template-columns: 1fr
    }

    .search-submit {
        width: 100%;
        height: 52px;
        margin-top: 7px
    }

    .popular-searches {
        display: none
    }

    .hero-visual {
        min-height: 350px
    }

    .hero-logo-card {
        width: min(310px, 80%);
        padding: 18px
    }

    .floating-card {
        min-width: auto;
        padding: 10px
    }

    .floating-card small {
        display: none
    }

    .floating-card-one {
        left: 0
    }

    .floating-card-two {
        right: 0
    }

    .floating-card-three {
        left: 5px
    }

    /* Compact mobile hero visual: no oversized tilted card or overlapping labels */
    .hero-section {
        min-height: auto;
        background-position: 62% center
    }

    .hero-container {
        gap: 28px
    }

    .hero-visual {
        display: grid;
        min-height: 0;
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 0;
        animation: none
    }

    .hero-logo-card {
        display: flex;
        width: 100%;
        min-height: 112px;
        grid-column: 1 / -1;
        align-items: center;
        gap: 14px;
        padding: 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 18px 45px rgba(0, 15, 55, .24);
        animation: none;
        transform: none
    }

    .hero-logo-card img {
        width: 92px;
        flex: 0 0 92px;
        border-radius: 13px
    }

    .hero-slogan {
        margin: 0;
        font-size: 13px;
        line-height: 1.45;
        text-align: left
    }

    .hero-logo-glow {
        display: none
    }

    .floating-card {
        position: static;
        min-width: 0;
        min-height: 78px;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        padding: 9px 5px;
        border-radius: 14px;
        text-align: center;
        animation: none;
        transform: none
    }

    .floating-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 18px
    }

    .floating-card strong {
        font-size: 10px;
        line-height: 1.15
    }

    .floating-card small {
        display: none
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px
    }

    .category-scroll-button {
        display: none
    }

    .category-grid {
        grid-auto-columns: minmax(150px, 46vw);
        grid-template-rows: repeat(2, 115px);
        grid-auto-flow: column;
        gap: 10px;
        margin-inline: -14px;
        padding-inline: 14px
    }

    .category-card {
        min-height: 115px;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 13px
    }

    .category-icon {
        width: 42px;
        height: 42px;
        font-size: 21px
    }

    .category-card h3 {
        font-size: 12px
    }

    .category-card p {
        display: -webkit-box;
        overflow: hidden;
        font-size: 9px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2
    }

    .category-arrow {
        position: absolute;
        right: 12px;
        bottom: 12px
    }

    .promo-banner {
        min-height: 390px;
        align-items: flex-start
    }

    .promo-banner-content {
        width: 100%;
        padding: 32px 28px
    }

    .promo-graphic {
        right: -45px;
        bottom: -55px;
        width: 210px;
        height: 210px;
        font-size: 92px
    }

    .listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px
    }

    .listing-card {
        border-radius: 15px
    }

    .listing-image {
        height: 145px
    }

    .image-placeholder {
        font-size: 48px
    }

    .listing-badge {
        top: 8px;
        left: 8px;
        padding: 5px 7px;
        font-size: 7px
    }

    .favourite-button {
        top: 7px;
        right: 7px;
        width: 31px;
        height: 31px
    }

    .listing-content {
        padding: 12px
    }

    .listing-category {
        font-size: 7px
    }

    .listing-content h3 {
        display: -webkit-box;
        min-height: 36px;
        overflow: hidden;
        font-size: 12px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2
    }

    .listing-rating {
        font-size: 8px
    }

    .listing-location {
        font-size: 8px
    }

    .listing-footer {
        margin-top: 10px;
        padding-top: 9px
    }

    .open-status {
        font-size: 7px
    }

    .listing-footer a {
        width: 27px;
        height: 27px
    }

    .experience-banner {
        min-height: 690px;
        padding: 38px 22px
    }

    .experience-content h2 {
        font-size: 37px
    }

    .experience-actions {
        flex-direction: column
    }

    .primary-button,
    .outline-light-button {
        width: 100%;
        justify-content: center
    }

    .phone-frame {
        width: 205px;
        height: 405px
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .step-card {
        min-height: 220px;
        padding: 23px 14px
    }

    .step-card:last-child {
        grid-column: 1/-1;
        min-height: auto
    }

    .step-number {
        font-size: 42px
    }

    .step-icon {
        width: 53px;
        height: 53px;
        font-size: 25px
    }

    .business-cta {
        display: block;
        padding: 30px 24px;
        text-align: center
    }

    .business-cta-icon {
        margin: 0 auto 20px
    }

    .business-cta-button {
        width: 100%;
        justify-content: center;
        margin-top: 25px
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1/-1
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0
    }

    .mobile-bottom-navigation {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1100;
        display: grid;
        height: calc(68px + env(safe-area-inset-bottom));
        padding: 6px 8px env(safe-area-inset-bottom);
        border-top: 1px solid var(--border);
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -8px 30px rgba(16, 24, 40, .1);
        grid-template-columns: repeat(5, 1fr)
    }

    .mobile-bottom-navigation>a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        color: var(--text-light);
        font-size: 9px;
        font-weight: 700
    }

    .mobile-bottom-navigation>a.active {
        color: var(--primary)
    }

    .mobile-bottom-navigation ion-icon {
        font-size: 22px
    }

    .mobile-search-button {
        position: relative
    }

    .mobile-search-button>span {
        position: absolute;
        top: -26px;
        display: grid;
        width: 54px;
        height: 54px;
        place-items: center;
        border: 5px solid #fff;
        border-radius: 50%;
        background: var(--primary);
        color: #fff
    }

    .mobile-search-button small {
        margin-top: 29px
    }

    .ai-ask-button {
        right: 12px;
        bottom: 88px;
        padding: 8px
    }

    .ai-ask-text {
        display: none
    }

    .ai-ask-icon {
        width: 46px;
        height: 46px
    }
}

@media(max-width:430px) {
    .hero-container {
        padding-top: 42px;
        padding-bottom: 92px
    }

    .hero-content h1 {
        font-size: clamp(34px, 11vw, 44px)
    }

    .hero-label {
        font-size: 10px
    }

    .hero-logo-card {
        min-height: 98px;
        padding: 12px
    }

    .hero-logo-card img {
        width: 78px;
        flex-basis: 78px
    }

    .hero-slogan {
        font-size: 11px
    }

    .floating-card {
        min-height: 72px
    }

    .listing-grid {
        gap: 8px
    }

    .listing-image {
        height: 128px
    }

    .listing-content {
        padding: 10px
    }

    .listing-content h3 {
        font-size: 11px
    }

    .listing-rating span {
        display: none
    }

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

    .footer-brand,
    .footer-contact {
        grid-column: auto
    }
}

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

    .listing-image {
        height: 190px
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: .01ms !important
    }

    .reveal-element {
        opacity: 1;
        transform: none
    }
}

/* =========================================================
   EDITORIAL IMAGE HERO + MOBILE SEARCH MODAL
   ========================================================= */
body.search-modal-open {
    overflow: hidden;
}

.hero-section {
    min-height: min(820px, calc(100vh - var(--header-height)));
    background-image:
        linear-gradient(90deg, rgba(2, 19, 56, .95) 0%, rgba(3, 35, 94, .86) 42%, rgba(4, 51, 132, .33) 72%, rgba(4, 51, 132, .08) 100%),
        url("../images/hero-marondera-background.jpg");
    background-position: center;
    background-size: cover;
}

.hero-section::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 55%, rgba(3, 24, 68, .25));
    mask-image: none;
}

.hero-container {
    display: block;
    min-height: min(790px, calc(100vh - var(--header-height)));
    padding: 85px 0 105px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    max-width: 790px;
    font-size: clamp(58px, 7vw, 104px);
    line-height: .94;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.hero-content h1 span {
    margin-top: 12px;
}

.hero-content>p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.65;
}

.hero-visual {
    display: none;
}

.hero-pattern {
    opacity: .5;
}

.mobile-hero-search-trigger {
    display: none;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    visibility: hidden;
    place-items: center;
    padding: 20px;
    opacity: 0;
    transition: visibility .35s, opacity .35s ease;
}

.search-modal.open {
    visibility: visible;
    opacity: 1;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 12, 34, .72);
    backdrop-filter: blur(10px);
}

.search-modal-panel {
    position: relative;
    width: min(650px, 100%);
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 30px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 35px 100px rgba(0, 12, 45, .38);
    opacity: 0;
    transform: translateY(40px) scale(.92);
    transition: opacity .35s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
}

.search-modal.open .search-modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.search-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--background);
    color: var(--dark);
    font-size: 25px;
}

.search-modal-kicker {
    color: var(--secondary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.search-modal-panel h2 {
    margin: 8px 48px 10px 0;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: clamp(29px, 5vw, 45px);
    line-height: 1.08;
}

.search-modal-panel>p {
    max-width: 520px;
    color: var(--text-light);
    font-size: 13px;
}

.search-modal-form {
    display: flex;
    gap: 10px;
    margin-top: 26px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.search-modal-field {
    display: flex;
    flex: 1;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
}

.search-modal-field ion-icon {
    color: var(--primary);
    font-size: 23px;
}

.search-modal-field input {
    width: 100%;
    height: 52px;
    border: 0;
    outline: 0;
    background: transparent;
}

.search-modal-form button {
    display: flex;
    min-width: 125px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border-radius: 13px;
    background: var(--secondary);
    color: #fff;
    font-weight: 800;
}

.search-modal-popular {
    margin-top: 20px;
}

.search-modal-popular>span {
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
}

.search-modal-popular>div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 9px;
}

.search-modal-popular a {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .hero-section {
        min-height: calc(100svh - var(--header-height));
        background-image:
            linear-gradient(180deg, rgba(2, 18, 52, .58) 0%, rgba(3, 30, 82, .72) 45%, rgba(3, 28, 77, .96) 100%),
            url("../images/hero-marondera-background.jpg");
        background-position: 67% center;
    }

    .hero-container {
        display: flex;
        min-height: calc(100svh - var(--header-height));
        align-items: flex-end;
        padding: 80px 0 112px;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        text-align: left;
    }

    .hero-label {
        margin-bottom: 16px;
    }

    .hero-content h1 {
        max-width: 390px;
        margin-bottom: 18px;
        font-size: clamp(43px, 13.5vw, 66px);
        line-height: .98;
    }

    .hero-content h1 span {
        margin-top: 7px;
    }

    .hero-content>p {
        max-width: 430px;
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-search {
        display: none;
    }

    .popular-searches {
        display: none;
    }

    .mobile-hero-search-trigger {
        display: inline-flex;
        min-height: 54px;
        align-items: center;
        gap: 10px;
        padding: 0 20px;
        border: 1px solid rgba(255, 255, 255, .34);
        border-radius: 999px;
        background: rgba(255, 255, 255, .95);
        color: var(--primary-deep);
        box-shadow: 0 18px 42px rgba(0, 18, 55, .3);
        font-size: 13px;
        font-weight: 800;
        animation: mobile-search-pulse 2.8s ease-in-out infinite;
    }

    .mobile-hero-search-trigger ion-icon {
        color: var(--secondary);
        font-size: 22px;
    }

    .hero-action-buttons {
        margin-top: 14px;
    }

    .whatsapp-channel-button {
        min-height: 54px;
    }

    .hero-bottom-wave {
        height: 30px;
    }

    .search-modal {
        align-items: end;
        padding: 0;
    }

    .search-modal-panel {
        width: 100%;
        padding: 32px 20px calc(28px + env(safe-area-inset-bottom));
        border-radius: 28px 28px 0 0;
        transform: translateY(105%);
    }

    .search-modal.open .search-modal-panel {
        transform: translateY(0);
    }

    .search-modal-form {
        flex-direction: column;
    }

    .search-modal-form button {
        min-height: 52px;
    }
}

@media (max-width: 430px) {
    .hero-container {
        padding-top: 54px;
        padding-bottom: 108px;
    }

    .hero-label {
        max-width: 285px;
        padding: 8px 11px;
        line-height: 1.3;
    }

    .hero-content h1 {
        font-size: clamp(40px, 13vw, 54px);
    }

    .whatsapp-button-text {
        font-size: 12px;
    }

    .search-modal-panel h2 {
        font-size: 31px;
    }
}

@keyframes mobile-search-pulse {
    50% {
        transform: translateY(-3px);
        box-shadow: 0 23px 50px rgba(0, 18, 55, .38);
    }
}