/* About Page Custom Styles */
:root {
    --primary-navy: #0d2b4e;
    --accent-gold: #c8a84b;
    --text-charcoal: #2c3e50;
    --text-body: #495057;
    --text-grey: #6c757d;
    --bg-offwhite: #f8f9fa;
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(135deg, #0a1628 0%, #132042 35%, #1a2d5a 65%, #162445 100%);
    padding: 32px 0 20px;
    color: #ffffff;
}

.page-title-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.page-title-section .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.page-title-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.page-title-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-title-section .breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.page-title-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.55);
}

.page-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    background: none;
    padding: 0;
    border: none;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 0;
}

.page-title-section .page-badge {
    background: linear-gradient(135deg, #e8d5a3 0%, #d4a843 100%);
    color: #0d2b4e;
    border-color: rgba(212, 168, 67, 0.6);
    box-shadow: 0 4px 18px rgba(212, 168, 67, 0.3);
}

.page-title-section .page-badge i {
    color: #0d2b4e;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(200,168,75,0.22) 100%);
    color: #a08830;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(200, 168, 75, 0.35);
    box-shadow: 0 2px 8px rgba(200, 168, 75, 0.12);
}

/* Profile Hero Section */
.profile-hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.profile-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.profile-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--primary-navy);
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(13, 43, 78, 0.2);
    text-align: center;
}

.profile-badge .badge-years {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.profile-badge .badge-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* Profile Content */
.profile-content {
    padding-top: 0;
}

.profile-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.profile-subrole {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.6;
}

.profile-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

.profile-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.stat-item {
    text-align: center;
    padding: 16px 12px;
    background: rgba(200, 168, 75, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(200, 168, 75, 0.12);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Video Play Button - prominent with gold color */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(200, 168, 75, 0.92);
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 0 0 rgba(200, 168, 75, 0.5), 0 8px 40px rgba(0, 0, 0, 0.25);
}

.video-play-btn:hover {
    background: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 12px rgba(200, 168, 75, 0.2), 0 12px 50px rgba(200, 168, 75, 0.4);
    border-color: #fff;
}

.video-play-btn i {
    font-size: 42px;
    color: #fff;
    margin-left: 6px;
    transition: color 0.3s ease;
}

.video-play-btn:hover i {
    color: #fff;
}

.video-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2.5s infinite;
    z-index: 2;
    pointer-events: none;
}

.video-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    border: 2px solid rgba(200, 168, 75, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2.5s infinite 0.8s;
}

/* Academic Leadership Section */
.academic-leadership-section {
    position: relative;
}

.academic-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.6;
}

.academic-item:last-child {
    margin-bottom: 0;
}

.academic-item i {
    color: var(--accent-gold);
    margin-top: 4px;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 1rem;
}

.academic-item span {
    color: var(--text-body);
}

/* Prostate Expertise Section */
.prostate-expertise-section {
    position: relative;
}

.prostate-expertise-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 24px rgba(13, 43, 78, 0.06);
    border: 1px solid rgba(13, 43, 78, 0.25);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.prostate-expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 43, 78, 0.12);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.92);
}

.prostate-expertise-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 168, 75, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.prostate-expertise-card .card-icon i {
    font-size: 24px;
    color: var(--accent-gold);
}

.prostate-expertise-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.prostate-expertise-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

/* Improved Explore Services Button */
.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--accent-gold);
    color: #a08830;
    background: rgba(200, 168, 75, 0.06);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
}

.btn-gold-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 168, 75, 0.3);
}

