@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #1b3f75;       /* Hospital rich royal blue */
    --color-primary-rgb: 27, 63, 117;
    --color-secondary: #15224D;     /* Rich dark navy */
    --color-secondary-rgb: 21, 34, 77;
    --color-accent: #E1F5FE;        /* Light blue soft background */
    --color-dark: #1F1F2E;          /* Near black text/headers */
    --color-text: #596579;          /* Medium slate grey for readable copy */
    --color-bg-light: #F7F9FC;      /* Clean soft background grey */
    --color-white: #FFFFFF;
    --color-border: rgba(27, 63, 117, 0.12);
    
    /* Premium Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(21, 34, 77, 0.05), 0 2px 4px -1px rgba(21, 34, 77, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(21, 34, 77, 0.08), 0 8px 10px -6px rgba(21, 34, 77, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(21, 34, 77, 0.12), 0 10px 15px -8px rgba(21, 34, 77, 0.06);
    --shadow-glass: 0 8px 32px 0 rgba(21, 34, 77, 0.06);
    
    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions (matching high-end WordPress behaviors) */
    --transition-fast: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-normal: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 1.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-cursor: transform 0.08s ease-out, opacity 0.2s ease;
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-light);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Common Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
}

/* Section Titles (same as WP design) */
.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-primary) !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background-color: rgba(27, 63, 117, 0.08) !important;
    border-radius: 50px;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    color: var(--color-secondary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

/* ==========================================================================
   PRELOADER & MAGIC CURSOR
   ========================================================================== */
/* Custom Preloader styling */
.theme-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.theme-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    position: relative;
    width: 90px;
    height: 90px;
}

.loading-spinner {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Magic Cursor */
#magic-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
    display: block;
}

#ball {
    position: fixed;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: var(--transition-cursor);
    z-index: 999999;
}

#ball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

/* Magic Cursor Active Hover states */
body.cursor-hover #ball {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 173, 238, 0.08);
    border-color: var(--color-primary);
}

body.cursor-hover #ball::after {
    transform: translate(-50%, -50%) scale(0);
}

@media (max-width: 1024px) {
    #magic-cursor {
        display: none;
    }
}

/* ==========================================================================
   STICKY HEADER & NAV MENU (FLOATING CAPSULE DESIGN)
   ========================================================================== */
.site-header {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1240px;
    z-index: 1000;
    padding: 14px 18px;
    background-color: var(--color-white);
    border-radius: 100px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 173, 238, 0.06);
}

.site-header.sticky {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(0, 173, 238, 0.08);
    animation: headerSlideDown 0.4s ease-out;
}

@keyframes headerSlideDown {
    from { transform: translate(-50%, -100%); }
    to { transform: translate(-50%, 0); }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 28px;
}

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

/* Main Navigation Menu styles */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item,
.nav-menu .menu-item {
    position: relative;
}

.nav-link,
.nav-menu .menu-item > a {
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i,
.nav-menu .menu-item > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-menu .menu-item > a:hover,
.nav-menu .menu-item.current-menu-item > a {
    color: var(--color-primary);
}

/* Dropdown Menu layouts */
.dropdown-menu,
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 15px);
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 100;
    border: 1px solid rgba(21, 34, 77, 0.05);
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-item.has-dropdown:hover .nav-link i,
.nav-menu .menu-item-has-children:hover > a i {
    transform: rotate(180deg);
}

.dropdown-item a,
.nav-menu .sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary);
}

.dropdown-item a:hover,
.dropdown-item a.active,
.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu .current-menu-item > a {
    background-color: rgba(0, 173, 238, 0.05);
    color: var(--color-primary);
    padding-left: 24px;
}

/* Creative Capsule Pill Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6px 6px 6px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(0, 173, 238, 0.22);
    transition: var(--transition-normal);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-secondary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 173, 238, 0.35);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary .btn-circle-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    transition: var(--transition-normal);
}

.btn-primary:hover .btn-circle-arrow {
    background-color: var(--color-white);
    color: var(--color-primary);
}


/* Mobile Toggler */
.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--color-secondary);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .nav-menu, .header-cta {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-close {
    font-size: 24px;
    color: var(--color-secondary);
    cursor: pointer;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link,
.mobile-nav-menu .menu-item > a {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.mobile-nav-submenu,
.mobile-nav-menu .sub-menu {
    padding-left: 15px;
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.mobile-nav-submenu.open,
.mobile-nav-menu .sub-menu.open {
    display: flex;
}

.mobile-nav-menu .sub-menu a {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 34, 77, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HERO SECTION (VIDEO BACKED & GLASS CARDS)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-secondary);
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 34, 77, 0.55) 0%, rgba(21, 34, 77, 0.25) 100%);
}

.hero-content {
    max-width: 650px;
    color: var(--color-white);
    margin-top: 80px;
}

.hero-authors {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-author-avatars {
    display: flex;
    align-items: center;
}

.hero-author-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--color-secondary);
    margin-left: -12px;
    transition: var(--transition-fast);
}

