/********** Template CSS **********/
:root {
    --primary: #B19458;
    --secondary: #8E7646;
    --light: #FDFBF7;
    --dark: #000000;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    color: #FFFFFF;
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/* Preloader & Tooth SVG Spinner Styles */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.preloader-overlay {
    background: #ffffff !important;
}

.preloader-spinner-wrapper {
    position: relative;
    width: 98px;
    height: 98px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    animation: preloaderSpin 1.2s linear infinite;
}

.preloader-icon-box {
    position: relative;
    z-index: 2;
    color: var(--primary);
    animation: preloaderPulse 1.8s ease-in-out infinite alternate;
}

.preloader-logo-img {
    width: 58px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(177, 148, 88, 0.3));
}

.preloader-brand-title {
    font-family: 'Jost', sans-serif;
    color: var(--primary);
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 2px;
}

.preloader-brand-subtitle {
    font-family: 'Jost', sans-serif;
    color: var(--secondary);
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
}

@keyframes preloaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloaderPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.85;
    }

    100% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    z-index: 99;
    color: #ffffff !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
}

.back-to-top-svg {
    stroke: #ffffff !important;
    width: 20px;
    height: 20px;
}

.top-shape {
    z-index: 1;
    padding-left: 2.25rem !important;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 100%;
    top: 0;
    left: -22px;
    background: var(--primary);
    transform: skew(40deg);
    z-index: -1;
}

.navbar {
    box-shadow: none !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10600;
    background-color: #ffffff;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

.sticky-top.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 10600;
}




.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
    white-space: nowrap;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Laptop Responsive Navbar & Topbar Layout Tuning */
.topbar-opening-text,
.topbar-contact-item {
    font-size: 13px;
}

@media (min-width: 992px) and (max-width: 1280px) {
    .topbar-opening-text {
        font-size: 11.5px !important;
    }
    .topbar-contact-item {
        font-size: 11.5px !important;
    }
    .top-shape {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .header-logo-img {
        height: 42px !important;
        width: auto !important;
    }
    .logo-text-primary {
        font-size: 19px !important;
    }
    .logo-text-secondary {
        font-size: 10.5px !important;
    }
    .navbar-light .navbar-nav .nav-link {
        padding: 25px 7px !important;
        font-size: 14.5px !important;
    }
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 16px 7px !important;
    }
    .header-phone-pill {
        height: 38px !important;
        padding: 3px 14px 3px 4px !important;
        gap: 6px !important;
    }
    .header-phone-icon-circle {
        width: 26px !important;
        height: 26px !important;
        font-size: 11.5px !important;
    }
    .header-phone-number {
        font-size: 13px !important;
    }
    .header-book-btn {
        height: 38px !important;
        padding: 6px 14px !important;
        font-size: 13.5px !important;
    }
}

@media (max-width: 991.98px) {

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.section-title h5,
.section-title .section-subtitle,
.section-title span.h5 {
    position: relative;
    display: inline-block;
    padding-right: 50px;
}

.section-title h5::before,
.section-title .section-subtitle::before,
.section-title span.h5::before {
    position: absolute;
    content: "";
    width: 38px;
    height: 3px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border-radius: 2px;
}

.section-title h1,
.section-title h2,
.section-title h3 {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
}

@media (max-width: 576px) {

    .section-title h1,
    .section-title h2,
    .section-title h3 {
        font-size: 24px;
    }
}

.section-desc {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-top: 12px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Clean Professional Page Hero Header System */
.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../../uploads/hero-section/carousel-1.jpg) center center/cover no-repeat;
    padding: 4.5rem 0;
    position: relative;
    border-bottom: 4px solid var(--primary);
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.15);
}

.hero-header-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 2.5rem;
    margin: 8px 0 14px 0;
}

.hero-header-subtitle {
    font-family: 'Jost', sans-serif;
    position: relative;
    display: inline-block;
    padding-right: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-header-subtitle::before {
    position: absolute;
    content: "";
    width: 38px;
    height: 3px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border-radius: 2px;
}

.page-hero-breadcrumb {
    font-family: 'Jost', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.page-hero-breadcrumb i {
    color: var(--primary);
    font-size: 12px;
}

.page-hero-breadcrumb .active {
    color: #ffffff;
    font-weight: 600;
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius: 100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after {
    opacity: 1;
}






/* Logo Typography Styles */
.logo-text-primary {
    font-family: 'Jost', sans-serif;
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-text-secondary {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--secondary);
}

/* Header Logo Responsive Styles */
.header-logo-img {
    height: 80px;
}

@media (max-width: 991.98px) {
    .header-logo-img {
        height: 60px;
    }

    .logo-text-primary {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    .logo-text-secondary {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media (max-width: 575.98px) {
    .header-logo-img {
        height: 45px;
    }

    .logo-text-primary {
        font-size: 18px;
        letter-spacing: 0;
    }

    .logo-text-secondary {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* Mobile Navbar Slide-out Drawer */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        background-color: var(--light);
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        display: flex !important;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }

    .navbar-collapse.show-drawer {
        right: 0;
    }

    .navbar-nav .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--dark) !important;
        transition: 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary) !important;
        padding-left: 10px;
    }

    .navbar-collapse .btn-primary {
        margin-top: 1.5rem;
        margin-left: 0 !important;
        width: 100%;
        padding: 1rem;
    }

    .mobile-menu-close {
        align-self: flex-end;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
        margin-bottom: 1.5rem;
        display: block !important;
        transition: 0.3s;
    }

    .mobile-menu-close:hover {
        color: var(--primary);
        transform: rotate(90deg);
    }
}

.mobile-menu-close {
    display: none;
}

/* Backdrop */
.navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.navbar-backdrop.show-backdrop {
    opacity: 1;
    visibility: visible;
}

/* Exact Match Mobile UI Redesign */
.custom-toggler-circle {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 50% !important;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: 0.3s;
}

.custom-toggler-circle:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Custom Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 2px;
    transition: 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.custom-toggler-circle:hover .hamburger-icon span {
    background-color: var(--primary);
}

.custom-toggler-circle:hover .hamburger-icon span:nth-child(2) {
    width: 60%;
    transform: translateX(40%);
}

.custom-close-circle {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0 !important;
    font-size: 1.2rem !important;
    background: transparent;
    color: var(--dark);
    font-weight: 300;
}

@media (max-width: 991.98px) {

    /* Overwrite previous mobile nav link styles to match screenshot exactly */
    .navbar-nav .nav-link {
        font-family: 'Jost', sans-serif;
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        border-bottom: none !important;
        padding: 0.75rem 0 !important;
        position: relative;
        color: #213532 !important;
        /* Screenshot dark text */
    }

    .navbar-nav .nav-link:hover {
        padding-left: 0 !important;
        /* Remove the shift hover effect from earlier */
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse .navbar-nav {
        width: 100% !important;
        margin-left: 0 !important;
        align-items: flex-start !important;
    }
}

/* Drawer Specific Styles (Refactored from inline) */
.drawer-logo-img {
    height: 40px;
}

.drawer-logo-primary {
    font-size: 16px;
}

.drawer-logo-secondary {
    font-size: 8px;
    letter-spacing: 2px;
}

.drawer-btn-group {
    gap: 10px;
}

.drawer-action-btn {
    gap: 8px;
    font-weight: 500;
}

.drawer-whatsapp-btn {
    background-color: #d1f4e1;
    color: #128c7e;
    gap: 8px;
    font-weight: 500;
}

.drawer-whatsapp-btn:hover {
    color: #0b7266;
}

.drawer-book-btn {
    gap: 8px;
    font-weight: 600;
    color: white !important;
}

.drawer-info-text {
    font-size: 13px;
    line-height: 1.4;
}

/* Full Width Hero Carousel Container with Bottom Rounded Corners */
.hero-section-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-carousel-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 0 54px 54px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(177, 148, 88, 0.1);
}

.hero-carousel-inner {
    border-radius: 0 0 54px 54px;
    overflow: hidden;
}

.hero-carousel-inner picture {
    display: block;
    width: 100%;
}

.hero-carousel-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 54px 54px;
}

/* Custom Styled Carousel Navigation Buttons (Hover Slide-in & Slide-out) */
.custom-carousel-btn {
    width: 46px !important;
    height: 46px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border-radius: 50% !important;
    top: 50% !important;
    margin: 0 20px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(177, 148, 88, 0.3) !important;
    z-index: 10;
}

.custom-carousel-btn.carousel-control-prev {
    transform: translateY(-50%) translateX(-30px) !important;
}

.custom-carousel-btn.carousel-control-next {
    transform: translateY(-50%) translateX(30px) !important;
}

/* On Carousel Hover: Buttons Slide In from Left & Right */
.hero-carousel-wrapper:hover .custom-carousel-btn,
#header-carousel:hover .custom-carousel-btn {
    opacity: 0.9 !important;
    visibility: visible !important;
}

.hero-carousel-wrapper:hover .custom-carousel-btn.carousel-control-prev,
#header-carousel:hover .custom-carousel-btn.carousel-control-prev {
    transform: translateY(-50%) translateX(0) !important;
}

