@import url("./global.css");

/* ==========================================================================
   HEADER - TOP BAR
   ========================================================================== */
.main-header .top-bar {
    background: var(--topbar-bg);
    color: var(--topbar-text);
    font-family: var(--body-font);
    padding: 10px 0;
    font-size: 13.5px;
}

.top-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.top-bar-left .top-bar-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--topbar-text);
    font-size: 13px;
    letter-spacing: 0.1px;
}

.top-bar-left .top-bar-info i {
    font-size: 16px;
    color: var(--topbar-icon);
}

.top-bar-right {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.top-bar-right .top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--topbar-text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-right .top-bar-item:hover,
.top-bar-right .top-bar-item:hover i {
    color: var(--accent-orange);
}

.top-bar-right .top-bar-item i {
    font-size: 16px;
    color: var(--topbar-icon);
}

.top-bar-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--topbar-border);
}

/*  HEADER - NAVIGATION BAR  */
.main-header nav.navbar {
    padding: 16px 0;
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    position: relative;
    z-index: 1000;
    /* border-bottom: 1px solid var(--border-light); */
    box-shadow: 0 4px 13px 0 rgba(27, 47, 90, 0.11);
}
 nav.navbar.is-sticky{
            background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    width: 100%;
 }
nav.navbar .rowWrappr {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar .main-logo .logo-brand {
    text-decoration: none;
    display: inline-block;
}

nav.navbar ul.menu-info {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav.navbar ul.menu-info>li {
    position: relative;
}

nav.navbar ul.menu-info>li>a {
    font-size: 15px;
    color: var(--nav-text);
    font-weight: 600;
    padding: 0px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav.navbar ul.menu-info>li>a:hover,
nav.navbar ul.menu-info>li>a:hover .ri-arrow-down-s-line {
    color: var(--nav-hover);
}

nav.navbar ul.menu-info>li>a i {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--nav-text);
}

nav.navbar ul.menu-info>li:hover>a i {
    transform: rotate(180deg);
    color: var(--nav-hover);
}
/* Header Pill Button with Calendar Icon Badge */
.header-action .lorem-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 6px 12px 6px 18px;
    border-radius: var(--btn-radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 14px var(--primary-green-glow);
}

.header-action .lorem-btn:hover {
    background-color: var(--btn-bg-hover);
    color: var(--btn-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--btn-hover-glow);
}
.header-action .lorem-btn span{
    display: inline-block;
    line-height: 24px;
}
.header-action .lorem-btn .badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--btn-badge-bg);
    color: var(--nav-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-action .lorem-btn:hover .badge-icon {
    color: var(--btn-badge-icon-hover);
}

/* ==========================================================================
   DESKTOP MEGA DROPDOWN MENU
   ========================================================================== */
.dropdown-mega-menu {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),
        visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: max-content;
    max-width: 90vw;
}

/* Hover bridge so dropdown does not close during mouse movement */
.dropdown-mega-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
}

.main-header nav.navbar .menu-info>li:hover .dropdown-mega-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
}

.dropdown-col {
    min-width: 260px;
    width: auto;
    max-width: 320px;
    flex: 1 1 auto;
}

.dropdown-group .group-title {
    color: var(--primary-green);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
    font-family: var(--headerfont);
}

