/* ============================================
   K9 DESIGN — Premium Dog Grooming
   Cyan / White / Soft Blue Brand System
   ============================================ */

:root {
    --cyan: #0fb7d3;
    --cyan-light: #a6e8f4;
    --cyan-mid: #12c1d2;
    --white: #ffffff;
    --off-white: #f4fbfd;
    --dark: #1a2530;
    --text-mid: #4a6070;
    --border: #dff2f6;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-sm: 0 4px 16px rgba(15, 183, 211, 0.08);
    --shadow-md: 0 12px 32px rgba(15, 183, 211, 0.12);
    --shadow-lg: 0 20px 50px rgba(26, 37, 48, 0.12);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    color: var(--dark);
    font-weight: 800;
}

p {
    color: var(--text-mid);
}

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

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

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-alt {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 12px 0 14px;
}

.section-header p {
    font-size: 1.05rem;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(15, 183, 211, 0.08);
    padding: 6px 16px;
    border-radius: 999px;
}

.section-label-light {
    color: var(--cyan-light);
    background: rgba(255, 255, 255, 0.08);
}

.hero-text .section-label {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    color: #0a8aa0;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.in-view > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   AMBIENT BACKGROUND ANIMATION
   ============================================ */

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    will-change: transform;
}

.blob-1 {
    width: 520px;
    height: 520px;
    top: -180px;
    left: -160px;
    background: radial-gradient(circle at 30% 30%, var(--cyan-light), transparent 70%);
    animation: float-blob-1 32s ease-in-out infinite;
}

.blob-2 {
    width: 460px;
    height: 460px;
    top: 40vh;
    right: -200px;
    background: radial-gradient(circle at 60% 40%, var(--cyan), transparent 70%);
    opacity: 0.18;
    animation: float-blob-2 38s ease-in-out infinite;
}

.blob-3 {
    width: 600px;
    height: 600px;
    bottom: -260px;
    left: 10%;
    background: radial-gradient(circle at 50% 50%, var(--cyan-mid), transparent 70%);
    opacity: 0.16;
    animation: float-blob-3 44s ease-in-out infinite;
}

@keyframes float-blob-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 80px) scale(1.08); }
}

@keyframes float-blob-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-70px, -50px) scale(1.12); }
}

@keyframes float-blob-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -60px) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .ambient-blob { animation: none; }
}

@media (max-width: 768px) {
    .ambient-blob { filter: blur(50px); opacity: 0.22; }
    .blob-1, .blob-2, .blob-3 { width: 320px; height: 320px; }
}

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

#mainNav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

#mainNav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

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

.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.nav-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.25s var(--ease);
    position: relative;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-book {
    background: var(--cyan);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Nav social icons */
.nav-social-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--text-mid);
    background: transparent;
    border: 1px solid var(--border);
    transition: color 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.nav-social:hover {
    color: var(--white);
    background: var(--cyan);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 24px;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 37, 48, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease);
    z-index: 150;
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(78vw, 320px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 100px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav .mobile-book {
    color: var(--cyan);
    font-weight: 700;
}

.mobile-nav-socials {
    display: flex;
    gap: 12px;
    padding: 18px 4px 4px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
}

.mobile-nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: all 0.22s var(--ease);
}

.mobile-nav-social:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--white);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 183, 211, 0.28);
}

.btn-outline {
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
}

.hero-text .btn-outline {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(15, 183, 211, 0.25);
    backdrop-filter: blur(6px);
}

.hero-text .btn-outline:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--cyan);
}

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

.hero {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #eafbfd 0%, var(--cyan-light) 55%, #8fe0ef 100%);
}

.hero-decor {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-decor .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    filter: blur(1px);
    animation: drift-soft 22s ease-in-out infinite;
}

.hero-decor .deco-circle.c1 {
    width: 70px;
    height: 70px;
    top: 8%;
    left: 48%;
    animation-delay: 0s;
}

.hero-decor .deco-circle.c2 {
    width: 40px;
    height: 40px;
    top: 38%;
    left: 6%;
    background: rgba(255, 255, 255, 0.28);
    animation-delay: -6s;
}