.btn-gold.btn-lg {
    padding: 14px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

/* Surgical Expertise Section Improvements */
.surgical-expertise-section {
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto 28px;
}


.philosophy-note {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    font-size: 1.05rem;
    line-height: 1.7;
}

.philosophy-note i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.philosophy-note strong {
    color: #fff;
    font-weight: 700;
}

.philosophy-note p {
    margin-bottom: 0;
}
.mission-section {
    position: relative;
    color: white;
}

.mission-quote {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
}

.mission-quote::before,
.mission-quote::after {
    font-size: 3.5rem;
    opacity: 0.15;
    position: absolute;
    font-family: "Playfair Display", serif;
}

.mission-quote::before {
    content: '"';
    top: -5px;
    left: 0;
}

.mission-quote::after {
    content: '"';
    bottom: -15px;
    right: 0;
}

.blockquote-footer {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    display: block;
}

/* CTA Section */
.cta-section {
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, #b8962e 0%, #d4a843 40%, #c49a35 70%, #a8812a 100%);
}

.cta-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0d2b4e;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-navy:hover {
    background-color: #163d66;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 43, 78, 0.3);
}

/* Custom 9:16 aspect ratio for YouTube Shorts */
.ratio-9x16 {
    --bs-aspect-ratio: 177.777%;
}

/* Animations */
@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
    .profile-hero-section {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .profile-badge {
        bottom: -10px;
        left: -10px;
        padding: 14px 18px;
    }

    .profile-badge .badge-years {
        font-size: 28px;
    }

    .profile-title {
        font-size: 1.8rem;
    }

    .profile-content {
        margin-top: 24px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .video-play-btn {
        width: 90px;
        height: 90px;
    }

    .video-play-btn i {
        font-size: 32px;
    }

    .video-pulse {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 2rem;
    }

    .profile-image-wrap {
        margin-bottom: 20px;
    }

    .profile-badge {
        position: static;
        margin: 0 auto 20px;
        transform: none;
    }

    .video-play-btn {
        width: 80px;
        height: 80px;
    }

    .video-play-btn i {
        font-size: 28px;
    }

    	.video-pulse {
    		width: 110px;
    		height: 110px;
    	}
    }

    /* Barely-visible navy-to-gold diagonal gradient behind the cards so the
       backdrop feel blur. */
    #surgical-expertise {
    	background: linear-gradient(135deg, rgba(13, 43, 78, 0.05) 0%, rgba(200, 168, 75, 0.05) 100%);
    }

    #surgical-expertise .expertise-card-custom {
    	background: linear-gradient(135deg, rgba(232, 213, 163, 0.18) 0%, rgba(212, 168, 67, 0.18) 100%);
    	backdrop-filter: blur(8px);
    	-webkit-backdrop-filter: blur(8px);
    	/* Gold borders in normal mode; thin top + right, thicker left + bottom */
    	border-top: 1px solid rgba(212, 168, 67, 0.55);
    	border-right: 1px solid rgba(212, 168, 67, 0.55);
    	border-left: 3px solid rgba(212, 168, 67, 0.7);
    	border-bottom: 3px solid rgba(212, 168, 67, 0.7);
    	border-radius: 12px !important;
    	padding: 1.5rem 1.25rem !important;
    	box-shadow: 0 4px 24px rgba(13, 43, 78, 0.06);
    	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    /* Hover: lift + deeper but subtle gold borders + gold glow */
    #surgical-expertise .expertise-card-custom:hover {
    	transform: translateY(-6px);
    	border-top-color: rgba(184, 150, 46, 0.75);
    	border-right-color: rgba(184, 150, 46, 0.75);
    	border-left-color: #b8962e;
    	border-bottom-color: #b8962e;
    	box-shadow: 0 16px 48px rgba(200, 168, 75, 0.3), 0 0 26px rgba(200, 168, 75, 0.45);
    }

    /* Suppress the white patch: show a white box behind the
    	icon. Make the wrapper transparent so only the navy
    	disc shows. */
    #surgical-expertise .expertise-card-custom.fbox-bg.fbox-center .fbox-icon,
    #surgical-expertise .expertise-card-custom .fbox-icon {
    	background-color: transparent !important;
    	margin-top: 0 !important;
    	padding: 0 !important;
    }

    /* Navy circular icon disc with gold graphic shape. Softer navy so the disc reads lighter. */
    #surgical-expertise .expertise-card-custom .fbox-icon i {
    	background-color: #2c4a73 !important;
    	color: var(--accent-gold) !important;
    	border: 1px solid rgba(200, 168, 75, 0.5);
    	border-radius: 50% !important;
    	width: 4rem;
    	height: 4rem;
    	line-height: 4rem;
    	font-size: 1.5rem;
    	display: block;
    	text-align: center;
    	box-sizing: border-box;
    	transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #surgical-expertise .expertise-card-custom:hover .fbox-icon i {
    	transform: scale(1.06);
    	box-shadow: 0 6px 20px rgba(200, 168, 75, 0.3);
    }

    /* Typography: navy headings, very deep gray body + list for visibility */
    #surgical-expertise .expertise-card-custom h3 {
    	color: var(--primary-navy);
    }

    #surgical-expertise .expertise-card-custom .fbox-content p,
    #surgical-expertise .expertise-card-custom .expertise-list li {
    	color: #1f2937;
    }

    #surgical-expertise .expertise-card-custom .expertise-list li i {
    	color: var(--primary-navy);
    }

    /* Depth contrast with warm card background */
    #prostate-expertise {
        background: linear-gradient(135deg, rgba(13, 43, 78, 0.03) 0%, rgba(200, 168, 75, 0.03) 100%);
    }

    #prostate-expertise .expertise-card-custom {
    	background: linear-gradient(135deg, rgba(212, 168, 67, 0.18) 0%, rgba(224, 169, 63, 0.18) 100%);
    	backdrop-filter: blur(8px);
    	-webkit-backdrop-filter: blur(8px);
    	/* Gold borders in normal mode; */
    	border-top: 3px solid rgba(212, 168, 67, 0.7);
    	border-right: 3px solid rgba(212, 168, 67, 0.7);
    	border-left: 1px solid rgba(212, 168, 67, 0.55);
    	border-bottom: 1px solid rgba(212, 168, 67, 0.55);
    	border-radius: 12px !important;
    	padding: 1.5rem 1.25rem !important;
    	box-shadow: 0 4px 24px rgba(13, 43, 78, 0.06);
    	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    /* Hover: lift + deeper (subtle) gold borders + gold glow */
    #prostate-expertise .expertise-card-custom:hover {
    	transform: translateY(-6px);
    	border-top-color: #b8962e;
    	border-right-color: #b8962e;
    	border-left-color: rgba(184, 150, 46, 0.75);
    	border-bottom-color: rgba(184, 150, 46, 0.75);
    	box-shadow: 0 16px 48px rgba(200, 168, 75, 0.3), 0 0 26px rgba(200, 168, 75, 0.45);
    }

    /* Suppress the white patch behind the icon */
    #prostate-expertise .expertise-card-custom.fbox-bg.fbox-center .fbox-icon,
    #prostate-expertise .expertise-card-custom .fbox-icon {
    	background-color: transparent !important;
    	margin-top: 0 !important;
    	padding: 0 !important;
    }

    /* Navy circular icon disc with gold graphic shape for contrast on the gold color card.
    	Softer navy - the disc reads lighter. */
    #prostate-expertise .expertise-card-custom .fbox-icon i {
    	background-color: #2c4a73 !important;
    	color: var(--accent-gold) !important;
    	border: 1px solid rgba(200, 168, 75, 0.5);
    	border-radius: 50% !important;
    	width: 4rem;
    	height: 4rem;
    	line-height: 4rem;
    	font-size: 1.5rem;
    	display: block;
    	text-align: center;
    	box-sizing: border-box;
    	transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #prostate-expertise .expertise-card-custom:hover .fbox-icon i {
    	transform: scale(1.06);
    	box-shadow: 0 6px 20px rgba(200, 168, 75, 0.3);
    }

    /* Typography: navy headings, very deep gray body for visibility */
    #prostate-expertise .expertise-card-custom h3 {
    	color: var(--primary-navy);
    }

    #prostate-expertise .expertise-card-custom .fbox-content p {
    	color: #1f2937;
    }