.dropdown-group .group-title i {
    font-size: 18px;
    color: var(--primary-green);
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #231F20;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown-list li a i {
    font-size: 18px;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dropdown-list li a:hover {
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    transform: translateX(10px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown-list li a:hover i {
    transform: translateX(2px);
    color: var(--primary-green);
}
.gmc-submit-btn .wpcf7-spinner{
    position: absolute;
    top: 45%;
    right: -20px;
    transform: translateY(-45%);
}
.registration-form-col .wpcf7 form .wpcf7-response-output{
    font-size: 13px;
    letter-spacing: .4px;
    font-weight: 400;
    text-align: center;
    margin: 10px 0 0 0 !important;
}
.gmc-submit-btn .wpcf7-submit{
    background: transparent;
    border: none;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* ========================== Newsletter Error Message starts ======================== */
.newsletter-loader {
    width: 100%;
    margin-top: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.newsletter-message {
    width: 100%;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.newsletter-message.newsletter-success {
    color: #198754;
    background: #e8f7ee;
    border: 1px solid #b7e4c7;
}

.newsletter-message.newsletter-error {
    color: #dc3545;
    background: #fdeaea;
    border: 1px solid #f5c2c7;
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-btn.loading {
    pointer-events: none;
}
/* ========================== Newsletter Error Message Ends ======================== */

/* ========================== MOBILE MENU & SIDENAV ======================== */
.mb-only.mobile-menu {  
    display: none;
    opacity: 0;
}
@media (max-width: 1499px) {    
  .navbar .main-logo .logo-brand{
    width: 240px;
  }
.navbar .main-logo .logo-brand img{
    width: 100%;
  }
  nav.navbar ul.menu-info{
    gap: 20px;
  }
  nav.navbar ul.menu-info>li>a{
    font-size: 14px;
    font-weight: 500;
    gap: 3px;
  }
  .header-action .lorem-btn{
    gap: 10px;
    font-size: 13px;
    padding: 5px 10px 5px 14px;
  }
  .header-action .lorem-btn .badge-icon{
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
    nav.navbar ul.menu-info {
        gap: 13px;
    }
    .header-action .lorem-btn{
        font-size: 12px;
        padding: 6px 14px 6px 14px;
    }
    .header-action .lorem-btn .badge-icon{
        display: none;
    }
    .navbar .main-logo .logo-brand {
    width: 200px;
    }
    nav.navbar ul.menu-info>li>a{
    font-size: 13px;
    }
}
@media (max-width: 991px) {

    /* Hide desktop elements at 991px and below */
    .top-bar.desk-only,
    .main-header nav.navbar {
        display: none !important;
    }
    /* Enable Mobile Header and Sidenav */
    .mb-only.mobile-menu {
        display: block !important;
        opacity: 1;
    }
 .mobile-header.is-sticky{
    top: 0;
    position: fixed !important;
    z-index: 999 !important;
    background-color: #fff;
    width: 100%;
 }
    /* 1. Top Bar Header on Mobile */
    .mobile-menu .mobile-header {
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        box-shadow: 0 4px 13px 0 rgba(27, 47, 90, 0.11);
        position: relative;
        z-index: 99;
        transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .mobile-menu .mobile-logo-pill .logo-pill-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }

    .mobile-menu .mobile-logo-pill .logo-title {
        font-size: 13.5px;
        font-weight: 700;
        color: #022B48;
        letter-spacing: -0.2px;
        font-family: var(--headerfont);
    }

    .mobile-menu .mobile-action-btn {
        background-color: #3182CE;
        color: #ffffff;
        padding: 6px 16px;
        border-radius: 25px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 3px 8px rgba(49, 130, 206, 0.3);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .mobile-menu .mobile-action-btn:hover {
        background-color: #2b6cb0;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(49, 130, 206, 0.4);
    }

    .mobile-menu .mobile-action-btn i {
        transition: transform 0.3s ease;
    }

    .mobile-menu .mobile-action-btn:hover i {
        transform: translateX(3px);
    }

    .mobile-menu .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
.mobile-header{

}
    .mobile-menu .header-mail-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: #c67d16;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        text-decoration: none;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
    }

    .mobile-menu .header-mail-btn:hover {
        transform: scale(1.12);
        background-color: #d8891b;
        color: #ffffff;
    }

    .mobile-menu .mobile-nav-toggle {
        font-size: 26px;
        background: none;
        border: none;
        cursor: pointer;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
    }
.mobile-menu .mobile-nav-toggle i{
        color: var(--primary-green);
        font-size: 30px;
        font-weight: 500;
}
    .mobile-menu .mobile-nav-toggle:hover {
        background-color: rgba(255, 255, 255, 0.18);
        transform: scale(1.08);
    }

    /* 2. Offcanvas Sidenav Container & Overlay */
    .mobile-menu .mobile-sidenav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0.35s ease;
    }

    .mobile-menu .mobile-sidenav.open {
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu .sidenav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(2px);
        z-index: 100000;
        opacity: 0;
        transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
    }

    .mobile-menu .mobile-sidenav.open .sidenav-overlay {
        opacity: 1;
    }

    .mobile-menu .sidenav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        /* max-width: 330px; */
        height: 100%;
        background-color: var(--primary-green);
        z-index: 100001;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu .mobile-sidenav.open .sidenav-wrapper {
        transform: translateX(0);
    }

    .mobile-menu .sidenav-header {
        background-color: var(--white);
        padding: 8px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-shrink: 0;
    }

    .mobile-menu .sidenav-header-left {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }
.mobile-menu .sidenav-action-btn i{
    display: none;
}

    .mobile-menu .sidenav-action-btn {
        background-color: var(--accent-orange);
        color: var(--white);
        padding: 8px 14px;
        border-radius: var(--btn-radius);
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        letter-spacing: .4px;
    }

     .mobile-menu .sidenav-action-btn:hover{
    background-color: var(--btn-bg-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--btn-hover-glow);
  }

    /* Outside Top-Right Action Controls (Mail + Close Icon in Exact Same Spot) */
    .mobile-menu .sidenav-outside-header {
        position: absolute;
        top: 10px;
        right: 16px;
        z-index: 100005;
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0;
        transform: scale(0.85) rotate(-35deg);
        transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s,
                    transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s;
    }

    .mobile-menu .mobile-sidenav.open .sidenav-outside-header {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    .mobile-menu .close-btn {
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 32px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
    }

    .mobile-menu .close-btn:hover {
        transform: scale(1.15) rotate(90deg);
        color: #ffffff;
    }

    /* 3. Navigation List Styles */
    .mobile-menu .sidenav-nav {
        flex: 1;
        overflow-y: auto;
    }

    .mobile-menu .sidenav-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-menu .sidenav-nav ul li {
        position: relative;
    }
    span.toggle-icon i{
        font-size: 22px;
        line-height: 50px;
        color: #ffffff;
        transition: transform 0.2s ease;
    }
  span.toggle-icon {
    position: absolute;
    right: 0;
    content: "";
    top: 0;
    height: 60px;
    width: 60px;
    text-align: center;
    z-index: 9999;
}
    .mobile-menu .sidenav-nav ul li {
        border-bottom: 1px solid var(--topbar-border);
    }
    .gmc-bottom-bar{
        height: auto;
    }
    .mobile-menu .nav-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        color: var(--white);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }

    /* .mobile-menu .has-dropdown.opened>.nav-item {
        background: var(--primary-green-bg);
    } */

    .mobile-menu .nav-item .item-label {
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu .nav-item .item-label i {
        font-size: 18px;
        color: #ffffff;
        width: 20px;
        text-align: center;
    }

    .mobile-menu .nav-item .toggle-icon {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        transition: transform 0.2s ease;
    }


    /* 4. Submenu (Lighter Cerulean Blue) */
    .mobile-menu .submenu {
        display: none;
        background-color: var(--accent-orange);
        list-style: none;
        padding: 0;
        margin: 0;
        background: #359B63;
    }
 .sidenav-logo-pill .logo-pill-link img{
    width: 250px;
    max-width: 100%;
 }
    .mobile-menu .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .mobile-menu .submenu li:last-child {
        border-bottom: none;
    }

    .mobile-menu .submenu li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px 14px 24px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: background-color 0.2s ease;
        letter-spacing: 0.4px;
    }

    .mobile-menu .submenu li a:hover {
        background-color: rgba(255, 255, 255, 0.08);
    }

    .mobile-menu .submenu li a .sub-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-menu .submenu li a .sub-label i {
        font-size: 14px;
        color: #ffffff;
    }

    .mobile-menu .submenu li a .sub-toggle {
        font-size: 14px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.85);
    }

    /* 5. Bottom Sidenav Footer */
    .mobile-menu .sidenav-footer {
        padding: 14px 18px;
        background-color: #011F3A;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }


}
@media (max-width: 576px) {
    .sidenav-logo-pill .logo-pill-link img{
    width: 200px;
}
.mobile-menu .sidenav-action-btn i{
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
}
.mobile-menu .sidenav-action-btn span{
    display: none;
}
.mobile-menu .sidenav-action-btn{
    width: 34px;
    height: 34px;
    border-radius: var(--btn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0px;
}
.mobile-header .mobile-logo-pill a{
  width: 240px;
  display: inline-block;
}
.mobile-header .mobile-logo-pill img{
  max-width: 100%;
}
}
/* ================== NEW PATIENT REGISTRATION SECTION STYLES ================= */
.gmc-registration-section {
    position: relative;
    padding: 50px 0;
    background-image: url("../images/contact-banner-section.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
    overflow: hidden;
}

.gmc-registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

/* Left Column Info & Hours */

.registration-info-content .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--headerfont);
    line-height: 1.25;
}

.registration-info-content .section-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.registration-info-content .section-desc {
    font-size: 18px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.registration-info-content .opening-hours-block {
    margin-top: 50px;
}
.opening-hours-block p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    margin-right: 60px;
    margin-top: 40px;
}
.registration-info-content {
    max-width: 570px;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(211, 218, 232, 0.8);
    padding-bottom: 18px;
    margin-bottom: 26px;
}

.hours-header .hours-icon {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    line-height: normal;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 114, 61, 0.3);
    cursor: pointer;
}

/* Continuous smooth pulse ring animation */
.hours-header .hours-icon::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    opacity: 0.8;
    animation: hoursIconPulse 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
}

/* Clock icon rotation & tick animation */
.hours-header .hours-icon i {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: hoursClockTick 6s ease-in-out infinite alternate;
}

/* Smooth hover state */
.hours-header:hover .hours-icon,
.hours-header .hours-icon:hover {
    /* transform: scale(1.14) rotate(12deg);
    background-color: #0d8a4a; */
    box-shadow: 0 6px 16px rgba(10, 114, 61, 0.5);
}

.hours-header:hover .hours-icon i {
    transform: rotate(360deg);
}

/* Continuous pulse animation keyframes */
@keyframes hoursIconPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
        box-shadow: 0 0 0 0 rgba(10, 114, 61, 0.5);
    }
    70% {
        transform: scale(1.35);
        opacity: 0;
        box-shadow: 0 0 0 8px rgba(10, 114, 61, 0);
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(10, 114, 61, 0);
    }
}

/* Clock tick animation keyframes */
@keyframes hoursClockTick {
    0%, 80% {
        transform: rotate(0deg);
    }
    85% {
        transform: rotate(15deg);
    }
    90% {
        transform: rotate(-10deg);
    }
    95% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.hours-header .hours-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.opening-hours-block .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.opening-hours-block .hours-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}

.opening-hours-block .hours-list li .day {
    color: var(--white);
    font-weight: 500;
}

.opening-hours-block .hours-list li .time {
    color: var(--white);
}

.opening-hours-block .hours-list li .status-closed {
    color: var(--white);
}

/* Right Column Card & Form */
.registration-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px 25px;
    border-radius: 18px;
    background-color: rgba(53, 155, 99, 0.5019607843137255);
    border: 0.5px solid rgb(233 234 234 / 35%);
}

.registration-card .card-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
}

.card-title-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 22px;
}