.hero-decor .deco-circle.c3 {
    width: 110px;
    height: 110px;
    top: 4%;
    right: 18%;
    background: rgba(255, 255, 255, 0.22);
    animation-delay: -12s;
}

.hero-decor .deco-circle.c4 {
    width: 26px;
    height: 26px;
    top: 70%;
    left: 38%;
    background: rgba(255, 255, 255, 0.4);
    animation-delay: -3s;
}

.hero-decor .deco-ring-target {
    position: absolute;
    top: 18%;
    right: 6%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1.5px dashed rgba(15, 183, 211, 0.22);
    animation: spin-slow 90s linear infinite;
}

.hero-decor .deco-paw {
    position: absolute;
    font-size: 5rem;
    opacity: 0.12;
    color: var(--white);
    animation: drift-soft 26s ease-in-out infinite;
}

.hero-decor .deco-paw.p1 {
    bottom: 6%;
    right: 4%;
    font-size: 7rem;
    animation-delay: -4s;
}

.hero-decor .deco-paw.p2 {
    top: 58%;
    right: 22%;
    font-size: 3.5rem;
    opacity: 0.16;
    animation-delay: -14s;
}

.hero-decor .deco-paw.p3 {
    bottom: 14%;
    left: 4%;
    font-size: 4rem;
    opacity: 0.08;
    animation-delay: -9s;
}

@keyframes drift-soft {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(14px, -16px) scale(1.05); }
}

@media (max-width: 768px) {
    .hero-decor .deco-ring-target { width: 280px; height: 280px; }
    .hero-decor .deco-paw.p1 { font-size: 4.5rem; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    margin: 18px 0 18px;
}

.hero-text h1 span {
    color: var(--cyan);
}

.hero-text p {
    font-size: 1.08rem;
    max-width: 460px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-reassurance {
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
}

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

.hero-logo-wrap {
    position: relative;
    width: min(460px, 88vw);
    height: min(460px, 88vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-ring,
.hero-logo-ring2 {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(15, 183, 211, 0.22);
}

.hero-logo-ring {
    width: 100%;
    height: 100%;
    animation: spin-slow 60s linear infinite;
}

.hero-logo-ring2 {
    width: 84%;
    height: 84%;
    border-color: rgba(166, 232, 244, 0.5);
    animation: spin-slow-rev 80s linear infinite;
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

@keyframes spin-slow-rev {
    to { transform: rotate(-360deg); }
}

.hero-logo-img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    object-fit: contain;
    object-position: center center;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    animation: float-gentle 6s ease-in-out infinite;
    display: block;
    margin: auto;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-badge {
    position: absolute;
    bottom: 6%;
    right: -6%;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-gentle 6s ease-in-out infinite;
    animation-delay: -3s;
}

.hero-badge-icon {
    font-size: 1.6rem;
}

.hero-badge-text {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.3;
}

.hero-badge-text span {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-badge { right: 2%; }
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
    padding: 44px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.stats-bar::before,
.stats-bar::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    animation: drift-soft 20s ease-in-out infinite;
}

.stats-bar::before {
    width: 160px;
    height: 160px;
    top: -70px;
    left: 8%;
}

.stats-bar::after {
    width: 100px;
    height: 100px;
    bottom: -60px;
    right: 12%;
    animation-delay: -8s;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================
   SERVICES — PRICING MENU
   ============================================ */

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.service-groups {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 820px;
    margin: 0 auto;
}

.service-group {
    transition: opacity 0.25s var(--ease);
}

.service-group.hidden {
    display: none;
}

.service-group-title {
    font-size: 1.15rem;
    margin-bottom: 14px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(15, 183, 211, 0.07), rgba(166, 232, 244, 0.1));
    border-left: 3px solid var(--cyan);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--dark);
    letter-spacing: 0.01em;
}

.service-list {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s var(--ease);
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    background: var(--off-white);
}

.service-row-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.service-row-name {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--dark);
}

.service-row-duration {
    font-size: 0.78rem;
    color: var(--text-mid);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--off-white);
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    width: fit-content;
}

.service-row-price {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--cyan);
    flex-shrink: 0;
    white-space: nowrap;
}

.service-note {
    text-align: center;
    font-size: 0.85rem;
    max-width: 620px;
    margin: 32px auto 0;
}

@media (max-width: 640px) {
    .service-row {
        padding: 16px 18px;
    }

    .service-row-name {
        font-size: 0.92rem;
    }

    .service-row-price {
        font-size: 1.05rem;
    }
}

/* ============================================
   reviewsS
   ============================================ */

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    max-width: 720px;
    margin: 0 auto 36px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.rating-score-block {
    text-align: center;
}

.big-score {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.big-stars {
    color: var(--cyan);
    font-size: 1.2rem;
    margin: 6px 0;
}

.review-count {
    font-size: 0.82rem;
    color: var(--text-mid);
}

.rating-divider {
    width: 1px;
    height: 80px;
    background: var(--border);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-mid);
}

.bar-label {
    width: 14px;
}

.rating-bar-track {
    flex: 1;
    height: 6px;
    background: var(--off-white);
    border-radius: 999px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-mid));
    border-radius: 999px;
}