.hero-author-avatars img:first-child {
    margin-left: 0;
}

.hero-author-avatars img:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.hero-authors p {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-btns {
    animation: fadeInUp 1s ease-out;
}

/* Floating Glassmorphic dual boxed cards in Hero */
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    margin-top: 100px;
}

.hero-right-cards {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: flex-end;
    animation: fadeInUp 1.2s ease-out;
}

.hero-glass-stats-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 24px;
    width: 240px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: floatAnim 6s ease-in-out infinite;
}

.hero-glass-stats-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #1c2e4a;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-plus-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #00ADEE;
    color: var(--color-white);
    border: 2px solid #1c2e4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    margin-left: -10px;
}

.card-subtitle-row p {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.card-progress-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.circular-progress-wrap {
    position: relative;
    width: 80px;
    height: 80px;
}

.circular-progress-wrap svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 800;
    color: var(--color-white);
}

.progress-stats-pills {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    min-width: 48px;
}

.hero-image-box-card {
    width: 220px;
    height: 270px;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    animation: floatAnim 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-image-box-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-image-box-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 140px;
    }
    .hero-right-cards {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 550px) {
    .hero-right-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero-glass-stats-card, .hero-image-box-card {
        width: 280px;
        max-width: 100%;
    }
    .hero-image-box-card {
        height: 250px;
    }
}

/* ==========================================================================
   FEATURES / SERVICES GRID (HOVER IMAGE ZOOM)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(21, 34, 77, 0.05);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-normal);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(21, 34, 77, 0.3) 0%, rgba(21, 34, 77, 0.9) 100%);
    opacity: 0;
    z-index: 1;
    transition: var(--transition-normal);
}

.feature-icon,
.feature-title,
.feature-desc {
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: rgba(0, 173, 238, 0.08);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    margin-bottom: 24px;
}

.feature-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: var(--transition-slow);
    border-radius: 16px;
    transform: scale(1.0);
}

/* Premium Card hover states */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover .feature-title {
    color: var(--color-white);
    transform: translateY(-5px);
}

.feature-card:hover .feature-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-5px);
}

.feature-card:hover .feature-desc {
    color: rgba(255, 255, 255, 0.88);
    transform: translateY(-5px);
}

.feature-card:hover .feature-hover-img {
    opacity: 1;
    transform: scale(1.07);
}

/* ==========================================================================
   ABOUT / "WHAT WE DO" (PIE CHART & INTERACTIVE BARS)
   ========================================================================== */
.about-section {
    position: relative;
    background-color: var(--color-white);
}

.about-row {
    display: flex;
    gap: 70px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-row {
        flex-direction: column-reverse;
        gap: 50px;
    }
}

.about-col-left {
    flex: 1;
}

.about-col-right {
    flex: 1;
}

/* Image stacking boxes style */
.about-images-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.about-img-main {
    width: 75%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.about-img-secondary {
    position: absolute;
    right: 0;
    top: 15%;
    width: 50%;
    border-radius: 20px;
    border: 8px solid var(--color-white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-experience-badge {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 170px;
    text-align: center;
}

.about-experience-badge h3 {
    font-size: 32px;
    font-weight: 800;
}

.about-experience-badge p {
    font-size: 13px;
    font-weight: 700;
}

/* Interactive SVG Pie Chart component */
.success-chart-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 24px;
    background-color: var(--color-bg-light);
    border-radius: 16px;
    border: 1px solid rgba(21, 34, 77, 0.04);
}

.pie-svg-container {
    position: relative;
    width: 90px;
    height: 90px;
}

.pie-svg-container svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(0, 173, 238, 0.1);
    stroke-width: 6;
}

.circle-progress {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 220; /* Controlled dynamically by script */
    transition: stroke-dashoffset 2s ease-out;
}

.chart-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 800;
    color: var(--color-secondary);
}

