/* =========================================
   Urmila Home Care - Professional Website UI
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Source+Serif+4:wght@600;700&display=swap');

:root {
    --primary-color: #0b6e69;
    --primary-hover: #095651;
    --accent-color: #e09f3e;
    --secondary-color: #eef4f3;
    --page-bg: #f7faf9;
    --card-bg: #ffffff;
    --text-dark: #18302e;
    --text-light: #4e6663;
    --white: #ffffff;
    --border-color: #d8e4e2;
    --success-bg: #dcfce7;
    --success-text: #14532d;
    --error-bg: #fee2e2;
    --error-text: #991b1b;
    --shadow-sm: 0 8px 22px rgba(10, 33, 31, 0.08);
    --shadow-md: 0 20px 50px rgba(10, 33, 31, 0.16);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
}

body.dark-mode {
    --primary-color: #23a094;
    --primary-hover: #1a8a7e;
    --accent-color: #f2b84e;
    --secondary-color: #1a2624;
    --page-bg: #111917;
    --card-bg: #1a2624;
    --text-dark: #ecf6f4;
    --text-light: #b3ccc7;
    --white: #0f1715;
    --border-color: #2f4340;
    --success-bg: #14532d;
    --success-text: #bbf7d0;
    --error-bg: #7f1d1d;
    --error-text: #fecaca;
    --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

/* Accessibility focus states for keyboard navigation */
:focus-visible {
    outline: 2px dashed var(--primary-color);
    outline-offset: 4px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: 'Outfit', 'Trebuchet MS', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background:
        radial-gradient(circle at 8% 10%, rgba(11, 110, 105, 0.08), transparent 30%),
        radial-gradient(circle at 92% 3%, rgba(224, 159, 62, 0.12), transparent 35%),
        var(--page-bg);
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    color: var(--text-dark);
}

h1,
h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    letter-spacing: 0.01em;
}

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

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

ul {
    list-style: none;
}

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section-padding {
    padding: 90px 0;
}

.center-text {
    text-align: center;
}

.bg-light {
    background-color: var(--secondary-color);
}

.divider {
    width: 74px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 16px auto 28px;
}

/* =========================================
   Preloader
   ========================================= */
#preloader {
    position: fixed;
    inset: 0;
    background-color: var(--page-bg);
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity 0.5s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    width: 140px;
    height: auto;
    animation: pulse-logo 1.5s infinite alternate;
}

@keyframes pulse-logo {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

.progress-container {
    width: 220px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.preloader-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    min-height: 24px;
}

/* =========================================
   Header
   ========================================= */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(24, 48, 46, 0.07);
    transition: all 0.3s ease;
}

body.dark-mode .header {
    background: rgba(17, 25, 23, 0.92);
    border-bottom-color: rgba(236, 246, 244, 0.08);
}

.header.scrolled {
    background: var(--primary-color);
    border-bottom-color: transparent;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}

