/*
Theme Name: Dr. Meghanad Meher
Theme URI: https://drmeghanadmeher.in/
Author: RaiseQue
Author URI: https://www.raiseque.com
Description: A premium custom WordPress theme for Dr. Meghanad Meher - Physician, Diabetologist & Researcher. Dedicated to Excellence in Patient Care, Research, and Teaching.
Version: 9.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dr-meghanad-meher
Tags: medical, doctor, health, professional, custom-colors, custom-logo, full-width-template, blog
*/

/* =========================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================= */
:root {
    --primary:       #0A3D6B;       /* Deep Navy Blue */
    --primary-light: #1565C0;       /* Medium Blue */
    --primary-dark:  #062a4d;       /* Darker Navy */
    --accent:        #00ACC1;       /* Teal Accent */
    --accent-hover:  #00838f;       /* Darker Teal */
    --gold:          #FFB300;       /* Gold/Amber for awards */
    --success:       #2E7D32;       /* Green */
    --white:         #FFFFFF;
    --light-bg:      #F4F7FB;       /* Light Gray-Blue */
    --card-bg:       #FFFFFF;
    --text-primary:  #1A1A2E;       /* Dark text */
    --text-secondary:#4A5568;       /* Muted text */
    --text-muted:    #718096;
    --border-color:  #E2E8F0;
    --shadow-sm:     0 2px 10px rgba(10, 61, 107, 0.08);
    --shadow-md:     0 8px 30px rgba(10, 61, 107, 0.12);
    --shadow-lg:     0 20px 60px rgba(10, 61, 107, 0.18);
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-full:   9999px;
    --font-primary:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading:  'Poppins', 'Inter', sans-serif;
    --transition:    all 0.3s ease;
    --container:     1200px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

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

ul, ol { list-style: none; }

/* =========================================
   UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.text-center { text-align: center; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #007c91);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 172, 193, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 172, 193, 0.45);
    color: white;
}

/* =========================================
   HEADER & NAVIGATION WRAPPER
   ========================================= */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: var(--transition);
}

body.admin-bar .header-wrapper {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header-wrapper {
        top: 46px;
    }
}

.top-contact-bar {
    background: #062a4d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10001;
}

.main-header {
    background: rgba(10, 61, 107, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.header-wrapper.scrolled .main-header {
    background: rgba(6, 42, 77, 0.98);
    box-shadow: 0 4px 25px rgba(0,0,0,0.25);
}

.custom-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #007c91);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.logo-text .doctor-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.logo-text .doctor-title {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav ul li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--accent);
    background: rgba(0, 172, 193, 0.12);
}

/* Dropdown Submenu Styling */
.main-nav ul li {
    position: relative;
}

.main-nav ul li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #062a4d;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    list-style: none;
}

.main-nav ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul li .sub-menu li a {
    padding: 10px 20px;
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 0;
}

.main-nav ul li .sub-menu li a:hover {
    background: rgba(0,172,193,0.15);
    color: #00ACC1;
}

.dropdown-arrow {
    font-size: 0.75rem;
    margin-left: 4px;
    color: var(--accent);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), #007c91) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-full) !important;
    box-shadow: 0 4px 15px rgba(0,172,193,0.4);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,172,193,0.5) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   TOP CONTACT BAR
   ========================================= */
.top-contact-bar {
    background: #062a4d;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 10000;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #062a4d 0%, #0A3D6B 65%, #07477a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-teal-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 172, 193, 0.2) 35%, rgba(0, 172, 193, 0.55) 75%, rgba(0, 172, 193, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero-teal-accent { display: none; }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,172,193,0.15) 0%, transparent 70%);
    animation: pulse-bg 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21,101,192,0.2) 0%, transparent 70%);
    animation: pulse-bg 8s ease-in-out infinite reverse;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0,172,193,0.4);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 150px 24px 80px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

.hero-section .fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: heroFadeIn 0.8s ease-out forwards;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,172,193,0.15);
    border: 1px solid rgba(0,172,193,0.3);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), #80deea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #00ACC1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
}

.hero-stat {
    text-align: left;
    padding: 0 28px;
    border-right: 1px solid rgba(255,255,255,0.25);
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-family: var(--font-heading);
}

.hero-stat .label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 6px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #00ACC1;
    color: white !important;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-hero-primary:hover {
    background: #00838f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 172, 193, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white !important;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.hero-image-bg {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(0,172,193,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    object-position: top center;
}

