/* ===== Lotus IV Custom Theme Overrides ===== */

/* Logo sizing — desktop */
.main-header .logo img {
    max-height: 80px;        /* ← make logo bigger or smaller */
    width: auto;
    max-width: 240px;
}

/* Logo box — desktop position */
.main-header .header-lower .logo-box {
    position: relative;
    left: 0px;               /* ← move left/right (positive = right) */
    top: 0px;                /* ← move up/down (negative = up) */
    transform: none;
    height: auto;
    min-width: unset;
    display: flex;
    align-items: center;
}

/* Sticky header logo */
.sticky-header .logo img {
    max-height: 55px;
    width: auto;
}

/* ===== Mobile Call Button ===== */
.mobile-call-btn {
    display: none;
}

@media (max-width: 1023.98px) {
    .main-header .header-lower {
        padding: 8px 16px;
    }

    .main-header .header-lower .main-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        flex-wrap: nowrap;
    }

    /* Logo stays left, normal size */
    .main-header .header-lower .logo-box {
        flex-shrink: 0;
    }

    .main-header .logo img {
        max-height: 60px;
        width: auto;
    }

    /* Right side: call + hamburger */
    .main-header .header-lower .outer-box {
        display: flex;
        align-items: center;
        gap: 14px;
        padding-left: 0;
        flex-shrink: 0;
    }

    /* Call button: no box, inline with icon */
    .mobile-call-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #1a6b8a !important;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        text-decoration: none !important;
    }

    .mobile-call-btn svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
        stroke: #1a6b8a;
    }

    .mobile-call-btn:hover {
        color: #0d4f6b !important;
    }

    .mobile-call-btn:hover svg {
        stroke: #0d4f6b;
    }
}

/* =====================================================
   LOTUS IV — WATER-THEMED FOOTER
   ===================================================== */

/* ---- Variables ---- */
:root {
    --lf-deep:   #071e2b;
    --lf-mid:    #0a2e42;
    --lf-teal:   #1a6b8a;
    --lf-light:  #3ab8d8;
    --lf-white:  #ffffff;
    --lf-muted:  rgba(255,255,255,0.60);
    --lf-border: rgba(58,184,216,0.20);
}

/* ---- Wrapper ---- */
.lotus-footer {
    position: relative;
    background: var(--lf-deep);
    overflow: hidden;
    font-family: inherit;
    margin-top: 0;
}

/* ---- Wave ---- */
.lotus-footer__wave {
    line-height: 0;
    display: block;
    margin-bottom: -1px;
}
.lotus-footer__wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ---- Body ---- */
.lotus-footer__body {
    position: relative;
    padding: 70px 0 60px;
    background: linear-gradient(160deg, #071e2b 0%, #0c3348 50%, #071e2b 100%);
    overflow: hidden;
}

/* ---- Background feature image ---- */
.lotus-footer__bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: 0;
}

/* ---- Water splash images — KEY FIX ----
   invert(1) turns white→black (invisible with screen blend)
   hue-rotate(180deg) turns the blue water→teal glow
   mix-blend-mode: screen makes black=invisible, color=visible glow
*/
.lotus-footer__water {
    position: absolute;
    pointer-events: none;
    user-select: none;
    filter: invert(1) hue-rotate(180deg) saturate(2.5) brightness(0.65);
    mix-blend-mode: screen;
    z-index: 0;
}

/* Wide surface splash — bottom edge, full width */
.lotus-footer__water--bottom {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    min-width: 1000px;
    opacity: 0.55;
}

/* Crown splash — top-right corner */
.lotus-footer__water--right {
    top: -40px;
    right: -80px;
    width: 380px;
    opacity: 0.45;
    animation: lf-water-sway 7s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Double wide splash — bottom-left */
.lotus-footer__water--left {
    bottom: -10px;
    left: -100px;
    width: 520px;
    opacity: 0.40;
    animation: lf-water-sway 9s ease-in-out infinite reverse;
    transform-origin: bottom center;
}

@keyframes lf-water-sway {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33%       { transform: translateY(-12px) rotate(-1.5deg); }
    66%       { transform: translateY(-6px) rotate(1deg); }
}

/* ---- Bubble ring decorations ---- */
.lotus-footer__bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(58,184,216,0.25);
    animation: lf-float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.lotus-footer__bubble--1 { width: 260px; height: 260px; top: -80px; right: 6%;  animation-delay: 0s;   opacity: .30; }
.lotus-footer__bubble--2 { width: 140px; height: 140px; bottom: 40px; left: 4%; animation-delay: 2.5s; opacity: .20; }
.lotus-footer__bubble--3 { width: 70px;  height: 70px;  top: 35%;   left: 40%; animation-delay: 5s;   opacity: .18; }

@keyframes lf-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-16px); }
}