.chart-info h4 {
    font-size: 17px;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.chart-info p {
    font-size: 14px;
}

/* ==========================================================================
   STATS COUNTER ROW
   ========================================================================== */
.stats-section {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -15px;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 991px) {
    .stat-item:nth-child(2n)::after {
        display: none;
    }
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #00ADEE; /* Vibrant clinical cyan-blue for superb dark mode contrast */
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    font-weight: 700;
    opacity: 0.85;
}

/* ==========================================================================
   OUR EXPERTISE & INTERACTIVE SKILL BARS
   ========================================================================== */
.expertise-section {
    background-color: var(--color-bg-light);
}

.expertise-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .expertise-row {
        flex-direction: column;
        gap: 50px;
    }
}

.expertise-left {
    flex: 1.1;
}

.expertise-right {
    flex: 0.9;
}

/* Dynamic Interactive Progress Bar */
.skill-bar-wrap {
    margin-bottom: 24px;
}

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--color-secondary);
}

.skill-bar-track {
    height: 8px;
    background-color: rgba(21, 34, 77, 0.06);
    border-radius: 50px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    width: 0; /* Dynamic loading */
    background-color: var(--color-primary);
    border-radius: 50px;
    transition: width 2s cubic-bezier(0.1, 1, 0.1, 1);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION TOGGLES)
   ========================================================================== */
.faq-section {
    background-color: var(--color-white);
}

.faq-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .faq-row {
        flex-direction: column-reverse;
        gap: 50px;
    }
}

.faq-left {
    flex: 1;
}

.faq-right {
    flex: 1;
}

/* FAQ Accordion Item stylings */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid rgba(21, 34, 77, 0.06);
    border-radius: 12px;
    background-color: var(--color-bg-light);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-item.active {
    border-color: rgba(0, 173, 238, 0.3);
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-title {
    color: var(--color-primary);
}

.accordion-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    transition: var(--transition-normal);
}

.accordion-item.active .accordion-indicator {
    background-color: var(--color-secondary);
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 24px;
}

/* FAQ floating glass details badge */
.faq-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-float-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-glass);
}

.faq-float-badge .badge-icon {
    font-size: 24px;
    color: var(--color-primary);
}

.faq-float-badge h4 {
    font-size: 14px;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS SLIDER (SWIPER INTEGRATION)
   ========================================================================== */
.testimonials-section {
    background-color: var(--color-bg-light);
}

.swiper-container {
    width: 100%;
    padding: 20px 0 60px;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 34, 77, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    transition: var(--transition-normal);
}

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

.testimonial-stars {
    color: #FFC107;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--color-secondary);
    line-height: 1.6;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-meta h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-secondary);
}

.testimonial-meta span {
    font-size: 13px;
    opacity: 0.8;
}

/* Custom Swiper Pagination style */
.swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* ==========================================================================
   LATEST BLOG ARTICLES FEED
   ========================================================================== */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(21, 34, 77, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.5;
}

.blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image-wrap img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 30px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.4;
    margin-bottom: 18px;
}

.blog-title:hover {
    color: var(--color-primary);
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
}

.blog-card-btn svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-btn svg {
    transform: translateX(4px);
}