.hero-float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-card 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-float-card.card-1 {
    bottom: 30px;
    left: 10px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    top: 40px;
    right: 10px;
    animation-delay: 2s;
}

.float-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.float-card-icon.teal { background: linear-gradient(135deg, var(--accent), #007c91); }
.float-card-icon.gold { background: linear-gradient(135deg, var(--gold), #e65100); }

.float-card-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
}

.float-card-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.scroll-dot {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot::after {
    content: '';
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scroll-inner 2s ease-in-out infinite;
}

@keyframes scroll-inner {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: var(--radius-md);
    padding: 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.about-experience-badge .exp-label {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-accent-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(0,172,193,0.2);
    border-radius: 30px;
    transform: rotate(12deg);
}

.about-content-side {
    padding: 20px 0;
}

.about-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    font-style: italic;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.spec-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.spec-tag span { font-size: 1rem; }

/* =========================================
   NEW DEDICATED HIGHLIGHTS & CREDENTIALS SECTION
   ========================================= */
.highlights-section {
    padding: 85px 0;
    background: #F4F7FB;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.specialization-pills-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 44px;
}

.spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0A3D6B;
    padding: 10px 22px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.spec-pill:hover {
    background: #00ACC1;
    color: #ffffff;
    border-color: #00ACC1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 172, 193, 0.25);
}

.highlights-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.highlight-card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(10, 61, 107, 0.1);
    border-color: rgba(0, 172, 193, 0.3);
}

.highlight-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.highlight-card-icon.gold { background: rgba(255, 179, 0, 0.15); border: 1px solid rgba(255, 179, 0, 0.3); }
.highlight-card-icon.teal { background: rgba(0, 172, 193, 0.15); border: 1px solid rgba(0, 172, 193, 0.3); }
.highlight-card-icon.blue { background: rgba(21, 101, 192, 0.15); border: 1px solid rgba(21, 101, 192, 0.3); }
.highlight-card-icon.purple { background: rgba(124, 77, 255, 0.15); border: 1px solid rgba(124, 77, 255, 0.3); }

.highlight-card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00ACC1;
    display: block;
    margin-bottom: 6px;
}

.highlight-card-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0A3D6B;
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-card-box .institution {
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    display: block;
    margin-bottom: 4px;
}

.highlight-card-box .year {
    font-size: 0.82rem;
    color: #64748B;
}

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

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

/* =========================================
   EXPERTISE / SERVICES SECTION
   ========================================= */
.expertise-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.expertise-header {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.expertise-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,61,107,0.1);
    border-color: rgba(0,172,193,0.3);
}

.expertise-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 18px 0;
    background: #00ACC1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 6px 16px rgba(0,172,193,0.3);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: #00838f;
    transform: scale(1.05);
}

.expertise-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0A3D6B;
    margin-bottom: 10px;
}

.expertise-desc {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.65;
}

.expertise-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =========================================
   PUBLICATIONS SECTION
   ========================================= */
.publications-section {
    padding: 100px 0;
    background: var(--white);
}

.publications-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pub-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.pub-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,61,107,0.02), rgba(0,172,193,0.03));
    opacity: 0;
    transition: var(--transition);
}

.pub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,172,193,0.3);
}

.pub-card:hover::before {
    opacity: 1;
}

.pub-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--border-color);
    font-family: var(--font-heading);
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
    transition: var(--transition);
}

.pub-card:hover .pub-number {
    color: var(--accent);
}

.pub-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pub-journal {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(21,101,192,0.08);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* =========================================
   AWARDS / GALLERY SECTION
   ========================================= */
.awards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,172,193,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.awards-header {
    text-align: center;
    margin-bottom: 60px;
}

.awards-header .section-title {
    color: white;
}

.awards-header .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.award-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.award-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-6px);
    border-color: rgba(255,213,0,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    animation: trophy-bounce 3s ease-in-out infinite;
}

@keyframes trophy-bounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.award-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.award-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

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

.blog-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-img-wrapper {
    overflow: hidden;
    position: relative;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-light);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: var(--transition);
}

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

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    margin-top: auto;
}

.read-more:hover {
    gap: 10px;
    color: var(--accent);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.contact-info-side {
    padding-top: 10px;
}

.contact-info-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white;
}