.card-title-divider .orange-bar {
    width: 36px;
    height: 2px;
    background-color: var(--white);
    flex-shrink: 0;
    border-radius: 2px;
}

.card-title-divider .white-bar {
    flex-grow: 1;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
}

.patient-reg-form .form-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}
.patient-reg-form .wpcf7-not-valid-tip{
    color: #dc3232;
    font-size: 13px;
    font-weight: normal;
    /* display: block; */
    /* position: absolute; */
    font-weight: 500;
    width: 100%;
}
.patient-reg-form .gmc-input {
    height: 49px;
    border-radius: 14px;
    background-color: transparent;
    border: 0.5px solid #e9eaeab7;
    padding: 0 18px;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.gmc-submit-btn-wrappr {
    padding-top: 14px;
    margin-top: 24px;
    position: relative;
}

.gmc-submit-btn-wrappr::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e9eaeab7;
    top: 0;
}

.patient-reg-form .gmc-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.patient-reg-form .gmc-input:focus {
background-color: rgba(30, 80, 50, 0.7);
    box-shadow: 0 0 0 3px rgb(0 132 61 / 14%);
    border: 0.5px solid #00843d;
}

.form-bottom-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
    margin-bottom: 8px;
}

.gmc-submit-btn {
    width: 85%;
    /* max-width: 440px; */
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin: 10px 0 16px 0;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gmc-submit-btn:hover {
    background-color: #d86c2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--btn-hover-glow);
}
.gmc-submit-btn:hover span .ri-arrow-right-line{
    transition: transform 0.3s ease;    
    transform: translateX(3px);
}
.gmc-submit-btn .ri-arrow-right-line {
    margin-left: 7px;
}

.privacy-disclaimer {
    font-size: 14px;
    color: var(--white);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}


/* ====== PAGE FOOTER COMPONENT STYLES (GENERATIONS MEDICAL CENTRE) ======= */
.page-footer {
    background-color: var(--primary-green);
    color: var(--white);
    font-family: var(--body-font);
    overflow: hidden;
}

.gmc-main-footer {
    background-color: var(--primary-green);
    background-image: url("../images/fotter-bg-shape.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0 45px 0;
    position: relative;
}

.gmc-footer-row {
    row-gap: 30px;
}

.footer-contact-col {
    padding-right: 30px;
}

.footer-contact-col .footer-col {
    max-width: 320px;
}

.footer-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}


.footer-col {
    color: rgba(255, 255, 255, 0.9);
}

.footer-col .footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
    line-height: 24px;
}