.filter-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.chip {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-mid);
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.chip:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.chip.active {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--white);
}

.reviewss-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.t-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.t-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.t-card.hidden {
    display: none;
}

.t-card.extra {
    display: none;
}

.t-card.extra.visible {
    display: block;
}

.t-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.t-author-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.t-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--dark);
}

.t-meta {
    font-size: 0.76rem;
    color: var(--text-mid);
}

.t-stars {
    color: var(--cyan);
    font-size: 0.9rem;
    white-space: nowrap;
}

.t-text {
    font-size: 0.92rem;
    margin-bottom: 16px;
    color: var(--text-mid);
}

.t-dog-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(15, 183, 211, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
}

.show-more-wrap {
    text-align: center;
    margin-bottom: 28px;
}

.show-more-btn {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.show-more-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.show-more-btn.hidden {
    display: none;
}

.google-badge {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-mid);
}

.google-badge a {
    color: var(--cyan);
    font-weight: 600;
}

/* ============================================
   REPEATED CTA STRIP
   ============================================ */

.cta-strip {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--cyan-light) 0%, var(--off-white) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 36px 24px;
}

.cta-strip-text h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.cta-strip-text p {
    font-size: 0.92rem;
    margin: 0;
}

.cta-strip-btn {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-btn {
        width: 100%;
    }
}

/* ============================================
   ABOUT
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.about-logo-wrap {
    display: flex;
    justify-content: center;
}

.about-logo-bg {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--cyan-light), var(--off-white));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.about-logo-bg::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 65%);
    animation: glow-drift 14s ease-in-out infinite;
}

@keyframes glow-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8%, 8%); }
}

.about-logo {
    width: 70%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    background: var(--white);
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 12px 0 18px;
}

.about-text p {
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.about-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 28px;
}

.award-badge {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--cyan-light) 0%, var(--off-white) 100%);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* Hidden extra images (beyond first 9) */
.gallery-item--hidden {
    display: none;
}

.gallery-item--hidden.gallery-item--visible {
    display: block;
    animation: gallery-fade-in 0.45s var(--ease) both;
}

@keyframes gallery-fade-in {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s var(--ease);
}

.gallery-item img.loaded {
    opacity: 1;
}

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

/* Placeholder paw while image loads */
.gallery-item::before {
    content: "🐾";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.2;
    pointer-events: none;
}

.gallery-item.has-image::before {
    display: none;
}

/* Hover overlay with zoom icon */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 183, 211, 0.08);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cyan);
    box-shadow: var(--shadow-sm);
    transform: scale(0.8);
    transition: transform 0.3s var(--ease);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* Caption strip at bottom */
.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 16px 14px;
    background: linear-gradient(to top, rgba(26, 37, 48, 0.78), transparent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    pointer-events: none;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Expand / collapse button */
.gallery-expand-wrap {
    text-align: center;
    margin-top: 4px;
}

.gallery-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s var(--ease);
}

.gallery-expand-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: var(--shadow-md);
}

