/*
Theme Name: Mool Heal Hospital
Theme URI: https://moolheal.com
Author: Mool Heal Team
Author URI: https://moolheal.com
Description: A modern, elegant hospital and healthcare WordPress theme with full Elementor integration. Features dynamic sections for services, doctors, testimonials, and more. Nurturing Life, Naturally.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moodheal
Tags: elementor, healthcare, hospital, medical, one-page, custom-colors, custom-menu, featured-images, theme-options

Mool Heal Hospital Theme - Nurturing Life, Naturally
*/

/* =====================================================
   CSS Custom Properties (Design Tokens)
   ===================================================== */
:root {
    /* Brand Colors - Mool Heal Green Theme */
    --mh-primary: #55a630;
    --mh-brand-emerald: #55a630;
    --mh-brand-dark: #2b5c1b;
    --mh-brand-darker: #1a3e12;
    --mh-brand-light: #ecf5e6;
    --mh-background-alt: #f3f9ef;
    --mh-accent-green: #76ff03;
    --mh-accent-brown: #6d4c41;
    --mh-white: #ffffff;
    --mh-success: #4CAF50;
    --mh-error: #EF4444;

    /* Typography */
    --mh-font-display: 'Inter', sans-serif;

    /* Border Radius */
    --mh-radius-sm: 0.25rem;
    --mh-radius-md: 0.5rem;
    --mh-radius-lg: 1rem;
    --mh-radius-xl: 1.5rem;
    --mh-radius-2xl: 2rem;
    --mh-radius-3xl: 2.5rem;
    --mh-radius-4xl: 3.5rem;
    --mh-radius-full: 9999px;

    /* Shadows */
    --mh-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --mh-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --mh-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --mh-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --mh-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --mh-transition-fast: 150ms ease;
    --mh-transition-normal: 300ms ease;
    --mh-transition-slow: 500ms ease;
}

/* =====================================================
   Base Styles
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--mh-font-display);
    font-size: 16px;
    line-height: 1.6;
    color: var(--mh-primary);
    background-color: var(--mh-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--mh-brand-emerald);
    color: var(--mh-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--mh-transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   Typography
   ===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--mh-brand-emerald);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 4.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin: 0 0 1rem;
}

.mh-text-italic {
    font-style: italic;
    font-weight: 500;
}

.mh-text-muted {
    opacity: 0.6;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.mh-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mh-section {
    padding: 8rem 2rem;
}

.mh-bg-primary {
    background-color: var(--mh-brand-emerald);
}

.mh-bg-light {
    background-color: var(--mh-brand-light);
}

.mh-bg-alt {
    background-color: var(--mh-background-alt);
}

.mh-bg-white {
    background-color: var(--mh-white);
}

.mh-text-white {
    color: var(--mh-white);
}

.mh-text-primary {
    color: var(--mh-brand-emerald);
}

/* Medical Pattern */
.mh-medical-pattern {
    background-image: radial-gradient(#1E3D37 0.8px, transparent 0.8px);
    background-size: 32px 32px;
}

/* Glass Card Effect */
.mh-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mh-glass-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Vertical Text */
.mh-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* =====================================================
   Buttons
   ===================================================== */
.mh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 900;
    border-radius: var(--mh-radius-full);
    border: none;
    cursor: pointer;
    transition: var(--mh-transition-normal);
    text-transform: none;
    line-height: 1;
}

.mh-btn:active {
    transform: scale(0.98);
}

.mh-btn-primary {
    background-color: var(--mh-brand-emerald);
    color: var(--mh-white);
    box-shadow: var(--mh-shadow-lg);
}

.mh-btn-primary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.mh-btn-white {
    background-color: var(--mh-white);
    color: var(--mh-brand-emerald);
    box-shadow: var(--mh-shadow-xl);
}

.mh-btn-white:hover {
    background-color: var(--mh-brand-light);
    transform: translateY(-2px);
}

.mh-btn-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--mh-white);
}

.mh-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mh-btn-outline-dark {
    background-color: transparent;
    border: 2px solid var(--mh-brand-emerald);
    color: var(--mh-brand-emerald);
}