/* All content sits above bg layers */
.lotus-footer__body > *:not(.lotus-footer__bg-img):not(.lotus-footer__water):not(.lotus-footer__bubble) {
    position: relative;
    z-index: 2;
}

/* ---- Brand column ---- */
.lotus-footer__brand { padding-right: 20px; }

.lotus-footer__logo img {
    max-height: 76px;
    width: auto;
    margin-bottom: 12px;
    display: block;
}
.lotus-footer__tagline {
    color: var(--lf-light);
    font-size: .91em;
    font-style: italic;
    letter-spacing: .02em;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: .9;
}

/* Drip bar decoration */
.lotus-footer__drip-bar {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-bottom: 22px;
}
.lotus-footer__drip-bar span {
    display: block;
    width: 5px;
    border-radius: 3px 3px 50% 50%;
    background: linear-gradient(180deg, var(--lf-light) 0%, var(--lf-teal) 100%);
    animation: lf-drip 2.4s ease-in-out infinite;
}
.lotus-footer__drip-bar span:nth-child(1) { height: 26px; animation-delay: 0s; }
.lotus-footer__drip-bar span:nth-child(2) { height: 38px; animation-delay: .2s; }
.lotus-footer__drip-bar span:nth-child(3) { height: 50px; animation-delay: .4s; }
.lotus-footer__drip-bar span:nth-child(4) { height: 38px; animation-delay: .6s; }
.lotus-footer__drip-bar span:nth-child(5) { height: 26px; animation-delay: .8s; }

@keyframes lf-drip {
    0%, 100% { opacity: .6;  transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ---- Newsletter subscribe ---- */
.lotus-footer__subscribe { margin-bottom: 22px; }
.lotus-footer__subscribe-row {
    display: flex;
    border: 1.5px solid var(--lf-border);
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255,255,255,0.07);
    transition: border-color .25s;
}
.lotus-footer__subscribe-row:focus-within { border-color: var(--lf-light); }
.lotus-footer__subscribe-row input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 16px;
    color: var(--lf-white);
    font-size: .87em;
    min-width: 0;
}
.lotus-footer__subscribe-row input::placeholder { color: rgba(255,255,255,0.40); }
.lotus-footer__subscribe-row button {
    background: linear-gradient(135deg, var(--lf-teal), var(--lf-light));
    border: none;
    padding: 10px 18px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity .2s;
    flex-shrink: 0;
}
.lotus-footer__subscribe-row button:hover { opacity: .82; }

/* ---- Social icons ---- */
.lotus-footer__social {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; gap: 9px;
    flex-wrap: wrap;
}
.lotus-footer__social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--lf-border);
    color: var(--lf-light);
    font-size: .84em;
    transition: background .22s, color .22s, border-color .22s, transform .22s;
    text-decoration: none;
}
.lotus-footer__social li a:hover {
    background: var(--lf-teal);
    color: #fff;
    border-color: var(--lf-teal);
    transform: translateY(-3px);
}

/* ---- Column headings ---- */
.lotus-footer__heading {
    color: var(--lf-white);
    font-size: .95em;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lotus-footer__heading-drop {
    display: inline-block;
    width: 7px; height: 13px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(180deg, var(--lf-light), var(--lf-teal));
    flex-shrink: 0;
}

/* ---- Quick links ---- */
.lotus-footer__links { list-style: none; padding: 0; margin: 0; }
.lotus-footer__links li {
    border-bottom: 1px solid var(--lf-border);
    padding: 8px 0;
}
.lotus-footer__links li:first-child { padding-top: 0; }
.lotus-footer__links li a {
    color: var(--lf-muted);
    font-size: .89em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s, padding-left .2s;
}
.lotus-footer__links li a::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--lf-teal);
    flex-shrink: 0;
    transition: background .2s;
    display: inline-block;
}
.lotus-footer__links li a:hover { color: var(--lf-light); padding-left: 4px; }
.lotus-footer__links li a:hover::before { background: var(--lf-light); }