.contact-detail strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    color: var(--text-primary);
    background: white;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(21,101,192,0.1);
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.form-submit {
    margin-top: 8px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: linear-gradient(160deg, var(--primary-dark), #0d1b2a);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
    gap: 36px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo .doctor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.footer-logo .doctor-title {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-links a::before {
    content: '→';
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.footer-contact-item .fi {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
}

.footer-copyright {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    text-align: left;
    margin: 0;
}

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

.footer-legal {
    display: flex;
    align-items: center;
}

.footer-legal-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-legal-menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.footer-legal-menu li a,
.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.footer-legal-menu li a:hover,
.footer-legal a:hover {
    color: var(--accent);
}

/* =========================================
   SINGLE POST / PAGE
   ========================================= */
.content-wrapper {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 130px 0 80px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: white;
    margin-bottom: 16px;
}

.page-hero .page-meta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Breadcrumbs Styling */
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 99px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 24px;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.breadcrumbs a:hover {
    color: #00ACC1;
}

.breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-sep {
    color: #00ACC1;
    font-weight: 700;
}

.breadcrumb-current {
    color: #00ACC1;
    font-weight: 600;
}

.page-hero .page-meta span::before {
    content: '•';
    margin-right: 16px;
}

.page-hero .page-meta span:first-child::before {
    display: none;
}

.content-area {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px;
}

.entry-content {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.entry-content h2 {
    font-size: 1.7rem;
    color: var(--primary);
    margin: 40px 0 16px;
}

.entry-content h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 30px 0 12px;
}

.entry-content p { margin-bottom: 18px; }

.entry-content ul, .entry-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
    list-style: disc;
}

.entry-content ol { list-style: decimal; }

.entry-content li { margin-bottom: 8px; }

.entry-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 28px 0;
    background: var(--light-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-primary);
}

.entry-content img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin: 24px auto;
    max-width: 100%;
    height: auto;
}

.entry-content iframe,
.entry-content video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    margin: 24px 0;
    border: none;
    box-shadow: var(--shadow-sm);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.92rem;
}

.entry-content th,
.entry-content td {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.entry-content th {
    background: var(--light-bg);
    color: var(--primary);
    font-weight: 700;
}

.entry-content figure {
    margin: 24px 0;
}

.entry-content figure figcaption {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

/* Blog Archive */
.blog-archive-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-primary);
    background: white;
    border: 1px solid var(--border-color);
}

.pagination a:hover,
.pagination .current {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

/* Sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 28px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child { border-bottom: none; }

.recent-post-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-text a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
    transition: var(--transition);
}

.recent-post-text a:hover { color: var(--primary-light); }

.recent-post-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 404 & No Results */
.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.error-icon { font-size: 5rem; margin-bottom: 24px; }

.error-section h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

/* =========================================
   GOOGLE BUSINESS REVIEWS WIDGET (Exact Mockup Match)
   ========================================= */
.gmb-reviews-section {
    padding: 70px 0;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.gmb-widget-wrapper {
    display: flex;
    align-items: center;
    gap: 36px;
    position: relative;
}

.gmb-summary-card {
    width: 240px;
    flex-shrink: 0;
    text-align: center;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.gmb-rating-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0F172A;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gmb-stars-large {
    font-size: 1.4rem;
    color: #FFC107;
    margin-bottom: 8px;
}

.gmb-review-count {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 12px;
}

.gmb-google-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.btn-gmb-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #4285F4;
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-gmb-review:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.35);
}

.gmb-cards-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.gmb-cards-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 4px 20px;
    scrollbar-width: none;
}

.gmb-cards-scroll::-webkit-scrollbar {
    display: none;
}

.gmb-review-card {
    min-width: 310px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.gmb-review-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.gmb-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.gmb-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gmb-author-info {
    flex: 1;
}

.gmb-author-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}

.gmb-time {
    font-size: 0.78rem;
    color: #64748B;
}

.gmb-g-badge {
    position: absolute;
    top: 0;
    right: 0;
}

.gmb-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.gmb-stars {
    font-size: 0.95rem;
    color: #FFC107;
}

.gmb-verified-check {
    display: inline-flex;
    align-items: center;
}

.gmb-review-text {
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gmb-read-more {
    font-size: 0.82rem;
    color: #64748B;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gmb-read-more:hover {
    color: #4285F4;
    text-decoration: underline;
}

.gmb-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #CBD5E1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #334155;
    transition: all 0.2s ease;
}