.mh-btn-outline-dark:hover {
    background-color: var(--mh-brand-emerald);
    color: var(--mh-white);
}

.mh-btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
}

.mh-btn-lg {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
}

/* =====================================================
   Cards
   ===================================================== */
.mh-card {
    background-color: var(--mh-white);
    border-radius: var(--mh-radius-3xl);
    overflow: hidden;
    transition: var(--mh-transition-slow);
}

.mh-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mh-shadow-2xl);
}

.mh-card-body {
    padding: 2rem;
}

/* Service Card */
.mh-service-card {
    position: relative;
    padding: 3rem;
    border: 1px solid rgba(15, 31, 28, 0.05);
    overflow: hidden;
}

.mh-service-card .mh-icon-bg {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    font-size: 200px;
    opacity: 0.03;
    transition: var(--mh-transition-slow);
}

.mh-service-card:hover .mh-icon-bg {
    opacity: 0.08;
}

/* Doctor Card */
.mh-doctor-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mh-doctor-card .mh-doctor-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--mh-brand-light);
}

.mh-doctor-card .mh-doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--mh-transition-slow);
}

.mh-doctor-card:hover .mh-doctor-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.mh-doctor-card .mh-social-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 31, 28, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--mh-transition-normal);
}

.mh-doctor-card:hover .mh-social-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Header Styles
   ===================================================== */
.mh-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--mh-brand-emerald);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mh-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mh-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mh-logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--mh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--mh-radius-lg);
}

.mh-logo-icon .material-symbols-outlined {
    color: var(--mh-brand-emerald);
    font-size: 1.5rem;
    font-weight: bold;
}

.mh-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--mh-white);
}

/* Navigation */
/* Navigation */
.mh-nav {
    display: none;
}

@media (min-width: 768px) {
    .mh-nav {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }

    .mh-nav-menu,
    .mh-nav ul {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        list-style: none !important;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .mh-nav li {
        margin: 0;
        padding: 0;
        list-style: none !important;
    }
}

.mh-nav a {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.mh-nav a:hover,
.mh-nav a.active {
    color: var(--mh-white);
}

.mh-nav a.active {
    border-bottom: 2px solid var(--mh-white);
}

/* Header Search */
.mh-header-search {
    display: none;
}

@media (min-width: 1024px) {
    .mh-header-search {
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 0.5rem 1.25rem;
        border-radius: var(--mh-radius-full);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mh-header-search:focus-within {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .mh-header-search input {
        background: transparent;
        border: none;
        outline: none;
        font-size: 0.875rem;
        width: 176px;
        color: var(--mh-white);
    }

    .mh-header-search input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .mh-header-search .material-symbols-outlined {
        color: rgba(255, 255, 255, 0.4);
        font-size: 1.25rem;
    }
}

/* Mobile Menu Toggle */
.mh-mobile-toggle {
    display: flex;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--mh-white);
    z-index: 100;
}

@media (min-width: 768px) {
    .mh-mobile-toggle {
        display: none;
    }
}

/* Mobile Menu Panel */
.mh-mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--mh-brand-dark, #2E7D32);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mh-mobile-menu-inner {
    padding: 1rem 0;
}

.mh-mobile-nav {
    padding: 0;
}

.mh-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mh-mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mh-mobile-menu-list li:last-child {
    border-bottom: none;
}

.mh-mobile-menu-list a {
    display: block;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mh-mobile-menu-list a:hover,
.mh-mobile-menu-list .current-menu-item a,
.mh-mobile-menu-list a.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 2.5rem;
}

/* Submenu in mobile */
.mh-mobile-menu-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.mh-mobile-menu-list .sub-menu a {
    padding-left: 3rem;
    font-size: 0.9rem;
}

/* Body class when menu is open */
body.mh-menu-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    .mh-mobile-menu {
        display: none !important;
    }
}

/* =====================================================
   Footer Styles
   ===================================================== */
.mh-footer {
    background-color: var(--mh-brand-emerald);
    color: var(--mh-white);
    padding-top: 4rem;
    /* Mobile padding */
    padding-bottom: 3rem;
}

@media (min-width: 1024px) {
    .mh-footer {
        padding-top: 8rem;
    }
}

.mh-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    /* Mobile gap */
    margin-bottom: 4rem;
    /* Mobile margin */
}