.footer-subtext {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.footer-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #E2EBEF;
}

.footer-bullets li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #E2EBEF;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}
.footer-clinic-status {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #E2EBEF;
}

.footer-clinic-status .highlight-orange {
    font-weight: 600;
    display: block;
    font-size: 14px;
    color: #E2EBEF;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-contact-list li a i {
    font-size: 15px;
    color: var(--white);
}

.footer-contact-list li a:hover {
    color: var(--accent-orange);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 10px;
}
.charity-num,
.site-map a{
   color: #E2EBEF;
   font-size: 14px;
   font-weight: 500;
   text-decoration: none;
   transition: all 0.25s ease;
   display: inline-block;
   line-height: 24px;
}
.site-map a{
    margin: 12px 0;
}
.footer-links li a,
.footer-links.ft-lang-col li ,
 .ft-lang-col .footer-links li{
    color: #E2EBEF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-links li a:hover,
.site-map a:hover {
    color: var(--white);
    padding-left: 4px;
    color: var(--accent-orange);
}

.footer-links li.charity-num{
    font-size: 14px;
    color: #E2EBEF;
    line-height: 26px;
}

/* Social Block */
.footer-social-block {
    margin-top: 15px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.footer-social-block .social-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
}

.footer-social-block .social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-block .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #E2EBEF;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-social-block .social-icons a:hover {
    background-color: var(--btn-bg-hover);
    border-color: var(--btn-bg-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--btn-hover-glow);
}