.logo img {
    height: 54px;
    width: auto;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active-page {
    color: var(--primary-color);
}

.nav-links a.active-page {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.header.scrolled .nav-links a {
    color: var(--white);
}

.header.scrolled .theme-toggle {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
}

.header.scrolled .bar {
    background-color: var(--white);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active-page {
    color: #f8fffd;
}

.theme-toggle {
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

body:not(.dark-mode) .sun-icon {
    display: none;
}

body.dark-mode .moon-icon {
    display: none;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text-dark);
    transition: all 0.2s ease;
}

/* Morph hamburger into an "X" when open */
.hamburger[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   Hero Blocks
   ========================================= */
.hero {
    margin-top: 82px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(11, 110, 105, 0.93), rgba(11, 110, 105, 0.76)),
        url('https://images.unsplash.com/photo-1631815599983-60af8d6f9f1e?q=80&w=2100&auto=format&fit=crop') center/cover no-repeat;
    color: #f8fffe;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(224, 159, 62, 0.24);
    filter: blur(4px);
    top: -140px;
    right: -120px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fdfaf5;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero h1 {
    background: linear-gradient(90deg, #ffffff, #dcf3ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero h1 {
    background: linear-gradient(90deg, var(--primary-color), #095651);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.body.dark-mode .page-hero h1 {
    background: linear-gradient(90deg, #ffffff, #b3ccc7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.8rem);
    color: #ffffff;
    margin-bottom: 18px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.22rem);
    color: #dcf3ef;
    margin-bottom: 32px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.page-hero {
    margin-top: 82px;
    padding: 82px 0 70px;
    background:
        linear-gradient(140deg, rgba(11, 110, 105, 0.12), rgba(224, 159, 62, 0.1)),
        var(--page-bg);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 10px;
}

.page-hero p {
    max-width: 760px;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(11, 110, 105, 0.3);
}

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

.btn-secondary {
    background: #ffffff;
    color: var(--primary-color);
    border: 1px solid #d6ebe8;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* =========================================
   Cards and Grids
   ========================================= */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card p {
    font-size: 0.98rem;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(11, 110, 105, 0.12);
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* =========================================
   Stats and Process
   ========================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 6px;
}

.stat-box p {
    font-weight: 600;
    color: var(--text-dark);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

.process-card {
    text-align: left;
}

/* =========================================
   Testimonial Carousel
   ========================================= */
.carousel-wrapper {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    padding: 0 48px;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.03rem;
}

.testimonial-author {
    margin-top: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 1.05rem;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.carousel-btn:hover {
    background: var(--primary-hover);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8da6a2;
    opacity: 0.5;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
    background: var(--primary-color);
}

/* =========================================
   FAQ
   ========================================= */
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--card-bg);
}

.faq-question {
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 18px;
}

.faq-answer p {
    padding-bottom: 16px;
}

/* =========================================
   Contact and Forms
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
}

.contact-info,
.contact-form,
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.94rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--text-dark);
    background: var(--page-bg);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 110, 105, 0.14);
}

.contact-form button.btn {
    width: 100%;
}

.info-item {
    margin-top: 16px;
    color: var(--text-light);
}

.info-item strong {
    color: var(--text-dark);
}

#form-message {
    display: none;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #86efac;
    background: var(--success-bg);
    color: var(--success-text);
    font-weight: 600;
    text-align: center;
}

.form-btn-spinner {
    width: 18px;
    height: 18px;
    animation: spin 0.8s linear infinite;
}

.map-container {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* =========================================
   Blog Article
   ========================================= */
.article-content {
    padding-bottom: 48px;
}

.article-meta {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.article-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.article-body {
    max-width: 750px;
    margin: 0 auto;
}

.article-body h2 {
    margin: 32px 0 12px;
}

/* =========================================
   Footer and Floating Action
   ========================================= */
.footer {
    background: #0f2321;
    color: #d7e8e5;
    padding: 56px 0 20px;
    margin-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 20px;
}

.footer h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.06rem;
}

.footer p,
.footer li,
.footer a {
    color: #d7e8e5;
    font-size: 0.95rem;
}

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

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

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    margin-top: 26px;
    padding-top: 18px;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    z-index: 950;
    transition: transform 0.25s ease;
    animation: pulse-glow 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
    fill: #ffffff;
}

/* =========================================
   Utility Sections
   ========================================= */
.feature-list {
    display: grid;
    gap: 10px;
}

.feature-list li {
    padding-left: 22px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 8px;
}

.cta-box {
    background: linear-gradient(130deg, var(--primary-color), #145f7a);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-md);
}

.cta-box h3,
.cta-box p {
    color: #f3fffc;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

/* Call Modal Pop-up */
.call-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.call-modal-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-width: 90%;
    width: 400px;
}

.call-modal-overlay.active .call-modal-box {
    transform: translateY(0);
}

.call-modal-box h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.call-modal-box .phone-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

/* =========================================
   Breadcrumbs & Mobile Action Bar
   ========================================= */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-hover);
}

.mobile-bottom-bar {
    display: none;
}

/* =========================================
   Animation
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 820px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 275px;
        height: 100vh;
        background: var(--card-bg);
        box-shadow: -10px 0 32px rgba(0, 0, 0, 0.15);
        padding: 110px 26px 20px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        transition: right 0.35s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .header.scrolled .nav-links {
        background: var(--primary-color);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .carousel-wrapper {
        padding: 0 8px;
    }

    .carousel-btn {
        display: none;
    }
}

@media (max-width: 620px) {
    /* Performance: Simplify shadows and remove heavy gradients for mobile GPUs */
    :root {
        --shadow-sm: 0 4px 12px rgba(10, 33, 31, 0.05);
        --shadow-md: 0 10px 25px rgba(10, 33, 31, 0.1);
    }
    body.dark-mode {
        --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    .hero::after {
        display: none;
    }

    .section-padding {
        padding: 72px 0;
    }

    .hero {
        min-height: 84vh;
        background-attachment: scroll;
    }

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

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        z-index: 10000;
    }

    .bottom-bar-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 0;
        font-weight: 700;
        font-size: 1.05rem;
        color: #ffffff;
    }

    .bottom-bar-btn.call-btn {
        background: var(--primary-color);
    }

    .bottom-bar-btn.wa-btn {
        background: #25d366;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 84px; /* Lift above the bottom bar */
    }

    .footer {
        padding-bottom: 90px; /* Make space so footer content isn't hidden */
    }
}