/* ==========================================================================
   BOOK APPOINTMENT MODAL FORM Layout
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 34, 77, 0.6);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.modal-container {
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 92%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal-overlay.open .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    color: var(--color-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 26px;
    color: var(--color-secondary);
    font-weight: 800;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 14px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
}

.form-input {
    width: 100%;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(21, 34, 77, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(0, 173, 238, 0.15);
}

/* Loader spinner in form */
.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Success State Overlay styling */
.form-success-message {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.form-success-message h4 {
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.form-success-message p {
    font-size: 15px;
    color: var(--color-text);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: var(--color-secondary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-widget h4 {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-about-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: 14px;
}

.footer-socials a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 14px;
}

.footer-links-list a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
}

.footer-contact-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* ==========================================================================
   ABOUT & INTERNAL PAGE HEADERS (BREADCRUMBS)
   ========================================================================== */
.page-header {
    position: relative;
    background-color: var(--color-secondary);
    padding: 180px 0 100px;
    text-align: center;
    color: var(--color-white);
    z-index: 1;
    background-image: linear-gradient(135deg, rgba(21, 34, 77, 0.96) 0%, rgba(21, 34, 77, 0.8) 100%);
    border-bottom: 1px solid rgba(0, 173, 238, 0.08);
}

.page-header-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.6s ease-out;
}

.breadcrumb-trail {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-trail a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb-separator {
    opacity: 0.5;
    font-size: 10px;
}

/* Overlapping Image CTA box for internal pages */
.about-cta-glass-box {
    position: absolute;
    right: -20px;
    top: 30%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: var(--shadow-glass);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    animation: floatAnim 6s ease-in-out infinite;
}

.about-cta-glass-box .icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.about-cta-glass-box h5 {
    font-size: 12px;
    color: var(--color-text);
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-cta-glass-box p {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-secondary);
}

/* ==========================================================================
   DOCTORS / TEAM SPECIALISTS GRID Layout
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(21, 34, 77, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.85;
    background-color: var(--color-bg-light);
}

.team-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image-wrap img {
    transform: scale(1.06);
}

.team-socials-overlay {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 10;
}

.team-card:hover .team-socials-overlay {
    bottom: 24px;
    opacity: 1;
    visibility: visible;
}

.team-socials-overlay a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-secondary);
    font-size: 13px;
    transition: var(--transition-fast);
}

.team-socials-overlay a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.team-info {
    padding: 26px 20px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 700;
}

/* ==========================================================================
   WHY CHOOSE US / CLINIC VALUES
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background-color: var(--color-white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 34, 77, 0.04);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-normal);
}

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

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(0, 173, 238, 0.08);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.value-card:hover .value-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.value-info h4 {
    font-size: 18px;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.value-info p {
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   SERVICES GRID (PREMIUM CARD OVERLAYS)
   ========================================================================== */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

@media (max-width: 991px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-premium-grid {
        grid-template-columns: 1fr;
    }
}

.service-card-premium {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    aspect-ratio: 1.35;
    z-index: 1;
}

.service-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card-premium:hover img {
    transform: scale(1.08);
}

/* Dynamic shifting background on hover */
.service-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    z-index: 10;
}

.service-card-premium:hover .service-overlay-card {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.service-card-premium .service-title {
    font-size: 20px;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.service-card-premium:hover .service-title {
    color: var(--color-white);
}

.service-card-premium .service-desc {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.service-card-premium:hover .service-desc {
    color: rgba(255, 255, 255, 0.75);
}

.service-card-premium .btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-fast);
}

.service-card-premium:hover .btn-read-more {
    color: var(--color-white);
}

.service-card-premium .btn-read-more svg {
    transition: transform 0.3s ease;
}

.service-card-premium:hover .btn-read-more svg {
    transform: translateX(4px);
}

/* ==========================================================================
   CONTACT US PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 173, 238, 0.06);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 173, 238, 0.2);
}

.contact-info-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: rgba(0, 173, 238, 0.08);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.contact-info-card:hover .contact-info-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: rotate(360deg);
}

.contact-info-title {
    font-size: 20px;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
}

.contact-info-text a {
    color: inherit;
    transition: var(--transition-fast);
}

.contact-info-text a:hover {
    color: var(--color-primary);
}

/* Contact Main Section */
.contact-main-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .contact-main-row {
        grid-template-columns: 1fr;
    }
}

.contact-form-card {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 34, 77, 0.04);
}

@media (max-width: 600px) {
    .contact-form-card {
        padding: 30px 20px;
    }
}

.contact-map-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 34, 77, 0.04);
    min-height: 450px;
    height: 100%;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Textarea specific */
textarea.form-input {
    height: 160px;
    resize: none;
    font-family: inherit;
}

/* ==========================================================================
   PLUGIN-LIKE PORTABLE SHORTCODE BOOKING STYLES
   ========================================================================== */
.booking-shortcode-wrap {
    width: 100%;
    max-width: 720px;
    margin: 40px auto;
    padding: 10px;
}