/* ---- Hours ---- */
.lotus-footer__hours { list-style: none; padding: 0; margin: 0 0 14px; }
.lotus-footer__hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--lf-border);
    font-size: .87em;
    gap: 8px;
}
.lotus-footer__hours li .day  { color: var(--lf-muted); flex-shrink: 0; }
.lotus-footer__hours li .time { color: var(--lf-light); font-weight: 600; text-align: right; }
.lotus-footer__hours li .time.closed { color: rgba(255,255,255,0.30); font-weight: 400; font-style: italic; }
.lotus-footer__mobile-note {
    font-size: .81em;
    color: var(--lf-muted);
    margin-top: 14px;
    line-height: 1.55;
}
.lotus-footer__mobile-note a { color: var(--lf-light); text-decoration: underline; }

/* ---- Contact list ---- */
.lotus-footer__contact-list { list-style: none; padding: 0; margin: 0 0 22px; }
.lotus-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--lf-border);
    font-size: .87em;
    color: var(--lf-muted);
    line-height: 1.55;
}
.lotus-footer__icon {
    color: var(--lf-light);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    padding-top: 2px;
}
.lotus-footer__contact-list a {
    color: var(--lf-muted);
    text-decoration: none;
    transition: color .2s;
    word-break: break-all;
}
.lotus-footer__contact-list a:hover { color: var(--lf-light); }

/* Book button */
.lotus-footer__book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, var(--lf-teal) 0%, var(--lf-light) 100%);
    color: #fff !important;
    border-radius: 50px;
    font-size: .87em;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none !important;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 6px 22px rgba(26,107,138,0.45);
}
.lotus-footer__book-btn:hover { opacity: .86; transform: translateY(-2px); }

/* ---- Bottom bar ---- */
.lotus-footer__bottom {
    background: #040f17;
    border-top: 1px solid var(--lf-border);
    padding: 16px 0;
}
.lotus-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.lotus-footer__copyright,
.lotus-footer__bottom-right {
    margin: 0;
    font-size: .81em;
    color: rgba(255,255,255,0.45);
}
.lotus-footer__copyright a,
.lotus-footer__bottom-right a {
    color: var(--lf-light);
    text-decoration: none;
}
.lotus-footer__copyright a:hover,
.lotus-footer__bottom-right a:hover { text-decoration: underline; }
.lotus-footer__dot {
    display: inline-block;
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--lf-teal);
    vertical-align: middle;
    margin: 0 8px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .lotus-footer__brand { padding-right: 0; }
}
@media (max-width: 767px) {
    .lotus-footer__body { padding: 50px 0 40px; }
    .lotus-footer__bottom-inner { flex-direction: column; text-align: center; }
    .lotus-footer__hours li { flex-wrap: wrap; }
    .lotus-footer__water--left  { display: none; }
    .lotus-footer__water--right { width: 220px; right: -40px; opacity: 0.35; }
    .lotus-footer__water--bottom { opacity: 0.45; }
}

/* ===== Lotus IV Service Cards ===== */
.lotus-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.lotus-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.lotus-service-img {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.lotus-service-body {
    padding: 28px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lotus-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--title-font);
    color: var(--theme-color-dark);
}
.lotus-service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.lotus-service-title a:hover {
    color: var(--theme-color);
}
.lotus-service-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    flex: 1;
    margin-bottom: 20px;
}
.lotus-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: gap 0.2s ease;
}
.lotus-service-link:hover {
    gap: 12px;
    color: var(--theme-color-dark);
}

/* ===== Lotus IV Service Cards ===== */
.lotus-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.lotus-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.lotus-service-img {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.lotus-service-body {
    padding: 28px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lotus-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--title-font);
    color: var(--theme-color-dark);
}
.lotus-service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.lotus-service-title a:hover {
    color: var(--theme-color);
}
.lotus-service-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    flex: 1;
    margin-bottom: 20px;
}
.lotus-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: gap 0.2s ease;
}
.lotus-service-link:hover {
    gap: 12px;
    color: var(--theme-color-dark);
}