.gmb-scroll-btn:hover {
    background: #4285F4;
    color: #ffffff;
    border-color: #4285F4;
}

.gmb-scroll-btn.btn-prev { left: -10px; }
.gmb-scroll-btn.btn-next { right: -10px; }

@media (max-width: 992px) {
    .gmb-widget-wrapper {
        flex-direction: column;
    }
    .gmb-summary-card {
        width: 100%;
        max-width: 360px;
    }
}

/* =========================================
   BACK TO TOP
   ========================================= */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9998;
    box-shadow: var(--shadow-md);
    border: none;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }
.fade-in-up.delay-5 { transition-delay: 0.5s; }

/* =========================================
   RESPONSIVE
   ========================================= */
/* =========================================
   RESPONSIVE MOBILE STYLES & NAV DRAWER
   ========================================= */
.mobile-nav-header {
    display: none;
}

@media (max-width: 1024px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 991px) {
    .nav-toggle { display: flex; }
    .top-contact-bar .desktop-only { display: none; }
    .gmb-widget-wrapper { flex-direction: column; }
    .gmb-summary-card { width: 100%; max-width: 100%; }
}

@media (max-width: 768px) {
    .header-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }

    .top-contact-bar {
        padding: 5px 0;
        font-size: 0.75rem;
    }

    .top-contact-bar .header-inner {
        flex-direction: column;
        gap: 2px;
        align-items: center;
        text-align: center;
    }

    .main-header {
        padding: 10px 0;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 88%;
        max-width: 340px;
        height: 100vh;
        background: #0A3D6B;
        padding: 24px 24px 40px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    }

    .main-nav.open { right: 0; }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .mobile-nav-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #ffffff;
    }

    .mobile-nav-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        color: #ffffff;
        border: none;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }

    .main-nav ul li a {
        padding: 12px 18px;
        font-size: 0.98rem;
        border-radius: 8px;
        color: rgba(255,255,255,0.9);
        display: block;
    }

    .main-nav ul li a.nav-cta {
        margin-top: 16px;
        text-align: center;
        background: #00ACC1;
        color: #ffffff !important;
        font-weight: 700;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.65);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        backdrop-filter: blur(4px);
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* Page Hero Padding on Mobile */
    .page-hero {
        padding: 110px 20px 50px;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 120px 0 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        text-align: center;
        gap: 32px;
    }

    .hero-image-wrapper { order: -1; }
    .hero-image-frame { max-width: 260px; margin: 0 auto; }
    .hero-stats { justify-content: center; gap: 16px; flex-wrap: wrap; }
    .hero-buttons { justify-content: center; flex-direction: column; gap: 12px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-desc { margin: 0 auto 28px; }
    .hero-float-card { display: none; }

    /* Highlights Section Mobile */
    .specialization-pills-bar {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start !important;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* GMB Reviews Mobile */
    .gmb-reviews-section {
        padding: 45px 0;
    }

    .gmb-widget-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .gmb-summary-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 16px;
    }

    .gmb-cards-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 8px 4px 16px;
        width: 100%;
    }

    .gmb-review-card {
        min-width: 84vw;
        max-width: 86vw;
        scroll-snap-align: center;
        padding: 20px;
    }

    .gmb-scroll-btn {
        display: none !important;
    }

    /* Google Map Compact Mobile */
    .google-map-compact-section {
        padding: 45px 0 50px !important;
    }

    .google-map-compact-section iframe {
        height: 300px !important;
    }

    .google-map-compact-section .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Grids Mobile */
    .about-grid, .expertise-grid, .awards-grid, .pub-grid,
    .blog-grid, .blog-archive-grid, .blog-layout, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row { grid-template-columns: 1fr; }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-copyright {
        text-align: center !important;
        width: 100%;
    }

    .footer-legal {
        justify-content: center;
        width: 100%;
    }

    .footer-legal-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .section-padding { padding: 50px 0; }
    .about-section, .expertise-section, .publications-section,
    .awards-section, .blog-section, .contact-section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 14px; }
    .contact-form-wrapper { padding: 20px; }
}

/* =========================================
   WORDPRESS SPECIFIC
   ========================================= */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.alignwide { max-width: 100%; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.wp-caption { max-width: 100%; margin-bottom: 1em; }
.wp-caption-text { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