@media (min-width: 768px) {
    .mh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .mh-footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 5rem;
        margin-bottom: 8rem;
    }
}

.mh-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mh-footer-logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--mh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--mh-radius-xl);
}

.mh-footer-logo-icon .material-symbols-outlined {
    color: var(--mh-brand-emerald);
    font-size: 1.875rem;
    font-weight: bold;
}

.mh-footer-logo-text {
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.mh-footer-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 2rem;
}

.mh-footer-social {
    display: flex;
    gap: 1rem;
}

.mh-footer-social a {
    width: 56px;
    height: 56px;
    border-radius: var(--mh-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-footer-social a:hover {
    background-color: var(--mh-white);
    color: var(--mh-brand-emerald);
}

.mh-footer-title {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3rem;
}

.mh-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mh-footer-links li {
    margin-bottom: 1.5rem;
}

.mh-footer-links a {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.mh-footer-links a:hover {
    color: var(--mh-white);
}

.mh-footer-map {
    border-radius: var(--mh-radius-2xl);
    overflow: hidden;
    height: 192px;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--mh-shadow-2xl);
}

.mh-footer-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transition: var(--mh-transition-slow);
}

.mh-footer-map:hover img {
    transform: scale(1.1);
}

.mh-footer-map-pin {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-footer-map-pin>div {
    width: 48px;
    height: 48px;
    background-color: var(--mh-white);
    border-radius: var(--mh-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mh-brand-emerald);
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mh-footer-address {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    line-height: 1.75;
}

.mh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .mh-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.mh-footer-copyright {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
}

.mh-footer-legal {
    display: flex;
    gap: 2.5rem;
}

.mh-footer-legal a {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
}

.mh-footer-legal a:hover {
    color: var(--mh-white);
}

/* =====================================================
   Inquire Button (Floating)
   ===================================================== */
.mh-inquire-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
}

.mh-inquire-btn button {
    background-color: var(--mh-brand-emerald);
    color: var(--mh-white);
    padding: 0.75rem 0.2rem;
    border-radius: var(--mh-radius-xl) 0 0 var(--mh-radius-xl);
    box-shadow: var(--mh-shadow-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--mh-transition-normal);
}

.mh-inquire-btn button:hover {
    padding-right: 1.5rem;
}

.mh-inquire-btn .mh-vertical-text {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* =====================================================
   Hero Section
   ===================================================== */
.mh-hero {
    position: relative;
    min-height: 900px;
    background-color: var(--mh-brand-emerald);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.mh-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.mh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--mh-brand-emerald), transparent, rgba(15, 31, 28, 0.5));
}

.mh-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .mh-hero-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: var(--mh-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.mh-hero-badge .pulse {
    width: 8px;
    height: 8px;
    background-color: var(--mh-white);
    border-radius: var(--mh-radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.mh-hero-badge span {
    font-size: 0.6875rem;
    font-weight: 900;
    color: var(--mh-white) !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mh-hero-title {
    color: var(--mh-white) !important;
    font-size: clamp(3rem, 10vw, 6.25rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.mh-hero-title .highlight {
    color: rgba(255, 255, 255, 0.3) !important;
    font-style: italic;
    font-weight: 500;
}

.mh-hero-desc {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    max-width: 560px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.mh-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.mh-hero-image {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .mh-hero-image {
        display: block;
    }
}

.mh-hero-image-main {
    position: relative;
    z-index: 10;
    border-radius: var(--mh-radius-3xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--mh-shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mh-hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Stats Cards */
.mh-hero-stat {
    position: absolute;
    padding: 2rem;
    border-radius: var(--mh-radius-2xl);
    box-shadow: var(--mh-shadow-2xl);
    z-index: 20;
}

.mh-hero-stat.top-right {
    top: -2.5rem;
    right: -2.5rem;
    max-width: 240px;
}

.mh-hero-stat.bottom-left {
    bottom: -2.5rem;
    left: -2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mh-hero-stat-icon {
    width: 48px;
    height: 48px;
    background-color: var(--mh-white);
    border-radius: var(--mh-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mh-brand-emerald);
    margin-bottom: 1rem;
    box-shadow: var(--mh-shadow-lg);
}

.mh-hero-stat-title {
    color: var(--mh-white);
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mh-hero-stat-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.mh-hero-avatars {
    display: flex;
}

.mh-hero-avatars img {
    width: 56px;
    height: 56px;
    border-radius: var(--mh-radius-full);
    border: 4px solid var(--mh-brand-emerald);
    object-fit: cover;
    margin-left: -1rem;
}

.mh-hero-avatars img:first-child {
    margin-left: 0;
}

.mh-hero-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.mh-hero-indicators span {
    width: 48px;
    height: 4px;
    border-radius: var(--mh-radius-full);
    background-color: rgba(255, 255, 255, 0.2);
}

.mh-hero-indicators span.active {
    background-color: var(--mh-white);
}

/* =====================================================
   Page Hero (Inner Pages)
   ===================================================== */
.mh-page-hero {
    position: relative;
    width: 100%;
    padding: 8rem 0 12rem;
    background-color: var(--mh-brand-emerald);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.mh-page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    text-align: center;
}

.mh-page-hero-title {
    color: var(--mh-white);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.mh-page-hero-title .highlight {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
    font-weight: 500;
}

.mh-page-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1rem, 2vw, 1.5rem);
    max-width: 672px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

/* =====================================================
   Forms
   ===================================================== */
.mh-form-group {
    margin-bottom: 2rem;
}

.mh-form-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(15, 31, 28, 0.4);
    margin-bottom: 0.5rem;
}

.mh-form-input,
.mh-form-textarea,
.mh-form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: var(--mh-font-display);
    font-weight: 500;
    color: var(--mh-primary);
    background-color: var(--mh-brand-light);
    border: none;
    border-radius: var(--mh-radius-xl);
    outline: none;
    transition: var(--mh-transition-normal);
}

.mh-form-input:focus,
.mh-form-textarea:focus,
.mh-form-select:focus {
    box-shadow: 0 0 0 2px var(--mh-brand-emerald);
}

.mh-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Floating Label Style */
.mh-floating-group {
    position: relative;
}

.mh-floating-group input,
.mh-floating-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    font-size: 1rem;
    font-family: var(--mh-font-display);
    font-weight: 500;
    color: var(--mh-primary);
    background: transparent;
    outline: none;
    transition: var(--mh-transition-normal);
}

.mh-floating-group input:focus,
.mh-floating-group textarea:focus {
    border-bottom-color: var(--mh-brand-emerald);
}

.mh-floating-label {
    position: absolute;
    top: 1.25rem;
    left: 0;
    font-weight: 500;
    color: #94A3B8;
    pointer-events: none;
    transition: var(--mh-transition-fast);
}

.mh-floating-group input:focus~.mh-floating-label,
.mh-floating-group input:not(:placeholder-shown)~.mh-floating-label,
.mh-floating-group textarea:focus~.mh-floating-label,
.mh-floating-group textarea:not(:placeholder-shown)~.mh-floating-label {
    top: -0.5rem;
    left: 0;
    font-size: 0.75rem;
    background-color: var(--mh-white);
    padding: 0 0.25rem;
    color: var(--mh-brand-emerald);
    font-weight: 700;
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mh-animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* =====================================================
   WordPress-Specific Overrides
   ===================================================== */
.wp-block-image img {
    border-radius: var(--mh-radius-xl);
}

.entry-content h2 {
    margin-top: 3rem;
}

/* Elementor Overrides */
.elementor-section {
    position: relative;
}

.elementor-widget-container {
    position: relative;
}

/* =====================================================
   Responsive Utilities
   ===================================================== */
@media (max-width: 767px) {
    .mh-section {
        padding: 4rem 1rem;
    }

    .mh-container {
        padding: 0 1rem;
    }

    .mh-hero {
        min-height: auto;
        padding: 4rem 0;
    }
}