/* Newsletter Subscription Bar */
.gmc-newsletter-bar {
    background-color: var(--primary-green-light);
    padding: 24px 0;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter-title-box .newsletter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-title-box strong {
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.newsletter-form {
    flex: 0 1 480px;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    height: 48px;
    border-radius: 30px;
    border: 1px solid rgba(0, 132, 61, 0.2);
    padding: 0 22px;
    font-size: 14px;
    color: var(--dark);
    background-color: var(--white);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input::placeholder {
    color: #57585A;
    font-weight: 500;
}

.newsletter-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 11px 20px 0 rgba(0, 0, 0, 0.07);
}

.newsletter-btn {
    height: 48px;
    padding: 0 28px;
    border-radius: 30px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);

}

.newsletter-btn:hover {
    background-color: var(--btn-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--btn-hover-glow);
}

.newsletter-btn i {
    font-size: 16px;
}

/* Bottom Bar */
.gmc-bottom-bar {
    background-color: var(--primary-green);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    height: 54px;
}
.gmc-bottom-bar .container{
  height: 100%;
}
.bottom-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.footer-build-our-page{
    font-size: 14px;
    color: #E2EBEF;
    padding-right: 10%;
}
.copyright-text {
    font-size: 14px;
    color: #E2EBEF;
}

/* .scroll-top-btn {
    color: var(--white);
    font-size: 34px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 0;
} */
/* .scroll-top-btn {
    position: fixed;
    right: 30px;
    bottom: 150px;
    z-index: 99999;
    display: none;
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #000;
    border-radius: 50%;
      opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}
.scroll-top-btn:hover {
    border:1px solid var(--primary-green);
     transition:0.3s;
}
.scroll-top-btn.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
} */
.scroll-top-btn {
    position: fixed;
    right: 30px;
    bottom: 155px;
    z-index: 99999;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #000;
    border: 0;
    border-radius: 50%;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    border: 1px solid var(--primary-green);
}
.scroll-top-btn i {
    font-size: 28px;
    color: #000;
}

/* .scroll-top-btn:hover,
.scroll-top-btn:focus {
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
} */
 @media (max-width: 1600px) {
    .footer-build-our-page {
    padding-right: 17%;
}

 }
@media (min-width: 1400px) {
    .footer-grid-wrapper {
        gap: 70px;
    }
}

@media (max-width: 1199px) {
    .footer-grid-wrapper {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .registration-info-content .opening-hours-block {
    margin-top: 30px;
}
.opening-hours-block .hours-list{
    gap: 20px;
}
    .registration-info-content {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .registration-info-content .section-title {
        font-size: 26px;
    }
}
@media (max-width: 991px) {
        .footer-contact-col {
    padding-right: 0px;
}
.copyright-text {
    margin-top: 0;
}

.bottom-bar-wrapper{
    flex-direction: column;
    padding: 10px;
}
.gmc-bottom-bar{
    height: auto;
}
.footer-build-our-page{
    text-align: center;
    margin-top: 5px;
}
    .footer-contact-col .footer-col{
        max-width: 100%;
    }

    .footer-links,
    .footer-contact-list{
        gap: 12px !important;
    }
}
@media(min-width:768px) and (max-width:991px){
      .scroll-top-btn {
        bottom: 200px;
        right: 8px;
    }
}
@media (max-width: 767px){
    .registration-info-content .section-desc{
        font-size: 14px;
    font-weight: 500;
    line-height: 1.70;
    }
    .gmc-main-footer {
        padding: 45px 0px;
    }
    .scroll-top-btn {
        bottom: 240px;
        right: 8px;
    }
.opening-hours-block .hours-list li{
        font-size: 14px;
}
    .patient-reg-form .gmc-input{
        height: 38px;
    }
    .registration-card{
        padding: 26px 16px;
    }
    .footer-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 576px) {
    .opening-hours-block .hours-list li,
    .opening-hours-block .hours-list li .day{
        display: inline-block;
    }
    .opening-hours-block .hours-list li .day{
        width: 40%
    }
    .gmc-registration-section{
        padding: 45px 0;
    }
    .gmc-submit-btn{
        width: 100%;
    }
    .footer-bullets li{
        margin-bottom: 8px;
    }
    .newsletter-btn .ri-send-plane-fill{
        display: none;
    }
    .newsletter-input-group{
        gap: 7px;
    }
    .footer-col .footer-title{
        margin-bottom: 14px;
    }
    .newsletter-input-group{
        position: relative;
    }
    /* .newsletter-input{
        padding-right: 120px
    } */
    .newsletter-btn{
    position: absolute;
    right: 6px;
    padding: 0 18px;
    height: 40px;
    }
    .opening-hours-block p{
        text-align: left;
        margin-right: 0;
        font-size: 14px;
    }

}