.hero-carousel-wrapper:hover .custom-carousel-btn.carousel-control-next,
#header-carousel:hover .custom-carousel-btn.carousel-control-next {
    transform: translateY(-50%) translateX(0) !important;
}

/* Individual Button Hover State (Scale & Primary Background) */
.custom-carousel-btn:hover {
    background: var(--primary) !important;
    opacity: 1 !important;
    border-color: var(--primary) !important;
}

.custom-carousel-btn.carousel-control-prev:hover {
    transform: translateY(-50%) translateX(0) scale(1.1) !important;
}

.custom-carousel-btn.carousel-control-next:hover {
    transform: translateY(-50%) translateX(0) scale(1.1) !important;
}

.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
    width: 1.3rem !important;
    height: 1.3rem !important;
    filter: invert(0.6) sepia(1) saturate(3) hue-rotate(15deg);
    transition: filter 0.3s ease;
}

.custom-carousel-btn:hover .carousel-control-prev-icon,
.custom-carousel-btn:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1) !important;
}

@media (max-width: 991.98px) {
    .hero-section-container {
        padding: 12px 14px 6px 14px !important;
    }
    .hero-carousel-wrapper {
        border-radius: 22px !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08) !important;
    }
    .hero-carousel-inner {
        border-radius: 22px !important;
    }
    .hero-carousel-img {
        border-radius: 22px !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .custom-carousel-btn {
        width: 34px !important;
        height: 34px !important;
        margin: 0 8px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    .custom-carousel-btn.carousel-control-prev {
        transform: translateY(-50%) translateX(-20px) !important;
    }
    .custom-carousel-btn.carousel-control-next {
        transform: translateY(-50%) translateX(20px) !important;
    }
    .hero-carousel-wrapper:hover .custom-carousel-btn,
    .hero-carousel-wrapper:active .custom-carousel-btn,
    #header-carousel:hover .custom-carousel-btn,
    #header-carousel:active .custom-carousel-btn {
        opacity: 0.9 !important;
        visibility: visible !important;
    }
    .hero-carousel-wrapper:hover .custom-carousel-btn.carousel-control-prev,
    .hero-carousel-wrapper:active .custom-carousel-btn.carousel-control-prev,
    #header-carousel:hover .custom-carousel-btn.carousel-control-prev,
    #header-carousel:active .custom-carousel-btn.carousel-control-prev {
        transform: translateY(-50%) translateX(0) !important;
    }
    .hero-carousel-wrapper:hover .custom-carousel-btn.carousel-control-next,
    .hero-carousel-wrapper:active .custom-carousel-btn.carousel-control-next,
    #header-carousel:hover .custom-carousel-btn.carousel-control-next,
    #header-carousel:active .custom-carousel-btn.carousel-control-next {
        transform: translateY(-50%) translateX(0) !important;
    }
    .custom-carousel-btn .carousel-control-prev-icon,
    .custom-carousel-btn .carousel-control-next-icon {
        width: 0.95rem !important;
        height: 0.95rem !important;
    }
}


/* Hero Section Typography Refactor */
.hero-content {
    max-width: 900px;
}

.hero-badge {
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-heading {
    line-height: 1.1;
}

.hero-subtext {
    opacity: 0.9;
}

/* About Section Helper Styles */
.about-img-container {
    min-height: 500px;
}

.about-img {
    object-fit: cover;
}

/* About Section Photo Card Redesign */
.about-photo-wrapper {
    position: relative;
    padding: 15px;
}

.about-photo-frame {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary);
    border-radius: 24px;
    opacity: 0.15;
    z-index: 1;
}

.about-photo-card {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid #ffffff;
    background-color: #ffffff;
}

.about-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: 25px;
    left: -10px;
    z-index: 3;
    background: #ffffff;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary);
}