.gallery-expand-icon {
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(10, 17, 24, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px;
    max-width: min(88vw, 860px);
    width: 100%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 76vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lightbox-img.loaded {
    opacity: 1;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
}

.lightbox-close {
    position: fixed;
    top: 22px;
    right: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s var(--ease);
    z-index: 501;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.2s var(--ease);
    z-index: 501;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(15, 183, 211, 0.3);
    border-color: rgba(15, 183, 211, 0.4);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
}

/* ============================================
   BOOKING
   ============================================ */

.booking-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(15, 183, 211, 0.18), transparent 70%);
    filter: blur(40px);
    animation: float-blob-2 36s ease-in-out infinite;
}

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

.booking-info h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 14px 0 18px;
}

.booking-info h2 span {
    color: var(--cyan-light);
}

.booking-info p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    max-width: 440px;
}

.booking-primary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(15, 183, 211, 0.18), rgba(166, 232, 244, 0.08));
    border: 1px solid rgba(15, 183, 211, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 28px;
}

.booking-primary-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-primary-text strong {
    color: var(--white);
    font-size: 1.05rem;
}

.booking-primary-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.booking-primary-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.booking-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.booking-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: all 0.25s var(--ease);
}

.booking-method:hover {
    background: rgba(15, 183, 211, 0.12);
    border-color: rgba(15, 183, 211, 0.3);
    transform: translateX(4px);
}

.booking-method-icon {
    font-size: 1.4rem;
}

.booking-method-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.booking-method-text strong {
    font-size: 0.92rem;
}

.booking-method-text span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.booking-hours {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    line-height: 1.9;
}

.booking-hours strong {
    color: rgba(255, 255, 255, 0.85);
}

.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.booking-form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.form-intro {
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.success-msg {
    display: none;
    background: rgba(15, 183, 211, 0.1);
    border: 1px solid rgba(15, 183, 211, 0.25);
    color: var(--cyan);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.success-msg.visible {
    display: block;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--dark);
    background: var(--off-white);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(15, 183, 211, 0.12);
    background: var(--white);
}

.form-group textarea {
    min-height: 90px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    margin-top: 6px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-top: 12px;
}

/* ============================================
   MAP
   ============================================ */

.map-section {
    position: relative;
    z-index: 2;
}

.map-container {
    position: relative;
    width: 100%;
    height: 460px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.9);
}

.map-overlay-card {
    position: absolute;
    top: 28px;
    left: 28px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    box-shadow: var(--shadow-lg);
    max-width: 260px;
}

.map-overlay-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.map-overlay-card p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.map-overlay-card a {
    display: inline-block;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .map-container { height: auto; }
    .map-container iframe { height: 360px; }
    .map-overlay-card {
        position: relative;
        top: auto;
        left: auto;
        margin: -40px 16px 0;
        max-width: none;
    }
}

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

.faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s var(--ease);
}

.faq-item.active {
    border-color: rgba(15, 183, 211, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--cyan);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--cyan);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.94rem;
}

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

.contact-bar {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
    position: relative;
    z-index: 2;
}

.contact-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 26px 24px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-bar-item a {
    color: var(--white);
}

.contact-bar-item a:hover {
    text-decoration: underline;
}

.contact-bar-icon {
    font-size: 1.1rem;
}

.contact-bar-btn {
    background: var(--white);
    color: var(--cyan) !important;
    box-shadow: none;
}

.contact-bar-btn:hover {
    background: var(--dark);
    color: var(--white) !important;
}

.contact-bar-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-bar-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.22s var(--ease);
    white-space: nowrap;
}

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

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 70px 24px 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.22s var(--ease);
}

.footer-social:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: color 0.25s var(--ease);
}

.footer-links a:hover {
    color: var(--cyan-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.footer-bottom p {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 95;
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(15, 183, 211, 0.1);
    }

    .mobile-sticky-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .back-to-top {
        bottom: 86px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s var(--ease);
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--cyan-mid);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .services-grid,
    .reviewss-masonry,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-logo-wrap {
        order: -1;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .section {
        padding: 64px 0;
    }

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

    .services-grid,
    .reviews-masonry,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .rating-summary {
        flex-direction: column;
        padding: 28px;
        gap: 24px;
    }

    .rating-divider {
        width: 100%;
        height: 1px;
    }

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

    .contact-bar-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 50px 24px 36px;
        gap: 32px;
    }

    .booking-form-card {
        padding: 26px;
    }

    .map-overlay-card {
        max-width: none;
    }
}