/*
Theme Name: Doctor Person Portfolio V5
Theme URI: https://example.ae/
Author: Rezaul Karim
Author URI: https://example.ae/
Description: Modern Medical Portfolio Theme with Teal Design
Version: 5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Doctor Person Portfolio
*/

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-color: #00BFA6;
    --primary-dark: #00A896;
    --primary-light: #69F0D8;
    --secondary-color: #1E293B;
    --accent-color: #FF6B9D;
    --teal-bg: #A0F4E8;
    --light-bg: #F8FFFE;
    --white: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --shadow-sm: 0 1px 3px rgba(0, 191, 166, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 191, 166, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 191, 166, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 191, 166, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== GLOBAL RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--white);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.display-1, .display-2, .display-3, .display-4 {
    font-weight: 800;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== UTILITY CLASSES ==================== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-teal-light {
    background-color: var(--teal-bg) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.custom-logo-link img {
    max-height: 45px;
    width: auto;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* ==================== BUTTONS ==================== */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: var(--transition);
    border: none;
}

.btn-gradient,
.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}

.btn-gradient:hover,
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 166, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #F0FDFA 0%, #ECFDF5 100%);
    position: relative;
}

.hero-section .row {
    align-items: center;
}

.hero-doctor-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    height: auto;
}

.badge-custom {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Doctor Image Wrapper */
.doctor-image-wrapper {
    background: linear-gradient(135deg, #A0F4E8 0%, #69F0D8 100%);
    border-radius: 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Doctor Image */
.doctor-image {
    /*max-height: 450px;*/
    border-radius: 15px;
}

/* Placeholder Icon */
.placeholder-icon {
    font-size: 15rem;
    color: rgba(255,255,255,0.5);
}

/* Floating Stats Box */
.stats-floating-box {
	position: absolute;
	bottom: -40px;
	left: 70%;
	transform: translateX(-50%);
	background: #fff;
	border-radius: 20px;
	padding: 10px;
	width: 50%;
	z-index: 10;
}
.stat-item h3 {
    color: #00bfa6;
    font-size: 18px;
}

.stat-item small {
    color: #64748B;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .stats-floating-box {
        position: static;
        transform: none;
        margin-top: 20px;
        width: 100%;
    }
}



/* ==================== ABOUT SECTION ==================== */
.nav-pills .nav-link {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid transparent;
}

.nav-pills .nav-link:hover {
    background: rgba(0, 191, 166, 0.1);
    color: var(--primary-color);
}

.nav-pills .nav-link.active {
    background: #fff;
    /* color: #000 !important; */
    box-shadow: 0 4px 12px rgba(70, 72, 72, 0.3);
}

.tab-content .card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

  /* Vertical Tab Navigation */
  .vertical-tabs-wrapper {
    position: sticky;
    top: 100px;
}

.vertical-tabs {
    gap: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.vertical-tab-btn {
    background: white;
    border: 2px solid #d1fae5;
    color: #059669;
    padding: 18px 20px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.vertical-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.vertical-tab-btn:hover::before {
    transform: scaleY(1);
}

.tab-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tab-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.tab-arrow {
    color: #10b981;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vertical-tab-btn:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #10b981;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.vertical-tab-btn:hover .tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

.vertical-tab-btn:hover .tab-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transform: scale(1.1);
}

.vertical-tab-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #059669;
    color: white !important;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.vertical-tab-btn.active::before {
    transform: scaleY(1);
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.vertical-tab-btn.active .tab-number {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: scale(1.15);
}

.vertical-tab-btn.active .tab-arrow {
    opacity: 1;
    transform: translateX(0);
    color: white;
    animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Progress Indicator */
.scroll-progress-indicator {
    margin-top: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 2px solid #d1fae5;
}

.progress-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 10px;
}

.progress-bar-container {
    height: 8px;
    background: #f0fdf4;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Gradient Border Box */
.content-box-wrapper {
    position: relative;
}

.gradient-border-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    padding: 4px;
    border-radius: 30px;
    box-shadow:
        0 10px 40px rgba(16, 185, 129, 0.3),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.gradient-border-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 70%);
    animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scrollable Content Box */
.scrollable-content-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-radius: 26px;
    height: 700px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0;
    position: relative;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.scrollable-content-box .tab-pane {
    min-height: 100%;
    padding: 50px 60px;
}

/* Custom Scrollbar */
.scrollable-content-box::-webkit-scrollbar {
    width: 12px;
}

.scrollable-content-box::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    margin: 10px 0;
}

.scrollable-content-box::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    border: 2px solid #f0fdf4;
    transition: all 0.3s ease;
}

.scrollable-content-box::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #059669 0%, #047857 100%);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Content Styling */
.content-inner {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, transparent 100%);
    border-radius: 10px;
}

.content-text {
    color: #1e293b;
    line-height: 2;
    font-size: 1.1rem;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: #059669;
    font-weight: 600;
}

.footer-pattern {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid #d1fae5;
}

.footer-pattern span {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.footer-pattern span:nth-child(2) {
    animation-delay: 0.3s;
    width: 14px;
    height: 14px;
}

.footer-pattern span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Scroll Hint */
.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .vertical-tabs-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .vertical-tabs {
        flex-direction: row !important;
        overflow-x: auto;
        padding: 15px;
    }

    .vertical-tab-btn {
        flex-shrink: 0;
        min-width: 200px;
    }

    .scroll-progress-indicator {
        display: none;
    }
}

@media (max-width: 768px) {

    .scrollable-content-box,
    .scrollable-content-box .tab-pane {
        height: 600px;
        min-height: 600px;
        padding: 30px 25px;
    }

    .content-title {
        font-size: 1.8rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .vertical-tab-btn {
        padding: 15px;
        min-width: 180px;
    }

    .tab-text {
        font-size: 0.85rem;
    }
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.bg-primary-subtle {
    background: rgba(0, 191, 166, 0.1);
}

.bg-secondary-subtle {
    background: rgba(239, 68, 68, 0.1);
}

.bg-accent-subtle {
    background: rgba(245, 158, 11, 0.1);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== CHAMBER SECTION ==================== */
.chamber-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.chamber-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.chamber-image-wrapper {
    height: 280px;
    background: var(--teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.chamber-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.chamber-card:hover .chamber-image-wrapper img {
    transform: scale(1.08);
}

.chamber-card .card-body {
    padding: 1.75rem;
}

.chamber-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.chamber-content p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.chamber-content i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

/* ==================== APPOINTMENT SECTION ==================== */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.quick-contact-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
    text-align: center;
}

.quick-contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.quick-contact-card .icon-box {
    margin: 0 auto 1rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: white;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.gallery-card .ratio {
    background: var(--teal-bg);
}

.gallery-card .card-body {
    padding: 1.25rem;
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.blog-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
    background: var(--teal-bg);
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-card .card-body {
    padding: 1.5rem;
}

.badge-custom {
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==================== FAQ ACCORDION ==================== */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 191, 166, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-muted);
}

/* ==================== FOOTER ==================== */
.modern-footer {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: white;
    position: relative;
    margin-top: 80px;
}

.footer-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-logo .custom-logo-link img {
    max-height: 60px;
    width: auto;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.social-icon-footer {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon-footer:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-4px);
}

.newsletter-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.15);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 2.5rem 0;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    color: white;
}

.scroll-to-top {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 1.25rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 191, 166, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 191, 166, 0.5);
}

/* ==================== CARDS ==================== */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* ==================== SECTION HEADINGS ==================== */
section {
    padding: 80px 0;
}

section .display-4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

section .lead {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 6rem;
        right: 1.5rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 50px 0;
    }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== WORDPRESS SPECIFIC ==================== */
body.admin-bar .navbar.fixed-top {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar.fixed-top {
        top: 46px;
    }
}

/* ==================== END ==================== */