@media (max-width: 576px) {
    .about-experience-badge {
        left: 10px;
        bottom: 10px;
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* Luxury Dark Footer Redesign */
.footer-dark-bg {
    background-color: #111827;
    color: #9CA3AF;
    border-top: 4px solid var(--primary);
}

.footer-logo-img {
    height: 64px;
    width: auto;
}

.footer-logo-title {
    font-size: 26px !important;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 68px;
    }

    .footer-logo-title {
        font-size: 24px !important;
        letter-spacing: 1px !important;
    }

    .footer-logo-box .logo-text-secondary {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
}

.footer-description-dark {
    color: #D1D5DB;
    font-size: 14px;
    line-height: 1.65;
    max-width: 420px;
}

.footer-column-title {
    color: #FFFFFF;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 22px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-nav-link {
    color: #D1D5DB;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.footer-nav-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

.footer-contact-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-contact-icon {
    width: 18px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: var(--primary);
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 1px;
}

.footer-contact-box span,
.footer-contact-box a {
    color: #D1D5DB;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-box a:hover {
    color: var(--primary) !important;
}

.footer-bottom-dark {
    background-color: #0B0F19;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9CA3AF;
}

.footer-bottom-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom-link:hover {
    color: #FFFFFF;
}

.footer-copy-icon {
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: -1px;
    margin-right: 3px;
    color: var(--primary);
}

/* Consistent Section Spacing Across Homepage */
.container-fluid.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (max-width: 768px) {
    .container-fluid.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Footer Social Buttons (Vibrant Circular Icons) */
.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 17px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.social-facebook {
    background-color: #1877F2;
}

.social-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social-linkedin {
    background-color: #0A66C2;
}

.social-youtube {
    background-color: #FF0000;
}

/* 14 Treatments Card UI - Premium Professional Healthcare Layout */
.service-item {
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.service-item .rounded-top {
    height: 195px;
    position: relative;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.service-item .rounded-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 6px 6px 0 0;
}

.service-item:hover .rounded-top img {
    transform: scale(1.06);
}

.service-item .bg-light {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary);
    border-radius: 0 0 6px 6px;
    transition: all 0.35s ease;
    background-color: #ffffff !important;
    box-shadow: none !important;
}

.service-item:hover .bg-light {
    border-color: var(--primary);
    box-shadow: none !important;
}

.service-item .symptom-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
}

.service-item h5 {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.service-item:hover h5 {
    color: var(--primary) !important;
}

/* Mobile View 2 Columns Per Row Optimizations */
@media (max-width: 576px) {
    .service-item .rounded-top {
        height: 125px;
    }

    .service-item .bg-light {
        padding: 12px 6px !important;
    }

    .service-item .symptom-text {
        font-size: 9px;
        letter-spacing: 0.3px;
        margin-bottom: 3px;
    }

    .service-item h5 {
        font-size: 13px;
        line-height: 1.3;
    }
}

/* Patient Reviews & Testimonial Section Styles */
.testimonial-section {
    background-color: #FDFBF7 !important;
}

.testimonial-rating-bar {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 16px 24px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: rgba(177, 148, 88, 0.15);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-patient {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.testimonial-avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.testimonial-tag {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* Testimonial Carousel Controls & Indicators */
.testimonial-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(177, 148, 88, 0.35);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-carousel-btn:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;

    box-shadow: 0 6px 18px rgba(177, 148, 88, 0.3);
}



.testimonial-indicators {
    position: relative;
    margin: 0 !important;
    justify-content: center;
    gap: 8px;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(177, 148, 88, 0.3);
    border: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.6;
    cursor: pointer;
    padding: 0;
}

.testimonial-indicators button:hover {
    opacity: 0.9;
}

.testimonial-indicators button.active {
    width: 32px !important;
    border-radius: 10px !important;
    background-color: var(--primary) !important;
    opacity: 1 !important;
}

/* Testimonial Track Slider (1-by-1 Single Card Movement) */
.testimonial-slider-container {
    position: relative;
    width: 100%;
}

.testimonial-slider-track-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;

    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.testimonial-slider-track-wrapper.is-dragging {
    cursor: grabbing !important;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    margin: 0 -12px;
}

.testimonial-slide-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 12px;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    .testimonial-slide-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .testimonial-slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Contact Page Redesign Styles */
.contact-feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary);
    border-radius: 8px;
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-feature-card:hover {
    border-color: var(--primary);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(177, 148, 88, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-card-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.contact-card-link:hover {
    color: #1a1a1a;
}

.contact-action-banner {
    background: #111827;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 36px 32px;
    color: #ffffff;
}

.contact-action-title {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-action-text {
    color: #9CA3AF;
    font-size: 15px;
    margin-bottom: 0;
}

.contact-map-wrapper {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary);
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Outline Primary Button Hover Styling */
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

@media (max-width: 575.98px) {

    /* Hero Header Mobile Adjustments */
    .hero-header {
        padding: 2.5rem 0;
    }

    .hero-header-title {
        font-size: 1.85rem;
        margin: 6px 0 10px 0;
    }

    .hero-header-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
        padding-right: 42px;
    }

    .hero-header-subtitle::before {
        width: 30px;
    }

    .page-hero-breadcrumb {
        font-size: 13px;
        gap: 8px;
    }

    /* Section Title Mobile Font Sizes & Gold Line */
    .section-title h2 {
        font-size: 20px !important;
    }

    .section-title h5,
    .section-title .section-subtitle,
    .section-title span.h5 {
        font-size: 13px !important;
        padding-right: 42px !important;
    }

    .section-title h5::before,
    .section-title .section-subtitle::before,
    .section-title span.h5::before {
        width: 32px !important;
    }

    /* Contact 2-Column Cards Mobile Optimization */
    .contact-feature-card {
        padding: 16px 10px !important;
        border-radius: 6px;
    }

    .contact-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    .contact-card-title {
        font-size: 13px !important;
        margin-bottom: 4px !important;
    }

    .contact-card-text {
        font-size: 11px !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
    }

    .contact-card-link {
        font-size: 11px !important;
    }

    .contact-feature-card .badge {
        font-size: 10px !important;
        padding: 4px 8px !important;
    }

    /* Emergency Action Banner Mobile Optimization */
    .contact-action-banner {
        padding: 20px 16px !important;
    }

    .contact-action-title {
        font-size: 17px !important;
        margin-bottom: 6px !important;
    }

    .contact-action-text {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .contact-action-banner .d-flex.gap-3 {
        width: 100%;
        flex-direction: column;
        gap: 8px !important;
    }

    .contact-action-banner .btn {
        width: 100% !important;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }

    /* Google Map Wrapper Mobile Optimization */
    .contact-map-header {
        padding: 12px 14px !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
    }

    .contact-map-header h5 {
        font-size: 13px !important;
    }

    .contact-map-header .btn {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }

    .contact-map-iframe {
        height: 300px !important;
    }

    /* Homepage Carousel Hero Mobile Optimization */
    .hero-content {
        padding: 10px !important;
    }

    .hero-badge {
        font-size: 11px !important;
        padding: 4px 10px !important;
        margin-bottom: 8px !important;
    }

    .hero-heading {
        font-size: 22px !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .hero-subtext {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-content .btn {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }

    /* Homepage About Section Mobile Optimization */
    .col-lg-7 .section-title h2 {
        font-size: 19px !important;
        line-height: 1.35 !important;
    }

    .col-lg-7 h4.fst-italic {
        font-size: 13px !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
    }

    .col-lg-7 p.mb-4 {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 14px !important;
    }

    .row.g-2.g-sm-3 h5 {
        font-size: 11px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
    }

    .row.g-2.g-sm-3 i {
        font-size: 13px !important;
    }

    .about-img-container {
        min-height: auto !important;
        height: auto !important;
    }

    .about-photo-wrapper {
        min-height: auto !important;
        height: auto !important;
    }

    .about-photo-card {
        height: auto !important;
    }

    .about-photo-card img {
        height: auto !important;
        max-width: 100%;
        display: block;
    }

    .about-experience-badge {
        padding: 10px 16px !important;
        border-radius: 50px !important;
        left: 5px !important;
        bottom: 5px !important;
    }

    .about-experience-badge h6 {
        font-size: 13px !important;
    }

    .about-experience-badge small {
        font-size: 10px !important;
    }

    .about-experience-badge i {
        font-size: 18px !important;
        margin-right: 8px !important;
    }

    /* Homepage Treatments Grid Mobile Optimization */
    .service-item .rounded-top {
        height: 110px !important;
    }

    .service-item .bg-light {
        padding: 10px 6px !important;
    }

    .service-item .symptom-text {
        font-size: 10px !important;
        margin-bottom: 2px !important;
    }

    .service-item h5 {
        font-size: 12px !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }

    /* Homepage Testimonial Section Mobile Optimization */
    .testimonial-card {
        padding: 16px 12px !important;
        border-radius: 8px !important;
    }

    .testimonial-text {
        font-size: 12px !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
    }

    .testimonial-stars {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    .testimonial-avatar-initials {
        width: 36px !important;
        height: 36px !important;
        font-size: 12px !important;
    }

    .testimonial-name {
        font-size: 13px !important;
    }

    .testimonial-tag {
        font-size: 11px !important;
    }

    .testimonial-carousel-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
    }

    /* Footer Mobile Responsiveness Optimization */
    .footer-dark-bg {
        padding-top: 24px !important;
        padding-bottom: 20px !important;
    }

    .footer-logo-img {
        height: 48px !important;
    }

    .footer-logo-title {
        font-size: 18px !important;
    }

    .footer-description-dark {
        font-size: 12px !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
    }

    .footer-social-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 13px !important;
    }

    .footer-column-title {
        font-size: 15px !important;
        margin-bottom: 12px !important;
        padding-bottom: 6px !important;
    }

    .footer-nav-link {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }

    .footer-contact-box span,
    .footer-contact-box a {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .footer-contact-icon {
        font-size: 13px !important;
        width: 16px !important;
        margin-right: 6px !important;
    }

    .footer-bottom-dark {
        padding: 12px 0 !important;
    }

    .footer-bottom-dark p {
        font-size: 11px !important;
    }

    /* Navbar Header & Mobile Drawer Optimization */
    .navbar {
        padding: 6px 10px !important;
        flex-wrap: nowrap !important;
    }

    .navbar-brand {
        margin-right: 0 !important;
        flex-shrink: 1;
        min-width: 0;
    }

    .navbar-brand .header-logo-img {
        height: 34px !important;
        flex-shrink: 0;
    }

    .navbar-brand .logo-text-primary {
        font-size: 13.5px !important;
        letter-spacing: 0.5px !important;
    }

    .navbar-brand .logo-text-secondary {
        font-size: 7.5px !important;
        letter-spacing: 0.5px !important;
    }

    .header-book-btn {
        height: 36px !important;
        padding: 4px 13px !important;
        font-size: 12.5px !important;
        font-weight: 600 !important;
        gap: 5px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50rem !important;
    }

    .custom-toggler-circle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        flex-shrink: 0 !important;
        border-radius: 50% !important;
    }

    .custom-toggler-circle .hamburger-icon {
        width: 16px !important;
        height: 11px !important;
    }

    .custom-toggler-circle .hamburger-icon span {
        height: 2px !important;
    }

    /* Mobile Slide-Out Drawer Sizing */
    .navbar-collapse.show-drawer {
        width: 85vw !important;
        max-width: 340px !important;
        padding: 1.5rem 1.25rem !important;
    }

    .drawer-header {
        margin-bottom: 16px !important;
        padding-bottom: 10px !important;
    }

    .drawer-logo-img {
        height: 38px !important;
    }

    .drawer-logo-primary {
        font-size: 16px !important;
    }

    .drawer-logo-secondary {
        font-size: 8px !important;
    }

    .custom-close-circle {
        width: 36px !important;
        height: 36px !important;
        font-size: 20px !important;
    }

    .navbar-nav .nav-link {
        font-size: 16px !important;
        font-weight: 600 !important;
        padding: 8px 0 !important;
        margin-bottom: 4px !important;
    }

    .drawer-action-btn,
    .drawer-whatsapp-btn {
        padding: 8px 12px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .drawer-info-card {
        padding: 12px !important;
    }

    .drawer-info-text {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .drawer-info-card i {
        font-size: 14px !important;
    }

    /* Back To Top Mobile Optimization */
    .back-to-top {
        right: 16px !important;
        bottom: 16px !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
    }

    .back-to-top-svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Global Appointment Modal Popup Styles */
.appointment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 24, 39, 0.75);
    /* backdrop-filter: blur(6px); */
    /* -webkit-backdrop-filter: blur(6px); */
    z-index: 10700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}


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

.appointment-modal-dialog {
    width: 100%;
    max-width: 620px;
    margin: auto;
    perspective: 1000px;
}

.appointment-modal-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    /* border: 1px solid rgba(184, 151, 89, 0.25); */
    overflow: hidden;
    transform: scale(0.92) translateY(30px);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.appointment-modal-overlay.active .appointment-modal-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Modal Header */
.appointment-modal-header {
    background: #111827;
    padding: 20px 24px;
    color: #ffffff;
    border-bottom: 3px solid var(--primary);
}

.appointment-modal-logo {
    height: 42px;
    width: auto;
}

.appointment-modal-title {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.appointment-modal-subtitle {
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 0.5px;
    display: block;
}

.appointment-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.appointment-modal-close:hover {
    background: var(--primary);
    color: #ffffff;

}

/* Modal Body */
.appointment-modal-body {
    padding: 24px 28px;
    max-height: calc(88vh - 90px);
    overflow-y: auto;
}

.appointment-modal-desc {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.45;
}

.appointment-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.appointment-input-group {
    position: relative;
}

.appointment-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}

.appointment-textarea-icon {
    top: 18px;
    transform: none;
}

.appointment-form-input,
.appointment-form-select {
    padding-left: 40px !important;
    height: 44px;
    font-size: 13.5px;
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    background-color: #F9FAFB;
    transition: all 0.25s ease;
}

.appointment-form-textarea {
    padding-left: 40px !important;
    font-size: 13.5px;
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    background-color: #F9FAFB;
    transition: all 0.25s ease;
}

.appointment-form-input:focus,
.appointment-form-select:focus,
.appointment-form-textarea:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(184, 151, 89, 0.18);
    outline: none;
}

.appointment-submit-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(184, 151, 89, 0.3);
}

.appointment-submit-btn:hover {
    background-color: #a0824b !important;
    border-color: #a0824b !important;

}

/* Emergency Action Bar */
.appointment-emergency-label {
    font-size: 12px;
    font-weight: 600;
    color: #4B5563;
}

.appointment-quick-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
}

.appointment-quick-wa {
    background-color: #D1F4E1;
    color: #128C7E;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    transition: all 0.25s ease;
}

.appointment-quick-wa:hover {
    background-color: #128C7E;
    color: #ffffff;
}

/* Success View */
.appointment-success-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-success-icon {
    font-size: 42px;
    color: #10B981;
}

.appointment-success-title {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.appointment-success-text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.5;
}

.appointment-wa-confirm-btn {
    background-color: #25D366;
    border-color: #25D366;
}

.appointment-wa-confirm-btn:hover {
    background-color: #1eb857;
    border-color: #1eb857;
}

.max-width-320 {
    max-width: 320px;
}

/* Mobile Responsiveness for Appointment Modal */
@media (max-width: 575.98px) {
    .appointment-modal-overlay {
        padding: 12px;
    }

    .appointment-modal-header {
        padding: 14px 16px;
    }

    .appointment-modal-logo {
        height: 32px;
    }

    .appointment-modal-title {
        font-size: 16px;
    }

    .appointment-modal-subtitle {
        font-size: 9.5px;
    }

    .appointment-modal-body {
        padding: 16px;
        max-height: calc(85vh - 70px);
    }

    .appointment-modal-desc {
        font-size: 11.5px;
        margin-bottom: 14px;
    }

    .appointment-form-label {
        font-size: 12px;
    }

    .appointment-form-input,
    .appointment-form-select {
        height: 40px;
        font-size: 12px;
        padding-left: 36px !important;
    }

    .appointment-form-textarea {
        font-size: 12px;
        padding-left: 36px !important;
    }

    .appointment-input-icon {
        font-size: 12px;
        left: 12px;
    }

    .appointment-submit-btn {
        padding: 10px !important;
        font-size: 13.5px !important;
    }
}

/* Topbar Opening Hours Contrast & Visibility Enhancement */
.topbar-opening-text {
    font-size: 13px !important;
    color: #1F2937 !important;
    padding: 7px 0;
}

.topbar-opening-label {
    color: #111827 !important;
    font-weight: 700 !important;
}

.topbar-opening-hours {
    color: #374151 !important;
    font-weight: 600 !important;
}

/* Header Book Appointment Button Active & Focus State Cleanup */
.header-book-btn,
.header-book-btn:focus,
.header-book-btn:active,
.header-book-btn:focus-visible,
.header-book-btn:active:focus {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

.header-book-btn:hover {
    background-color: #a0824b !important;
    border-color: #a0824b !important;
    color: #ffffff !important;
}

/* Homepage FAQ Accordion Section Styles */


.faq-accordion-item {
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    margin-bottom: 16px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(184, 151, 89, 0.5) !important;
    box-shadow: 0 8px 25px rgba(184, 151, 89, 0.1);
}

.faq-accordion-button {
    background-color: #ffffff !important;
    color: #111827 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 18px 24px !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.faq-accordion-button:not(.collapsed) {
    background-color: #FFFDF9 !important;
    color: var(--primary) !important;
    padding-bottom: 8px !important;
    box-shadow: none !important;
}

.faq-accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.faq-question-text {
    font-family: 'Jost', sans-serif;
    line-height: 1.35;
}

.faq-accordion-button::after {
    background-size: 1.1rem !important;
    transition: transform 0.3s ease !important;
}

.faq-accordion-body {
    padding: 4px 24px 20px 24px !important;
    color: #4B5563;
    font-size: 14.5px;
    line-height: 1.65;
    background-color: #FFFDF9;
}

.faq-help-box {
    border-top: 3px solid var(--primary) !important;
    border-radius: 16px !important;
}

/* Mobile Responsiveness for FAQ Section */
@media (max-width: 575.98px) {
    .faq-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .faq-accordion-item {
        margin-bottom: 10px !important;
        border-radius: 10px !important;
    }

    .faq-accordion-button {
        font-size: 13.5px !important;
        padding: 12px 14px !important;
        line-height: 1.35 !important;
    }

    .faq-accordion-button::after {
        background-size: 0.85rem !important;
    }

    .faq-accordion-button:not(.collapsed) {
        padding-bottom: 4px !important;
    }

    .faq-accordion-body {
        padding: 2px 14px 14px 14px !important;
        font-size: 12.5px !important;
        line-height: 1.55 !important;
    }

    .faq-help-box {
        padding: 16px 12px !important;
        margin-top: 2rem !important;
        border-radius: 12px !important;
    }

    .faq-help-box h5 {
        font-size: 14px !important;
    }

    .faq-help-box p {
        font-size: 11.5px !important;
        margin-bottom: 12px !important;
    }

    .faq-help-box .btn {
        padding: 8px 14px !important;
        font-size: 11.5px !important;
        width: 100% !important;
    }
}

/* FAQ Media Card & Left Column Styles */
.faq-media-card {
    height: 480px !important;
    border-radius: 18px !important;
    border-color: #E2E8F0 !important;
}

@media (min-width: 992px) {
    .faq-media-card {
        position: sticky;
        top: 100px;
        z-index: 5;
    }
}

.faq-media-img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faq-media-card:hover .faq-media-img {
    transform: scale(1.04);
}

.faq-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.2) 0%, rgba(17, 24, 39, 0.65) 100%);
    border-radius: 18px;
}

.faq-media-badge-box {
    border-left: 4px solid var(--primary);
}

.faq-badge-icon-circle {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

/* Our Results Page & Before/After Card Styles */

.result-card {
    border-radius: 20px !important;
    border: 1px solid #E2E8F0 !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}



.ba-slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 20px 20px 0 0;
    background-color: #F1F5F9;
    touch-action: pan-y;
    cursor: ew-resize;
}

.ba-after-wrapper,
.ba-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-before-wrapper {
    width: 50%;
    z-index: 2;
    border-right: 2px solid #ffffff;
}

.ba-img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-after-wrapper .ba-img {
    width: 100%;
}

.ba-before-wrapper .ba-img {
    width: 100%;
    max-width: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    z-index: 3;
}

.ba-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.result-status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.badge-before {
    background-color: rgba(17, 24, 39, 0.82);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.badge-after {
    background-color: rgba(184, 151, 89, 0.9);
    color: #ffffff;
    left: auto;
    right: 14px;
    backdrop-filter: blur(4px);
}

.result-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.result-card:hover .result-handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary);
    color: #ffffff;
}

.result-category-pill {
    display: inline-block;
    background-color: #FFFDF9;
    color: var(--primary);
    border: 1px solid rgba(184, 151, 89, 0.25);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.result-card-title {
    font-family: 'Jost', sans-serif;
    font-weight: 800 !important;
    color: #111827;
    font-size: 17.5px;
    line-height: 1.35;
}

.result-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #6B7280 !important;
}

.result-meta-info {
    font-size: 12.5px;
    font-weight: 500;
    color: #6B7280 !important;
}

.result-details-link {
    color: var(--primary) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.result-details-link:hover {
    color: #a0824b !important;
}

.result-cta-box {
    border-top: 4px solid var(--primary) !important;
    border-radius: 20px !important;
}

/* Mobile Responsiveness for Results Page */
@media (max-width: 575.98px) {
    .ba-slider-container {
        height: 330px !important;
    }


    .result-card-title {
        font-size: 14.5px;
    }

    .result-card-desc {
        font-size: 12px;
    }

    .result-meta-info {
        font-size: 11.5px;
    }

    .result-details-link {
        font-size: 12px;
    }

    .result-handle-circle {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .result-cta-box {
        padding: 24px 16px !important;
    }

    .result-cta-box h3 {
        font-size: 18px;
    }

    .result-cta-box p {
        font-size: 12px;
    }

    .result-cta-box .btn {
        width: 100% !important;
        padding: 10px 16px !important;
        font-size: 12px !important;
    }
}

/* 404 Error Page Styles */
.error-404-section {
    background-color: #F8FAFC !important;
}

.error-404-card {
    border-color: #E2E8F0 !important;
    border-radius: 24px !important;
}

.error-404-code {
    font-family: 'Jost', sans-serif;
    font-size: 7.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    letter-spacing: -2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.error-404-icon {
    font-size: 5.5rem;
    vertical-align: middle;
    filter: drop-shadow(0 8px 16px rgba(184, 151, 89, 0.3));
}

.error-404-text {
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile Responsiveness for 404 Page */
@media (max-width: 575.98px) {
    .error-404-code {
        font-size: 5rem;
    }

    .error-404-icon {
        font-size: 3.5rem;
    }

    .error-404-text {
        font-size: 13.5px;
    }

    .error-404-card {
        padding: 24px 16px !important;
    }

    .error-404-card h2 {
        font-size: 20px;
    }

    .error-404-card .btn {
        width: 100% !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}

/* Header Book Appointment Pill Button */
.header-book-btn {
    border-radius: 50px !important;
}

/* Doctors & Lead Specialists Section Styles */
.doctor-section-bg {
    background-color: #F8FAFC !important;
}

.doctor-profile-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(9, 30, 62, 0.07);
    border: 1px solid rgba(9, 30, 62, 0.06);
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
}

@media (min-width: 768px) {
    .doctor-card-row {
        height: 100%;
    }

    .doctor-img-col {
        height: 100%;
    }
}

.doctor-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    background-color: #091E3E;
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.doctor-profile-card:hover .doctor-img {
    transform: scale(1.04);
}

.doctor-info-box {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.doctor-role-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: #091E3E;
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(9, 30, 62, 0.15);
    letter-spacing: 0.3px;
}

.doctor-name {
    color: #091E3E;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 2px;
}

.doctor-qualification {
    color: #B89759;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-bio {
    color: #556070;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.doctor-skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.doctor-skill-pill {
    background: #F1F5F9;
    color: #334155;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.doctor-action-row {
    margin-top: 2px;
}

.doctor-book-btn {
    font-size: 13px;
    padding: 8px 20px;
    font-weight: 600;

    transition: all 0.3s ease;
}



@media (max-width: 767.98px) {
    .doctor-profile-card {
        height: auto !important;
    }

    .doctor-card-row {
        height: auto !important;
    }

    .doctor-img-col {
        height: auto !important;
    }

    .doctor-img-box {
        position: relative !important;
        width: 100% !important;
        height: 480px !important;
        min-height: 480px !important;
        max-height: 480px !important;
        overflow: hidden !important;
        background-color: #091E3E !important;
    }

    .doctor-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 10% !important;
    }

    .doctor-info-box {
        padding: 18px 16px !important;
        height: auto !important;
    }

    .doctor-role-tag {
        font-size: 11px !important;
        padding: 3px 10px !important;
        margin-bottom: 6px !important;
    }

    .doctor-name {
        font-size: 19px !important;
        margin-bottom: 3px !important;
    }

    .doctor-qualification {
        font-size: 12.5px !important;
        margin-bottom: 8px !important;
    }

    .doctor-bio {
        font-size: 13px !important;
        line-height: 1.55 !important;
        margin-bottom: 14px !important;
    }

    .doctor-skills-wrap {
        gap: 5px !important;
        margin-bottom: 16px !important;
    }

    .doctor-skill-pill {
        font-size: 11px !important;
        padding: 4px 9px !important;
    }

    .doctor-book-btn {
        width: 100% !important;
        font-size: 13px !important;
    }
}

/* Standardized Consistent Section Spacing Across Website */
.section-padding {
    padding-top: 4.5rem !important;
    /* 72px equal top padding */
    padding-bottom: 4.5rem !important;
    /* 72px equal bottom padding */
}

@media (max-width: 767.98px) {
    .section-padding {
        padding-top: 2.75rem !important;
        /* 44px equal top padding on mobile */
        padding-bottom: 2.75rem !important;
        /* 44px equal bottom padding on mobile */
    }
}

/* ----------------------------------------------------
   4-Step Patient Care Journey Styles
---------------------------------------------------- */
.patient-journey-section {
    position: relative;
}

.journey-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}



.journey-number-badge {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: 'Jost', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: rgba(177, 148, 88, 0.25);
    line-height: 1;
}

.journey-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(177, 148, 88, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px auto;
    transition: all 0.35s ease;
}

.journey-card:hover .journey-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.journey-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.journey-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ----------------------------------------------------
   Hygiene, Sterilization & Safety Standards Styles
---------------------------------------------------- */
.hygiene-safety-section {
    position: relative;
}

.hygiene-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hygiene-feature-item:hover {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.hygiene-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hygiene-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.hygiene-feature-desc {
    font-size: 12.5px;
    color: #64748B;
    line-height: 1.4;
    display: block;
}

.hygiene-banner-card {
    background: linear-gradient(135deg, #111827 0%, #1E293B 100%);
    border-radius: 20px;
    padding: 44px 36px;
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.hygiene-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(177, 148, 88, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hygiene-card-heading {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.35;
}

.hygiene-card-subtext {
    color: #9CA3AF;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

@media (max-width: 767.98px) {
    .hygiene-banner-card {
        padding: 26px 20px;
        border-radius: 16px;
        text-align: center;
    }

    .hygiene-badge-pill {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 14px;
    }

    .hygiene-card-heading {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .hygiene-card-subtext {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .hygiene-banner-card .btn {
        width: 100%;
        font-size: 14px;
    }

    .journey-card {
        padding: 16px 10px;
        border-radius: 12px;
    }

    .journey-number-badge {
        font-size: 16px;
        top: 10px;
        right: 10px;
    }

    .journey-icon-box {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .journey-title {
        font-size: 14.5px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .journey-desc {
        font-size: 11.5px;
        line-height: 1.4;
    }

    .hygiene-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 10px;
        gap: 8px;
        border-radius: 12px;
        height: 100%;
    }

    .hygiene-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 17px;
        border-radius: 10px;
        margin-bottom: 2px;
    }

    .hygiene-feature-title {
        font-size: 13.5px;
        font-weight: 700;
        margin-bottom: 3px;
        line-height: 1.25;
    }

    .hygiene-feature-desc {
        font-size: 11px;
        line-height: 1.35;
    }
}

/* Header Desktop Phone Call Pill Button Styles */
.header-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 3px 18px 3px 5px;
    border-radius: 50rem;
    border: 1.5px solid rgba(177, 148, 88, 0.4);
    background: #ffffff;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone-icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(177, 148, 88, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.header-phone-number {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .header-book-btn {
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.header-phone-pill:hover {
    border-color: var(--primary);

}

.header-phone-pill:hover .header-phone-icon-circle {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.header-phone-pill:hover .header-phone-number {
    color: var(--primary);
}

/* Minimalist Modern Treatment Cards Styles (Mockup Matched with Hover Image & Ghost Text) */


.treatment-card-v2 {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(9, 30, 62, 0.06);
    box-shadow: 0 8px 26px rgba(9, 30, 62, 0.04);
    padding: 24px 22px 20px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

.treatment-card-v2:hover,
.treatment-card-v2:focus {
    text-decoration: none !important;
}

.treatment-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1.08);
    z-index: 1;
}

.treatment-hover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-ghost-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.35) 0%, rgba(11, 17, 29, 0.7) 100%);

}

.treatment-card-v2-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.treatment-card-v2:hover .treatment-hover-bg {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.treatment-card-v2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.treatment-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(177, 148, 88, 0.15) 0%, rgba(177, 148, 88, 0.05) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.35s ease;
}

.treatment-card-v2:hover .treatment-icon-box {
    background: var(--primary);
    color: #ffffff;

}

.treatment-top-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #ffffff;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.35s ease;
}

.treatment-card-v2:hover .treatment-top-arrow {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translate(2px, -2px);
}

.treatment-symptom-italic {
    font-family: 'Jost', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 13.5px;
    color: #E26D5C;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.treatment-v2-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 17.5px;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.treatment-card-v2:hover .treatment-v2-title {
    color: #ffffff;
}

.treatment-v2-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: #6B7280;
    margin-bottom: 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.treatment-card-v2:hover .treatment-v2-desc {
    color: #ffffff;
    /* text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9); */
}

.treatment-v2-footer {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.treatment-view-details {
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.35s ease;
}

.treatment-view-details i {
    transition: transform 0.35s ease;
}

.treatment-card-v2:hover .treatment-view-details {
    color: #F3F4F6;
}

.treatment-card-v2:hover .treatment-view-details i {
    transform: translateX(5px);
    color: var(--primary);
}

/* Mobile Responsiveness for Minimalist Treatment Cards (2 Columns Grid on Mobile) */
@media (max-width: 767.98px) {
    .treatment-card-v2 {
        border-radius: 16px;
        padding: 16px 12px 14px 12px;
    }

    .treatment-card-v2-header {
        margin-bottom: 12px;
    }

    .treatment-icon-box {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 16px;
    }

    .treatment-top-arrow {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .treatment-symptom-italic {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .treatment-v2-title {
        font-size: 13.5px;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .treatment-v2-desc {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .treatment-view-details {
        font-size: 11.5px;
    }
}

/* Core Pillars & Feature Cards Styles for About Page */
.feature-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(9, 30, 62, 0.06);
    box-shadow: 0 8px 24px rgba(9, 30, 62, 0.04);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}





.feature-card-v2 .feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(177, 148, 88, 0.15) 0%, rgba(177, 148, 88, 0.05) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.feature-card-v2:hover .feature-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.feature-card-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: #6B7280;
    margin: 0;
}

/* Mobile Responsiveness for Core Pillars Feature Cards */
@media (max-width: 767.98px) {
    .feature-card-v2 {
        border-radius: 16px;
        padding: 20px 14px 18px 14px;
    }

    .feature-card-v2:hover {
        transform: translateY(-4px);
    }

    .feature-card-v2 .feature-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-card-title {
        font-size: 14.5px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .feature-card-desc {
        font-size: 12px;
        line-height: 1.45;
    }
}

@media (max-width: 575.98px) {
    .feature-card-v2 {
        padding: 16px 10px 14px 10px;
        border-radius: 14px;
    }

    .feature-card-v2 .feature-icon-box {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-card-title {
        font-size: 13.5px;
        margin-bottom: 4px;
    }

    .feature-card-desc {
        font-size: 11.5px;
        line-height: 1.4;
    }
}

/* Responsive Call-to-Action Button Styles */
.btn-responsive-cta {
    padding: 0.75rem 2.25rem;
    font-size: 0.975rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(171, 137, 72, 0.2);
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 767.98px) {
    .btn-responsive-cta {
        padding: 0.55rem 1.4rem !important;
        font-size: 0.875rem !important;
        width: auto !important;
        max-width: 270px;
    }
}

@media (max-width: 575.98px) {
    .btn-responsive-cta {
        padding: 0.48rem 1.2rem !important;
        font-size: 0.825rem !important;
        max-width: 240px;
    }
}

/* Desktop Doctor Card Compact Proportions & Layout Tuning */
@media (min-width: 992px) {
    .doctor-profile-card {
        height: 330px !important;
        max-height: 330px !important;
    }

    .doctor-card-row {
        height: 100% !important;
    }

    .doctor-img-col {
        flex: 0 0 45% !important;
        max-width: 45% !important;
        height: 100% !important;
    }

    .doctor-card-row > div:last-child {
        flex: 0 0 55% !important;
        max-width: 55% !important;
        height: 100% !important;
    }

    .doctor-img-box {
        height: 100% !important;
        max-height: 330px !important;
    }

    .doctor-img {
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 15% !important;
    }

    .doctor-info-box {
        padding: 16px 20px !important;
        height: 100% !important;
        justify-content: center !important;
    }

    .doctor-role-tag {
        font-size: 11px !important;
        padding: 3px 10px !important;
        margin-bottom: 6px !important;
    }

    .doctor-name {
        font-size: 19px !important;
        margin-bottom: 2px !important;
    }

    .doctor-qualification {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }

    .doctor-bio {
        font-size: 12.5px !important;
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
    }

    .doctor-skills-wrap {
        margin-bottom: 12px !important;
        gap: 4px !important;
    }

    .doctor-skill-pill {
        font-size: 10.5px !important;
        padding: 2px 8px !important;
    }
}

/* Lenis Momentum Smooth Scroll Engine Styles */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Mobile & iOS Safari Date Input UI & Alignment Fixes */
input[type="date"].appointment-form-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    text-align: left !important;
    display: flex;
    align-items: center;
    background-color: #F9FAFB;
    color: #1F2937;
    min-height: 44px;
    line-height: normal;
    padding-left: 40px !important;
}

/* Target WebKit Inner Date-and-Time Value Container for iOS Safari */
input[type="date"].appointment-form-input::-webkit-date-and-time-value {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    min-height: 100%;
    font-size: inherit;
    color: inherit;
}

/* Custom WebKit Calendar Picker Indicator Styling */
input[type="date"].appointment-form-input::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.5;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

input[type="date"].appointment-form-input::-webkit-calendar-picker-indicator:hover {
    opacity: 0.9;
}

/* Muted Placeholder State for Empty Date Field */
input[type="date"].appointment-form-input:invalid,
input[type="date"].appointment-form-input.is-empty {
    color: #9CA3AF !important;
}

/* Pseudo-Placeholder Text on Empty Date Inputs for iOS Safari */
input[type="date"].appointment-form-input:before {
    content: attr(placeholder);
    color: #9CA3AF;
    display: inline-block;
    width: 100%;
}

input[type="date"].appointment-form-input:focus:before,
input[type="date"].appointment-form-input:valid:before,
input[type="date"].appointment-form-input.has-value:before {
    content: "" !important;
    display: none !important;
}

/* Mobile Responsiveness & iOS Auto-Zoom Prevention */
@media (max-width: 767.98px) {
    .appointment-form-input,
    .appointment-form-select,
    .appointment-form-textarea {
        font-size: 16px !important; /* Prevents iOS Safari viewport zoom on input focus */
    }

    input[type="date"].appointment-form-input {
        height: 44px !important;
        min-height: 44px !important;
        padding-left: 38px !important;
    }

    input[type="date"].appointment-form-input::-webkit-date-and-time-value {
        text-align: left !important;
    }
}

/* Visitor Analytics Dashboard Styles */
.stats-page-body {
    background-color: #F8FAFC;
    color: #1E293B;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
}

.stats-header-banner {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-bottom: 3px solid #B89759;
    padding: 30px 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stats-header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.stats-header-title {
    color: #FFFFFF;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 4px;
}

.stats-header-subtitle {
    color: #94A3B8;
    font-size: 14px;
    margin-bottom: 0;
}

.stats-badge-gold {
    background-color: rgba(184, 151, 89, 0.15);
    color: #B89759;
    border: 1px solid rgba(184, 151, 89, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stats-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.stats-card-icon-gold {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: rgba(184, 151, 89, 0.12);
    color: #B89759;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.stats-card-icon-blue {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: rgba(15, 23, 42, 0.08);
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.stats-card-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stats-card-value {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stats-card-sub {
    font-size: 12px;
    color: #94A3B8;
}

.stats-chart-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.stats-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F1F5F9;
}

.stats-chart-title {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0;
}

.stats-legend-group {
    display: flex;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
}

.stats-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stats-legend-dot-views {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #B89759;
}

.stats-legend-dot-uniques {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0F172A;
}

.stats-chart-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 220px;
    padding-top: 20px;
    overflow-x: auto;
}

.stats-bar-group {
    flex: 1;
    min-width: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.stats-bar-pair {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    width: 100%;
    height: 180px;
    justify-content: center;
}

.stats-bar-views {
    width: 10px;
    background-color: #B89759;
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

.stats-bar-uniques {
    width: 10px;
    background-color: #0F172A;
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

.stats-bar-label {
    font-size: 10px;
    color: #64748B;
    margin-top: 8px;
    text-align: center;
    white-space: nowrap;
}

.stats-table-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.stats-table th {
    background-color: #F8FAFC;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 2px solid #E2E8F0;
}

.stats-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 14px;
    color: #334155;
}

.stats-table tr:last-child td {
    border-bottom: none;
}

.stats-pass-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.stats-pass-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stats-pass-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #0F172A;
    margin-bottom: 8px;
}

.stats-pass-desc {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 24px;
}

.stats-pass-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.stats-pass-input:focus {
    border-color: #B89759;
}

.stats-pass-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #B89759;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.stats-pass-btn:hover {
    background-color: #9C7D43;
}

/* Advanced Analytics Widget Styles */
.stats-widget-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.stats-progress-track {
    height: 8px;
    background-color: #F1F5F9;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 6px;
    margin-bottom: 14px;
}

.stats-progress-fill-gold {
    height: 100%;
    background-color: #B89759;
    border-radius: 4px;
}

.stats-progress-fill-blue {
    height: 100%;
    background-color: #0F172A;
    border-radius: 4px;
}

.stats-progress-fill-green {
    height: 100%;
    background-color: #10B981;
    border-radius: 4px;
}

.stats-progress-fill-purple {
    height: 100%;
    background-color: #8B5CF6;
    border-radius: 4px;
}

.stats-device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.stats-device-box {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
}

.stats-device-icon {
    font-size: 22px;
    color: #B89759;
    margin-bottom: 8px;
}

.stats-device-name {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 4px;
}

.stats-device-count {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
}

.stats-rank-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(184, 151, 89, 0.15);
    color: #B89759;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Google Reviews Branding & Button Styles */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 3px 18px 3px 5px;
    border-radius: 50rem;
    border: 1.5px solid rgba(177, 148, 88, 0.4);
    background: #ffffff;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    cursor: pointer;
}

.google-icon-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(177, 148, 88, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.google-reviews-btn-text {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.google-reviews-arrow {
    font-size: 12px;
    color: #6B7280;
    margin-left: 2px;
    transition: all 0.3s ease;
}

.write-review-star-icon {
    font-size: 13px;
    color: var(--primary);
}

.google-reviews-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(177, 148, 88, 0.15);
}

.google-reviews-btn:hover .google-icon-wrapper {
    background: rgba(177, 148, 88, 0.25);
    transform: scale(1.05);
}

.google-reviews-btn:hover .google-reviews-btn-text,
.google-reviews-btn:hover .google-reviews-arrow {
    color: var(--primary);
}