.booking-shortcode-card {
    background-color: var(--color-white);
    border-radius: 24px;
    border: 1px solid rgba(0, 173, 238, 0.1);
    box-shadow: var(--shadow-lg);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.booking-shortcode-card:hover {
    box-shadow: 0 30px 60px -15px rgba(21, 34, 77, 0.15);
    border-color: rgba(0, 173, 238, 0.22);
}

.booking-shortcode-header {
    text-align: center;
    margin-bottom: 35px;
}

.booking-shortcode-header h3 {
    font-size: 28px;
    color: var(--color-secondary);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.booking-shortcode-header p {
    font-size: 15px;
    color: var(--color-text);
}

@media (max-width: 600px) {
    .booking-shortcode-card {
        padding: 30px 20px;
    }
    .booking-shortcode-header h3 {
        font-size: 22px;
    }
}

/* Hero Swiper Slide Specifics */
.hero-swiper {
    width: 100%;
    height: 100vh;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   13. CUSTOM SINGLE SERVICE PAGE STYLES
   ========================================================================== */
.service-single-layout {
    display: grid;
    grid-template-columns: 1fr 2.1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 991px) {
    .service-single-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-sidebar-widget {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(27, 63, 117, 0.08);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-sidebar-widget:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 63, 117, 0.16);
}

.sidebar-widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

/* Services Navigation Menu */
.service-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white);
    border: 1px solid rgba(27, 63, 117, 0.06);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.service-nav-link:hover {
    background-color: rgba(27, 63, 117, 0.04);
    color: var(--color-primary);
    padding-left: 24px;
}

.service-nav-link.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(27, 63, 117, 0.2);
}

.service-nav-link .font-arrow-nav {
    font-size: 11px;
    transition: var(--transition-fast);
}

.service-nav-link:hover .font-arrow-nav {
    transform: translateX(4px);
}

.service-nav-link.active .font-arrow-nav {
    color: var(--color-white);
}

/* Consulting hours widget */
.consulting-widget-card {
    background-color: var(--color-secondary);
    color: rgba(255, 255, 255, 0.85);
    border-color: var(--color-secondary);
}

.consulting-widget-card:hover {
    border-color: var(--color-secondary);
}

.consulting-hours-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.timeline-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-row span {
    font-weight: 600;
}

.timeline-row strong {
    color: var(--color-primary);
    font-weight: 700;
}

.timeline-row.emergency-row strong {
    color: #FF5252;
}

/* Quick help card */
.quick-help-card {
    background: linear-gradient(135deg, rgba(27, 63, 117, 0.03) 0%, rgba(27, 63, 117, 0.08) 100%);
    text-align: center;
    border-color: rgba(27, 63, 117, 0.12);
}

.help-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 0 auto 20px;
    animation: pulseRing 2s infinite;
}

.quick-help-card h4 {
    font-size: 18px;
    color: var(--color-secondary);
    font-weight: 800;
    margin-bottom: 12px;
}

.quick-help-card p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-text);
}

.help-card-phone {
    margin-bottom: 8px;
}

.help-card-phone a {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.help-card-phone a:hover {
    color: var(--color-secondary);
}

.help-card-email a {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.help-card-email a:hover {
    color: var(--color-primary);
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(27, 63, 117, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(27, 63, 117, 0); }
    100% { box-shadow: 0 0 0 0 rgba(27, 63, 117, 0); }
}

/* Main service content */
.service-single-content {
    display: flex;
    flex-direction: column;
}

.service-single-banner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 35px;
    aspect-ratio: 1.7;
    background-color: var(--color-bg-light);
}

.service-single-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-rich-text {
    color: var(--color-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.service-rich-text p {
    margin-bottom: 20px;
    color: var(--color-text);
}

.service-rich-text h2 {
    color: var(--color-secondary);
}

.service-rich-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-secondary);
    margin: 30px 0 15px;
}

.service-embedded-booking .booking-shortcode-wrap {
    margin: 0;
    max-width: 100%;
    padding: 0;
}

.service-embedded-booking .booking-shortcode-card {
    border-color: rgba(27, 63, 117, 0.1);
    box-shadow: var(--shadow-sm);
}

.service-embedded-booking .booking-shortcode-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 63, 117, 0.2);
}
/* Premium Responsiveness Override for Chairman & Clinic Sections */
@media (max-width: 991px) {
    .chairman-section .chairman-col-right,
    .about-section .clinic-about-col-right {
        padding-left: 0 !important;
        margin-top: 15px;
    }
    .chairman-section .chairman-image-wrap {
        margin-bottom: 25px;
    }
}

/* Premium Fade-in-up animation for Chairman above-the-fold content */
@keyframes chairmanFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chairman-fade-in {
    animation: chairmanFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.chairman-delay-1 { animation-delay: 0.1s; opacity: 0; }
.chairman-delay-2 { animation-delay: 0.25s; opacity: 0; }
.chairman-delay-3 { animation-delay: 0.4s; opacity: 0; }
.chairman-delay-4 { animation-delay: 0.55s; opacity: 0; }
