/* ===== DENTIC DENTAL CLINIC - COMPLETE STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* ===== VARIABLES & GLOBAL STYLES ===== */
:root {
    --primary: #2A6DFF;
    --primary-dark: #1a56e0;
    --primary-light: #eff4ff;
    --secondary: #FF6B6B;
    --accent: #4ECDC4;
    --light: #f8fbff;
    --dark: #0f172a;
    --text: #5e6c84;
    --gradient-primary: linear-gradient(135deg, #2A6DFF 0%, #6592ff 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B6B 0%, #ff8e8e 100%);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    --shadow: 0 10px 30px -10px rgba(42, 109, 255, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(42, 109, 255, 0.25);
    --shadow-premium: 0 20px 40px -15px rgba(42, 109, 255, 0.1),
        0 0 0 1px rgba(42, 109, 255, 0.05);
    --border-radius: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --blob-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

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

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

/* ===== TYPOGRAPHY & UTILITIES ===== */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(42, 109, 255, 0.3);
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 109, 255, 0.4);
    color: white;
}

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

.btn-secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 109, 255, 0.2);
}



/* ===== NAVBAR ===== */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: white;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark) !important;
    font-weight: 500;
    margin-left: 20px;
    font-size: 16px;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: var(--transition);
    border: none !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        margin: 0.25rem 0;
        display: block;
        text-align: center;
    }

    .nav-link:after {
        display: none;
    }

    .navbar-toggler {
        border: none;
    }
}

/* Small Desktop Screens - Compact Navbar */
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 14px;
        margin-left: 12px;
    }

    .navbar .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .ms-lg-3 {
        margin-left: 0.75rem !important;
    }
}

/* Medium Desktop Screens - Slightly Compact */
@media (min-width: 1201px) and (max-width: 1400px) {
    .nav-link {
        font-size: 15px;
        margin-left: 15px;
    }

    .navbar .btn-primary {
        padding: 12px 25px;
        font-size: 15px;
    }
}


/* ===== HERO SECTIONS ===== */
.hero-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(232, 240, 254, 0.8);
    backdrop-filter: blur(5px);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 8px 20px rgba(42, 109, 255, 0.15);
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: rotate(0deg);
}

/* Main Hero Image - Modern Rounded Style */
.main-img {
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(42, 109, 255, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.main-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 80px rgba(42, 109, 255, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 1);
}

/* ===== APPOINTMENT FORM ===== */
.appointment-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(42, 109, 255, 0.1);
}

/* ===== FORM STYLES ===== */
.form-control {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus {
    background-color: white;
    box-shadow: 0 4px 20px rgba(42, 109, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.form-select {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.form-select:focus {
    box-shadow: 0 0 0 3px rgba(42, 109, 255, 0.1);
    border-color: var(--primary);
}

.input-group-text {
    background: transparent;
    border-right: 0;
    color: var(--primary);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(42, 109, 255, 0.25);
}

/* ===== TIME SLOTS ===== */
.time-slot {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.time-slot:hover,
.time-slot.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.time-slot.disabled {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.5;
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(42, 109, 255, 0.15);
}

.feature-card:hover::after {
    transform: scale(5);
    opacity: 0.1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    color: var(--primary);
    font-size: 2.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(42, 109, 255, 0.1);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(10deg) scale(1.1);
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(42, 109, 255, 0.3);
}


/* ===== SERVICE CARDS ===== */
.service-card {
    border-radius: var(--border-radius);
    padding: 3.5rem 2.5rem;
    background: white;
    color: var(--text);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
    z-index: 1;
    border: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(42, 109, 255, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    border-radius: var(--blob-radius);
    box-shadow: 0 10px 20px rgba(42, 109, 255, 0.1);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(42, 109, 255, 0.25);
    border-radius: 50%;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.service-card p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
}

.service-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    opacity: 0.02;
    color: var(--primary);
    transform: rotate(15deg);
    transition: var(--transition);
    line-height: 1;
}

.service-card:hover .service-decoration {
    transform: rotate(0deg) scale(1.2);
    opacity: 0.05;
}



/* ===== DOCTOR CARDS ===== */
.doctor-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

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

.doctor-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.8, 1);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-info {
    padding: 1.5rem;
    background: white;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: var(--transition);
    opacity: 1;
}

.doctor-card:hover .doctor-info {
    opacity: 0;
    transform: translateY(20px);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 109, 255, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-overlay h5 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: 0.4s ease 0.1s;
    opacity: 0;
}

.doctor-overlay p {
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease 0.2s;
    color: rgba(255, 255, 255, 0.9);
}

.doctor-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    transform: translateY(20px);
    transition: 0.4s ease 0.3s;
    opacity: 0;
}

.doctor-card:hover .doctor-overlay h5,
.doctor-card:hover .doctor-overlay p,
.doctor-card:hover .doctor-social {
    opacity: 1;
    transform: translateY(0);
}

.doctor-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.doctor-social a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.1);
}

/* ===== WORK PROCESS SECTION ===== */
.work-process-section {
    background: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.work-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(42, 109, 255, 0.03) 0%, transparent 70%);
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

/* Connector Line (Desktop Only) */
@media (min-width: 992px) {
    .process-step::after {
        content: '';
        position: absolute;
        top: 60px;
        right: -50%;
        width: 100%;
        height: 2px;
        background-image: linear-gradient(to right, var(--primary) 33%, rgba(255, 255, 255, 0) 0%);
        background-position: bottom;
        background-size: 10px 2px;
        background-repeat: repeat-x;
        z-index: -1;
        opacity: 0.3;
    }

    .col-lg-3:last-child .process-step::after {
        display: none;
    }
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background: white;
    color: var(--primary);
    font-size: 2.5rem;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(42, 109, 255, 0.15);
    z-index: 2;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(42, 109, 255, 0.3);
    transition: var(--transition);
    animation: spin 30s linear infinite;
}

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

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(42, 109, 255, 0.3);
    border: 3px solid white;
}

.process-step:hover .step-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.process-step:hover .step-icon::before {
    border-color: var(--primary);
    border-style: solid;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    opacity: 0.2;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--light);
    padding: 120px 0;
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    display: block;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    opacity: 0;
    transition: var(--transition);
    padding: 2.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    width: 100%;
    transform: translateY(20px);
    transition: 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h5 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gallery-caption p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
    position: absolute;
    top: 20px;
    right: 20px;
    transform: scale(0) rotate(-45deg);
    opacity: 0;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1) rotate(0);
    opacity: 1;
    top: 25px;
    right: 25px;
}

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

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
}

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

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-light);
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 40px rgba(42, 109, 255, 0.2);
    z-index: 2;
}

.pricing-card.popular::before {
    transform: scaleX(1);
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(42, 109, 255, 0.25);
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0 0.5rem;
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features li i.fa-check {
    color: var(--accent);
    background: rgba(78, 205, 196, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.pricing-card:hover .pricing-features li i.fa-check {
    transform: scale(1.2);
    background: var(--accent);
    color: white;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 10px;
    color: var(--primary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(to top, var(--light) 0%, white 100%);
    position: relative;
}

.faq-image {
    transition: var(--transition);
}

.faq-image:hover {
    transform: translateY(-5px);
}

.faq-image .overflow-hidden {
    transition: box-shadow 0.3s ease;
}

.faq-image:hover .overflow-hidden {
    box-shadow: var(--shadow-lg);
}

.faq-image img {
    transition: transform 0.5s ease;
}

.faq-image:hover img {
    transform: scale(1.05);
}

.bg-gradient-to-top {
    background: linear-gradient(to top, rgba(42, 109, 255, 0.85) 0%, transparent 100%);
}

.faq-item {
    transition: var(--transition);
}

.faq-item:hover {
    background-color: rgba(42, 109, 255, 0.03);
}

.faq-question {
    transition: var(--transition);
    padding: 1rem 0 !important;
}

.faq-question:hover {
    color: var(--primary) !important;
}

.faq-question:focus {
    box-shadow: none !important;
}

.faq-question .fa-chevron-down {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(rgba(42, 109, 255, 0.9), rgba(42, 109, 255, 0.9)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,50L483,35.4C466,20.8,432,0,400,0C368,0,334,20.8,317,35.4L300,50L283,35.4C266,20.8,232,0,200,0C168,0,134,20.8,117,35.4L100,50L83,35.4C66,20.8,32,0,0,0V100H1000V0C968,0,934,20.8,917,35.4L900,50L883,35.4C866,20.8,832,0,800,0C768,0,734,20.8,717,35.4L700,50L683,35.4C666,20.8,632,0,600,0C568,0,534,20.8,517,35.4L500,50Z" fill="rgba(255,255,255,0.1)"></path></svg>');
    background-size: cover;
    background-position: center;
}

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(42, 109, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    letter-spacing: -1px;
}

.footer-logo i {
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(42, 109, 255, 0.5));
}

.footer-links h5 {
    color: white;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(8px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer-links ul li a i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links ul li a:hover i {
    transform: translateX(2px);
}

.footer .text-white-50 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .text-white-50:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(42, 109, 255, 0.3);
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    margin-top: 60px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* ===== BACKGROUND SHAPES & ANIMATIONS ===== */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    animation: blob 10s infinite;
}

.bg-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: 20%;
    right: 10%;
    animation: blob 8s infinite reverse;
}

.bg-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 50%;
    left: 10%;
    animation: blob 12s infinite;
}

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* ===== ALERTS & NOTIFICATIONS ===== */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1.25rem;
}

.alert-primary {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* ===== LIST GROUPS ===== */
.list-group-item {
    border: none;
    padding: 0.75rem 0;
    background: transparent;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .process-step:not(:last-child):after {
        display: none;
    }

    .faq-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {

    .hero-section,
    .page-hero {
        padding: 120px 0 50px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-caption h5 {
        font-size: 1.3rem;
    }

    .gallery-caption p {
        font-size: 0.9rem;
    }

    .faq-question span {
        font-size: 1.1rem !important;
    }

    .appointment-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .d-flex.flex-sm-row {
        flex-direction: column !important;
    }

    .appointment-form {
        padding: 1.5rem 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== PRINT STYLES ===== */
@media print {

    .navbar,
    .footer,
    .btn {
        display: none !important;
    }

    body {
        color: black;
        background: white;
    }

    .hero-section,
    .page-hero {
        padding: 50px 0;
        background: white !important;
    }

    .bg-shape {
        display: none;
    }
}

/* ===== BLOG PAGES STYLES ===== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-hero p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
}

/* Blog Search & Filters */
.blog-filters {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box input {
    padding-left: 3rem;
    border-radius: 50px;
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary);
    color: white;
}

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Blog Cards */
/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
}

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

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-card-category {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(42, 109, 255, 0.3);
}

.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.8;
}

.blog-card-meta i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.blog-card-meta span {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.blog-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-title a {
    color: var(--dark);
    text-decoration: none;
    background-image: linear-gradient(to right, var(--primary) 0%, var(--primary) 100%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
    background-size: 100% 2px;
}

.blog-card-excerpt {
    color: var(--text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.blog-card-read-more {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.blog-card-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.blog-card-read-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
    background: var(--primary-light);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
}

.blog-card-read-more:hover i {
    background: var(--primary);
    color: white;
}



/* Blog Sidebar */
.blog-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h4 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    font-size: 1.3rem;
}

.sidebar-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-content h5 a {
    color: var(--dark);
    text-decoration: none;
}

.recent-post-content h5 a:hover {
    color: var(--primary);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text);
    display: flex;
    align-items: center;
}

.recent-post-date i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f1f5f9;
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a {
    color: var(--text);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.category-count {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.page-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    background: white;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.page-link.prev,
.page-link.next {
    width: auto;
    padding: 0 1.5rem;
    border-radius: 50px;
}

/* ===== BLOG DETAILS PAGE STYLES ===== */

/* Blog Details Hero */
.blog-details-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-details-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-details-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-details-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.blog-meta-item i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.blog-category-badge {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Blog Details Content */
.blog-details-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.blog-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    line-height: 1.8;
    color: var(--text);
}

.blog-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--dark);
}

.blog-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text);
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

/* Blog Tags & Share */
.blog-tags-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 3rem;
}

.blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tags span {
    font-weight: 600;
    margin-right: 1rem;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-share span {
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.share-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Author Bio */
.author-bio {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 3rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.author-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.author-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.author-social a {
    color: var(--text);
    transition: var(--transition);
}

.author-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    margin-top: 4rem;
}

.related-posts h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Comments Section */
.comments-section {
    margin-top: 4rem;
}

.comments-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.comment-date {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.comment-reply {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.comment-reply:hover {
    color: var(--primary-dark);
}

.comment-reply i {
    margin-left: 0.3rem;
}

.comment.children {
    margin-left: 4rem;
    margin-top: 2rem;
}

/* Comment Form */
.comment-form {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-top: 3rem;
}

.comment-form h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE STYLES FOR BLOG PAGES ===== */
@media (max-width: 1200px) {
    .blog-details-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .blog-details-title {
        font-size: 2.2rem;
    }

    .blog-details-content {
        padding: 2rem;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .comment.children {
        margin-left: 2rem;
    }
}

@media (max-width: 768px) {

    .blog-hero h1,
    .blog-details-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-details-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-tags-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment {
        flex-direction: column;
        text-align: center;
    }

    .comment-avatar {
        align-self: center;
    }

    .comment.children {
        margin-left: 1rem;
    }
}

@media (max-width: 576px) {

    .blog-hero,
    .blog-details-hero {
        padding: 120px 0 50px;
    }

    .blog-details-content {
        padding: 1.5rem;
    }

    .blog-content h2 {
        font-size: 1.7rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .author-bio {
        padding: 1.5rem;
    }

    .comment-form {
        padding: 1.5rem;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== HOMEPAGE 2 SPECIFIC STYLES ===== */

/* Hero Section - New Design */
/* Hero Section - New Design */
.hero-section-2 {
    background: linear-gradient(-45deg, #e3f2fd, #e8f0fe, #f3e5f5, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 160px 0 150px;
    /* Increased bottom padding to accommodate overlap */
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .features-section-overlap {
        margin-top: -100px;
        position: relative;
        z-index: 10;
        padding-top: 0 !important;
    }
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}

.feature-link i {
    margin-left: 5px;
    transition: margin 0.3s ease;
}

.feature-link:hover {
    color: var(--secondary);
}

.feature-link:hover i {
    margin-left: 10px;
}

.hero-section-2::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    /* Fallback */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.6;
    z-index: -1;
    border-radius: 50%;
    animation: pulse-soft 4s infinite alternate;
}

@keyframes pulse-soft {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.8;
    }
}

.hero-main-image {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    /* More diffused shadow */
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    /* Slightly less transparent for legibility */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    /* Rounder corners */
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
    /* Higher z-index */
    transition: all 0.3s ease;
    cursor: default;
    min-width: 200px;
    /* Ensure consistent width */
}

.floating-card:hover {
    animation-play-state: paused;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(42, 109, 255, 0.15);
    border-color: white;
}

.floating-card.card-1 {
    top: 50px;
    left: -40px;
    border-left: 5px solid var(--primary);
    /* Accent border */
}

.floating-card.card-2 {
    bottom: 50px;
    right: -30px;
    animation-delay: 3s;
    border-right: 5px solid var(--secondary);
    /* Accent border */
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: left;
    transition: transform 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* ===== HERO SECTION V2 MODERN (For index-2.html) ===== */
.hero-v2-modern {
    position: relative;
    min-height: 130vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f8fafc;
}

.hero-v2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/5355837/pexels-photo-5355837.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: heroZoom 20s infinite alternate;
}

.hero-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge-v2 i {
    color: #fca311;
    margin-right: 10px;
    font-size: 1.1rem;
}

.hero-badge-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hero-title-v2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-title-v2 span {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-lead-v2 {
    font-size: 1.35rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(42, 109, 255, 0.3);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(42, 109, 255, 0.5);
    color: white;
}

.btn-hero-outline {
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    background: white;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.btn-hero-outline:hover {
    background: #f8fafc;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-hero-outline .icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(42, 109, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

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

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-trust-indicators {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.trust-item span {
    font-weight: 600;
    color: var(--text);

}

/* ===== FEATURES SECTION MODERN ===== */
.features-section-modern {
    padding: 180px 0;
    margin-top: -100px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.feature-card-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card-modern:hover .feature-icon-modern {
    background: var(--primary);
    color: white;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(42, 109, 255, 0.3);
}

.feature-card-modern h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.feature-card-modern p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== ABOUT SECTION MODERN ===== */
.about-preview-modern {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about-image-modern {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image-modern img {
    border-radius: 30px;
    transition: transform 0.6s ease;
}

.about-image-modern:hover img {
    transform: scale(1.05);
}

.experience-badge-modern {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 0 50px 50px 0;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    border-left: 5px solid var(--primary);
}

.experience-years-modern {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-text-modern {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.2;
}

.check-list-modern i {
    color: var(--secondary);
    background: rgba(4, 206, 206, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 10px;
}


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

    .hero-trust-indicators {
        gap: 2rem;
    }
}

.stat-item:hover .stat-number {
    text-shadow: 0 5px 15px rgba(42, 109, 255, 0.2);
}

/* ===== ABOUT SECTION REDESIGN ===== */
.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-main-img {
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-main-img {
    transform: rotate(0) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.experience-floating-badge {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 5px solid var(--primary);
    animation: float 4s ease-in-out infinite;
}

.experience-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.list-modern li {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.list-modern li:hover {
    transform: translateX(10px);
    border-color: rgba(42, 109, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ===== SERVICES SECTION REDESIGN ===== */
.services-modern {
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.services-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -1;
}

.service-card-modern {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0.03;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 109, 255, 0.15);
    border-color: transparent;
}

.service-card-modern:hover::before {
    height: 100%;
    opacity: 1;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: rgba(42, 109, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-card-modern:hover .service-icon-modern {
    background: white;
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card-modern:hover h3,
.service-card-modern:hover p,
.service-card-modern:hover .text-muted {
    color: white !important;
}

/* Button styles - visible by default with primary color */
.service-card-modern .btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    border-color: var(--primary);
    color: var(--primary);
}

.service-card-modern:hover .btn {
    background: white;
    color: var(--primary);
    border-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.05;
    transform: rotate(-15deg);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-bg-icon {
    transform: rotate(0) scale(1.2);
    opacity: 0.1;
    color: white;
}


/* ===== DOCTOR SECTION REDESIGN ===== */
.doctor-card-modern {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.doctor-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.doctor-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.doctor-card-modern:hover .doctor-img-wrapper img {
    transform: scale(1.1);
}

.doctor-social-modern {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.4s ease;
}

.doctor-card-modern:hover .doctor-social-modern {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.doctor-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.doctor-info-modern {
    padding: 1.5rem;
    text-align: center;
    background: white;
    position: relative;
    z-index: 1;
}

.doctor-info-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.doctor-card-modern:hover .doctor-info-modern::before {
    transform: scaleX(1);
}

.doctor-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Features Section - New Design */
.features-section {
    padding: 100px 0;
    background: white;
}


/* ===== WORK PROCESS REDESIGN ===== */
.process-section-modern {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-step-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    height: 100%;
}

.process-step-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 109, 255, 0.15);
}

.step-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    transition: all 0.4s ease;
}

.process-step-modern:hover .step-icon-modern {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.step-number-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid white;
}

/* Connecting line for larger screens */
@media (min-width: 992px) {
    .process-wrapper {
        position: relative;
    }

    .process-line {
        position: absolute;
        top: 25%;
        left: 10%;
        width: 80%;
        height: 2px;
        background: repeating-linear-gradient(to right,
                var(--primary-light) 0,
                var(--primary-light) 10px,
                transparent 10px,
                transparent 20px);
        z-index: 0;
    }
}

/* ===== GALLERY SECTION REDESIGN ===== */
.gallery-section-modern {
    padding: 100px 0;
}

.gallery-item-modern {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(42, 109, 255, 0.9), rgba(42, 109, 255, 0.4));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(3px);
}

.gallery-item-modern:hover .gallery-overlay-modern {
    opacity: 1;
}

.gallery-item-modern:hover img {
    transform: scale(1.1);
}

.gallery-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-caption-modern h5 {
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-caption-modern p {
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-item-modern:hover .gallery-icon-modern,
.gallery-item-modern:hover .gallery-caption-modern h5,
.gallery-item-modern:hover .gallery-caption-modern p {
    transform: translateY(0);
}


/* ===== TESTIMONIAL SECTION REDESIGN ===== */
.testimonial-card-modern {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card-modern::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.testimonial-rating-modern {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.testimonial-author-modern img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(42, 109, 255, 0.1);
}

/* ===== BLOG SECTION REDESIGN ===== */
.blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-content-modern {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-meta-modern i {
    color: var(--primary);
    margin-right: 5px;
}

.read-more-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* ===== PRICING SECTION REDESIGN ===== */
.pricing-card-modern {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-card-modern.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(42, 109, 255, 0.15);
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-modern.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header-modern {
    padding: 3rem 2rem;
    text-align: center;
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card-modern.popular .pricing-header-modern {
    background: var(--gradient-primary);
    color: white;
}

.pricing-price-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 1.5rem 0;
    color: var(--primary);
}

.pricing-card-modern.popular .pricing-price-modern {
    color: white;
}

.pricing-features-modern {
    padding: 2rem;
    list-style: none;
    margin: 0;
}

.pricing-features-modern li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    color: var(--text);
}

.pricing-features-modern li i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.popular-badge-modern {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



/* ===== CONTACT SECTION REDESIGN ===== */
.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item-modern:hover .contact-icon-modern {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.appointment-form-modern {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-control-modern {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* ===== FOOTER REDESIGN ===== */
.footer-modern {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-logo-modern {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.social-links-modern a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-modern a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-widget h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 10px;
}

.footer-links-modern a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links-modern a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links-modern a::before {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links-modern a:hover::before {
    opacity: 1;
    margin-right: 12px;
}

.opening-hours-modern li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.service-feature-list li i {
    margin-right: 10px;
    color: var(--primary);
}

/* Testimonials Section - New Design */
.testimonials-section-2 {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-card-2 {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.testimonial-card-2:before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 10rem;
    color: var(--primary);
    font-family: serif;
    line-height: 1;
    opacity: 0.05;
    pointer-events: none;
    transition: var(--transition);
}

.testimonial-card-2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card-2:hover::before {
    transform: scale(1.1) rotate(-10deg);
    opacity: 0.08;
}

.testimonial-author img {
    border: 3px solid var(--primary-light);
    padding: 3px;
    width: 65px;
    height: 65px;
    transition: var(--transition);
}

.testimonial-card-2:hover .testimonial-author img {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* CTA Section - New Design */
.cta-section-2 {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section-2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,50L483,35.4C466,20.8,432,0,400,0C368,0,334,20.8,317,35.4L300,50L283,35.4C266,20.8,232,0,200,0C168,0,134,20.8,117,35.4L100,50L83,35.4C66,20.8,32,0,0,0V100H1000V0C968,0,934,20.8,917,35.4L900,50L883,35.4C866,20.8,832,0,800,0C768,0,734,20.8,717,35.4L700,50L683,35.4C666,20.8,632,0,600,0C568,0,534,20.8,517,35.4L500,50Z" fill="rgba(255,255,255,0.05)"></path></svg>');
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

.cta-section-2::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(50px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ===== HERO SECTION 2 PREMIUM STYLES ===== */
.hero-section-2 {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 50%, #e6f0ff 100%);
    overflow: hidden;
    z-index: 1;
}

/* Abstract Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.12) 0%, rgba(42, 109, 255, 0) 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.12) 0%, rgba(78, 205, 196, 0) 70%);
    bottom: -100px;
    left: -150px;
    animation-delay: -3s;
}

.bg-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, rgba(255, 107, 107, 0) 70%);
    top: 30%;
    left: 40%;
    animation-delay: -6s;
}

/* Premium Form Box */
.premium-appointment-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(42, 109, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: transform 0.4s ease;
}

.premium-appointment-box:hover {
    transform: translateY(-5px);
}

.premium-appointment-box h3 {
    color: var(--dark);
    font-weight: 700;
}

.premium-appointment-box .input-group-text {
    background: transparent;
    border-right: none;
    border-color: rgba(42, 109, 255, 0.1);
    color: var(--primary);
    padding-left: 1.25rem;
}

/* Custom Input Styling */
.premium-appointment-box .form-control,
.premium-appointment-box .form-select {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(42, 109, 255, 0.1);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
    height: auto;
    color: var(--dark);
}

.premium-appointment-box .input-group .form-control {
    border-left: none;
    padding-left: 0.5rem;
}

.premium-appointment-box .form-control:focus,
.premium-appointment-box .form-select:focus {
    background: white;
    box-shadow: 0 10px 25px rgba(42, 109, 255, 0.1);
    border-color: var(--primary);
}

.premium-appointment-box .input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

/* Premium Typography & Stats */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    position: relative;
    padding-left: 1.5rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'DM Sans', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section-2 {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .premium-appointment-box {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===== FEATURES SECTION 2 (Premium Design) ===== */
.features-section {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-soft 8s infinite alternate;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-soft 8s infinite alternate-reverse;
}

.feature-card-2 {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(42, 109, 255, 0.08);
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.feature-card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, rgba(42, 109, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

/* Hover State */
.feature-card-2:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(42, 109, 255, 0.15);
    border-color: rgba(42, 109, 255, 0.3);
}

.feature-card-2:hover::before {
    opacity: 1;
}

.feature-icon-2 {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    font-size: 2.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    box-shadow: 0 10px 20px rgba(42, 109, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.feature-card-2:hover .feature-icon-2 {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(180deg) scale(1.1);
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(42, 109, 255, 0.3);
}

.feature-icon-2 i {
    transition: transform 0.6s ease;
}

.feature-card-2:hover .feature-icon-2 i {
    transform: rotate(-180deg);
}

.feature-card-2 h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.feature-card-2:hover h4 {
    color: var(--primary);
}

.feature-card-2 p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.8;
    transition: var(--transition);
}

.feature-card-2:hover p {
    opacity: 1;
}


/* ===== ABOUT SECTION PREMIUM REDESIGN ===== */
.about-preview {
    padding: 120px 0;
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
    z-index: 1;
}

.about-bg-shape-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: blob 15s infinite alternate;
}

.about-bg-shape-2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: blob 10s infinite alternate-reverse;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    z-index: 1;
}

.about-image-wrapper:hover .about-image {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(42, 109, 255, 0.2);
    border-radius: 30px;
    transform: translate(20px, 20px);
    z-index: 0;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image-decoration {
    transform: translate(10px, 10px);
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
}

.about-image-wrapper:hover .experience-badge {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.experience-years {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon-small {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(360deg);
}

.feature-text h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 1.1rem;
}

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

@media (max-width: 991px) {
    .about-image-wrapper {
        margin-bottom: 3rem;
        padding-right: 0;
    }

    .experience-badge {
        left: 20px;
        bottom: 20px;
    }

    .about-image {
        transform: none;
    }

    .about-image-decoration {
        display: none;
    }
}

/* ===== PREMIUM SERVICES SECTION ===== */
.services-section-premium {
    padding: 120px 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.service-bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(162, 210, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, -30%);
    z-index: -1;
    animation: flow 15s infinite alternate;
}

.service-bg-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
    z-index: -1;
    animation: flow 12s infinite alternate-reverse;
}

@keyframes flow {
    0% {
        transform: translate(-30%, -30%) scale(1);
    }

    100% {
        transform: translate(-25%, -25%) scale(1.1);
    }
}

.sub-title-premium {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(42, 109, 255, 0.08);
    border-radius: 50px;
}

/* ===== PREMIUM TABS ===== */
.premium-tabs-wrapper {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-tab-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}

.premium-tab-link {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 0.7;
}

.premium-tab-link .icon-box {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.premium-tab-link .text {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
}

.premium-tab-link:hover {
    opacity: 1;
    background: rgba(42, 109, 255, 0.03);
}

.premium-tab-link.active {
    opacity: 1;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.premium-tab-link.active .icon-box {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(42, 109, 255, 0.3);
}

.premium-tab-link.active .text {
    color: var(--dark);
}

/* ===== TAB CONTENT ===== */
.premium-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.premium-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SERVICE IMAGE AREA ===== */
.service-img-premium {
    position: relative;
    padding: 20px;
}

.service-img-premium img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

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

.service-img-premium .bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 109, 255, 0.1) 0%, rgba(42, 109, 255, 0) 70%);
    border-radius: 30px;
    z-index: 1;
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}

.service-img-premium:hover .bg-decoration {
    transform: rotate(2deg) scale(0.98);
}

.service-floating-card {
    position: absolute;
    bottom: 40px;
    right: -10px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    animation: floatCard 6s ease-in-out infinite;
    max-width: 200px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== FEATURE GRID ===== */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text);
    transition: transform 0.3s ease;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
    background: rgba(42, 109, 255, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item:hover {
    transform: translateX(5px);
    color: var(--primary-dark);
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
    .premium-tabs-wrapper {
        padding: 2rem;
    }

    .premium-tab-nav {
        gap: 1rem;
        padding-bottom: 0;
        margin-bottom: 2rem;
    }

    .premium-tab-link {
        padding: 0.75rem 1.25rem;
        width: 100%;
        justify-content: flex-start;
        background: #f8fafc;
        border-radius: 12px;
    }

    .premium-tab-link.active {
        background: var(--primary);
        color: white;
    }

    .premium-tab-link.active .text {
        color: white;
    }

    .premium-tab-link.active .icon-box {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .service-img-premium {
        margin-bottom: 2rem;
        padding: 10px;
    }

    .service-floating-card {
        right: 10px;
        bottom: 20px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }
}



/* ===== PREMIUM DOCTORS SECTION ===== */
.doctors-section-premium {
    padding: 120px 0;
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
    z-index: 1;
}

.doctor-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* ===== TEAM CARD ===== */
.team-card-premium {
    background: white;
    border-radius: 24px;
    padding: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    /* group-hover: translateY(-10px); Removed invalid property */
}

.team-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Image Area */
.team-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 320px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card-premium:hover .team-img-wrapper img {
    transform: scale(1.1);
}

/* Social Icons Overlay */
.team-social-group {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.team-card-premium:hover .team-social-group {
    opacity: 1;
    transform: translateY(0);
}

.social-btn {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

/* Content Area */
.team-content {
    text-align: center;
    padding: 0 10px 10px;
}

.team-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.team-card-premium:hover .team-name {
    color: var(--primary);
}

.team-role {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.8;
}

.team-line {
    width: 40px;
    height: 3px;
    background: var(--primary-light);
    margin: 0 auto;
    border-radius: 10px;
    transition: width 0.3s ease, background 0.3s ease;
}

.team-card-premium:hover .team-line {
    width: 80px;
    background: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .team-img-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .team-img-wrapper {
        height: 350px;
    }
}

/* ===== PREMIUM PROCESS SECTION ===== */
.process-section-premium {
    padding: 120px 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.process-bg-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    top: -200px;
    left: -200px;
}

.process-bg-decoration-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    bottom: -100px;
    right: -100px;
}

/* Connecting Line (Desktop) */
.process-steps-wrapper {
    position: relative;
    padding-top: 30px;
}

@media (min-width: 992px) {
    .process-connector {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 2px;
        background-image: linear-gradient(to right, transparent 0%, var(--primary-light) 15%, var(--primary-light) 85%, transparent 100%);
        z-index: 0;
    }

    .process-connector::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: var(--gradient-primary);
        opacity: 0.5;
        animation: progressLine 4s ease-out forwards;
    }
}

@keyframes progressLine {
    to {
        width: 100%;
    }
}

/* Step Card */
.process-step-premium {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    margin-top: 20px;
}

.process-step-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.step-number-premium {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.process-step-premium:hover .step-number-premium {
    background: var(--primary);
    transform: translateX(-50%) scale(1.1);
}

.step-icon-premium {
    width: 90px;
    height: 90px;
    margin: 20px auto 30px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
}

.step-icon-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0.1;
    transition: all 0.4s ease;
}

.process-step-premium:hover .step-icon-premium {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
}

.process-step-premium:hover .step-icon-premium i {
    transform: rotateY(-180deg);
    /* Counter-rotate icon so it doesn't look flipped */
}

.process-step-premium:hover .step-icon-premium::before {
    width: 120%;
    height: 120%;
    opacity: 0.2;
    border-width: 2px;
}

.step-title-premium {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-desc-premium {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .process-connector {
        display: none;
    }

    .process-step-premium {
        margin-bottom: 30px;
    }
}

/* ===== PREMIUM GALLERY SECTION ===== */
.gallery-section-premium {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.gallery-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(42, 109, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.5;
}

/* Gallery Grid */
.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* Gallery Item */
.gallery-item-premium {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.gallery-item-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.gallery-item-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Gallery Overlay */
.gallery-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item-premium:hover .gallery-overlay-premium {
    opacity: 1;
}

/* Gallery Caption */
.gallery-caption-premium {
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item-premium:hover .gallery-caption-premium {
    transform: translateY(0);
}

.gallery-caption-premium h5 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-caption-premium p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Gallery Icon */
.gallery-icon-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item-premium:hover .gallery-icon-premium {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.gallery-icon-premium:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(0deg);
}

/* Category Badge */
.gallery-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item-premium:hover .gallery-category-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item-premium {
        height: 300px;
    }
}

/* ===== PREMIUM BLOG SECTION ===== */
.blog-section-premium {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.blog-bg-element {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Blog Card Premium */
.blog-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Blog Image */
.blog-img-premium {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-img-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-premium:hover .blog-img-premium img {
    transform: scale(1.15) rotate(2deg);
}

/* Blog Category Badge */
.blog-category-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-card-premium:hover .blog-category-premium {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Reading Time Badge */
.blog-reading-time {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.blog-card-premium:hover .blog-reading-time {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Content */
.blog-content-premium {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Blog Meta */
.blog-meta-premium {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.7;
}

.blog-meta-premium span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-premium i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Blog Title */
.blog-title-premium {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title-premium a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

/* Blog Excerpt */
.blog-excerpt-premium {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Footer */
.blog-footer-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

/* Author Info */
.blog-author-premium {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar-premium {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name-premium {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

/* Read More Link */
.blog-read-more-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more-premium i {
    transition: transform 0.3s ease;
}

.blog-read-more-premium:hover {
    color: var(--primary-dark);
}

.blog-read-more-premium:hover i {
    transform: translateX(5px);
}

/* View All Button */
.btn-view-all-premium {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(42, 109, 255, 0.3);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-view-all-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(42, 109, 255, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-img-premium {
        height: 220px;
    }

    .blog-content-premium {
        padding: 1.5rem;
    }

    .blog-title-premium {
        font-size: 1.2rem;
    }
}

/* ===== PREMIUM PRICING SECTION ===== */
.pricing-section-premium {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.pricing-bg-shape {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Pricing Card Premium */
.pricing-card-premium {
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pricing-card-premium:hover::before {
    transform: scaleX(1);
}

.pricing-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Featured Card */
.pricing-card-premium.featured {
    background: linear-gradient(135deg, #2a6dff 0%, #1e54d4 100%);
    color: white;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 50px rgba(42, 109, 255, 0.3);
}

.pricing-card-premium.featured::before {
    display: none;
}

.pricing-card-premium.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 35px 70px rgba(42, 109, 255, 0.4);
}

/* Popular Badge */
.pricing-badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.pricing-card-premium.featured .pricing-badge-premium {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Pricing Header */
.pricing-header-premium {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card-premium.featured .pricing-header-premium {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pricing-card-premium.featured .pricing-plan-name {
    color: white;
}

.pricing-plan-desc {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.pricing-card-premium.featured .pricing-plan-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Amount */
.pricing-amount-premium {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card-premium.featured .pricing-currency {
    color: white;
}

.pricing-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card-premium.featured .pricing-value {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

.pricing-card-premium.featured .pricing-period {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Features */
.pricing-features-premium {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features-premium li {
    padding: 0.85rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pricing-card-premium.featured .pricing-features-premium li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features-premium li:last-child {
    border-bottom: none;
}

.pricing-features-premium li i {
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.pricing-card-premium.featured .pricing-features-premium li i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-features-premium li.disabled {
    opacity: 0.4;
}

.pricing-features-premium li.disabled i {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
}

.pricing-card-premium.featured .pricing-features-premium li.disabled i {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Pricing Button */
.btn-pricing-premium {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.btn-pricing-premium:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 109, 255, 0.3);
}

.btn-pricing-premium i {
    transition: transform 0.3s ease;
}

.btn-pricing-premium:hover i {
    transform: translateX(5px);
}

/* Featured Card Button */
.pricing-card-premium.featured .btn-pricing-premium {
    background: white;
    color: var(--primary);
    border-color: white;
}

.pricing-card-premium.featured .btn-pricing-premium:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card-premium.featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }

    .pricing-card-premium.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .pricing-card-premium {
        padding: 2rem;
    }

    .pricing-value {
        font-size: 3rem;
    }
}

/* ===== PREMIUM TESTIMONIALS SECTION ===== */
.testimonials-section-premium {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.testimonials-bg-decoration {
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Testimonial Card Premium */
.testimonial-card-premium {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.testimonial-card-premium:hover::before {
    opacity: 0.03;
}

.testimonial-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.testimonial-card-premium:hover .testimonial-quote-icon {
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
    background: var(--primary);
    color: white;
}

/* Rating Stars */
.testimonial-rating-premium {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.testimonial-rating-premium i {
    color: #fbbf24;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.testimonial-card-premium:hover .testimonial-rating-premium i {
    transform: scale(1.15);
}

.testimonial-rating-premium i:nth-child(1) {
    transition-delay: 0s;
}

.testimonial-rating-premium i:nth-child(2) {
    transition-delay: 0.05s;
}

.testimonial-rating-premium i:nth-child(3) {
    transition-delay: 0.1s;
}

.testimonial-rating-premium i:nth-child(4) {
    transition-delay: 0.15s;
}

.testimonial-rating-premium i:nth-child(5) {
    transition-delay: 0.2s;
}

/* Testimonial Content */
.testimonial-content-premium {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-light);
    transition: border-color 0.3s ease;
}

.testimonial-card-premium:hover .testimonial-content-premium {
    border-left-color: var(--primary);
}

/* Author Section */
.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar-premium {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card-premium:hover .testimonial-avatar-premium {
    border-color: var(--primary);
    transform: scale(1.1);
}

.testimonial-avatar-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    flex-grow: 1;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.testimonial-card-premium:hover .testimonial-author-name {
    color: var(--primary);
}

.testimonial-author-meta {
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-author-meta i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* Verified Badge */
.testimonial-verified-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.testimonial-card-premium:hover .testimonial-verified-badge {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-verified-badge i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card-premium {
        padding: 2rem;
    }

    .testimonial-content-premium {
        font-size: 1rem;
    }

    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ===== PREMIUM CTA SECTION ===== */
.cta-section-premium {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #2a6dff 0%, #1e54d4 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.cta-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.cta-floating-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-floating-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.cta-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-badge-premium {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-title-premium {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-description-premium {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-buttons-premium {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-cta-primary {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    background: white;
    color: var(--primary);
    border: 2px solid white;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

.btn-cta-secondary {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-5px);
}

.btn-cta-secondary i {
    transition: transform 0.3s ease;
}

.btn-cta-secondary:hover i {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title-premium {
        font-size: 2rem;
    }

    .cta-description-premium {
        font-size: 1.1rem;
    }

    .cta-buttons-premium {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}



/* ===== PREMIUM HERO CAROUSEL ===== */
.hero-carousel-item {
    height: 90vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(42, 109, 255, 0.5) 100%);
    display: flex;
    align-items: center;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulseOverlay 15s infinite ease-in-out;
}

@keyframes pulseOverlay {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Premium Badge */
.hero-carousel-item .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.7rem 1.5rem !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Title */
.hero-carousel-item h1 {
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description */
.hero-carousel-item .lead {
    animation: fadeInUp 0.8s ease 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    line-height: 1.7;
}

/* Premium Buttons */
.hero-carousel-item .btn {
    animation: fadeInUp 0.8s ease 0.6s both;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    border-width: 2px;
}

.hero-carousel-item .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-carousel-item .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-carousel-item .btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-carousel-item .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 40px;
    border-radius: 10px;
    background-color: white;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* ===== PREMIUM ZIG-ZAG SECTION ===== */
.zig-zag-section-premium {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.zig-zag-section-premium .row {
    margin-bottom: 6rem;
}

.zig-zag-section-premium .row:last-child {
    margin-bottom: 0;
}

/* Premium Image Wrapper */
.zig-zag-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zig-zag-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 109, 255, 0.1) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zig-zag-img-wrapper:hover::before {
    opacity: 1;
}

.zig-zag-img-wrapper:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.zig-zag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.zig-zag-img-wrapper:hover .zig-zag-img {
    transform: scale(1.1);
}

/* Premium Content */
.zig-zag-content-premium h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.zig-zag-content-premium .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Premium List */
.premium-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.premium-feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.premium-feature-list li:last-child {
    border-bottom: none;
}

.premium-feature-list li:hover {
    padding-left: 10px;
    color: var(--primary);
}

.premium-feature-list li i {
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.premium-feature-list li:hover i {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Comfort Icons */
.comfort-icons-premium {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.comfort-icon-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    flex: 1;
}

.comfort-icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.comfort-icon-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.comfort-icon-item:hover i {
    transform: scale(1.2);
    color: var(--secondary);
}

.comfort-icon-item p {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

/* Premium Button */
.btn-premium-outline {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-premium-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 109, 255, 0.3);
}

.btn-premium-outline i {
    transition: transform 0.3s ease;
}

.btn-premium-outline:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .zig-zag-section-premium .row {
        margin-bottom: 4rem;
    }

    .zig-zag-content-premium h2 {
        font-size: 2rem;
    }

    .comfort-icons-premium {
        flex-wrap: wrap;
    }

    .comfort-icon-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .zig-zag-section-premium {
        padding: 80px 0;
    }

    .comfort-icon-item {
        flex: 1 1 100%;
    }
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-carousel-item {
        height: 70vh;
        min-height: 500px;
    }

    .hero-carousel-item h1 {
        font-size: 2.5rem !important;
    }

    .hero-carousel-item .lead {
        font-size: 1.1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }
}

/* ===== PREMIUM ACCORDION SERVICES SECTION ===== */
.services-accordion-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-accordion-premium::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Premium Accordion Item */
.accordion-item-premium {
    background: white;
    border: none !important;
    border-radius: 20px !important;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item-premium:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Accordion Header */
.accordion-header-premium {
    border: none;
}

.accordion-button-premium {
    background: white;
    border: none;
    padding: 1.75rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-button-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.accordion-button-premium:not(.collapsed)::before {
    transform: scaleY(1);
}

.accordion-button-premium:not(.collapsed) {
    background: linear-gradient(135deg, rgba(42, 109, 255, 0.05) 0%, rgba(42, 109, 255, 0.02) 100%);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button-premium:focus {
    box-shadow: none;
    border: none;
}

.accordion-button-premium::after {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button-premium:not(.collapsed)::after {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

/* Service Icon */
.service-icon-premium {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.service-icon-premium i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.accordion-button-premium:not(.collapsed) .service-icon-premium {
    background: var(--primary);
    transform: scale(1.1);
}

.accordion-button-premium:not(.collapsed) .service-icon-premium i {
    color: white;
}

/* Accordion Body */
.accordion-body-premium {
    padding: 2rem;
    background: white;
}

.accordion-body-premium p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Service Features List */
.service-features-premium {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-features-premium li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text);
    padding: 0.75rem;
    background: rgba(42, 109, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-features-premium li:hover {
    background: rgba(42, 109, 255, 0.05);
    transform: translateX(5px);
}

.service-features-premium li i {
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Decorative Icon */
.service-decorative-icon {
    position: relative;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.accordion-item-premium:hover .service-decorative-icon {
    opacity: 0.15;
    transform: scale(1.1) rotate(10deg);
}

.service-decorative-icon i {
    font-size: 8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .services-accordion-premium {
        padding: 80px 0;
    }

    .accordion-button-premium {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }

    .service-icon-premium {
        width: 40px;
        height: 40px;
    }

    .service-icon-premium i {
        font-size: 1.2rem;
    }

    .accordion-body-premium {
        padding: 1.5rem;
    }

    .service-features-premium {
        grid-template-columns: 1fr;
    }

    .service-decorative-icon i {
        font-size: 5rem;
    }
}

/* ===== PREMIUM SERVICES GRID SECTION ===== */
.services-grid-premium {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-grid-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Service Card */
.service-card-grid {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card-grid:hover::before {
    transform: scaleX(1);
}

.service-card-grid:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Service Icon Circle */
.service-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(42, 109, 255, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.4s ease;
}

.service-card-grid:hover .service-icon-circle {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(10deg);
}

.service-card-grid:hover .service-icon-circle::after {
    opacity: 0.3;
    transform: scale(1.3) rotate(-10deg);
}

.service-icon-circle i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.service-card-grid:hover .service-icon-circle i {
    -webkit-text-fill-color: white;
    transform: scale(1.1);
}

/* Service Title */
.service-title-grid {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-grid:hover .service-title-grid {
    color: var(--primary);
}

/* Service Description */
.service-desc-grid {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Service Features */
.service-features-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features-grid li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.service-features-grid li:hover {
    padding-left: 10px;
    color: var(--primary);
}

.service-features-grid li i {
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-features-grid li:hover i {
    background: #22c55e;
    color: white;
    transform: scale(1.2);
}

/* Learn More Link */
.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-learn-more i {
    transition: transform 0.3s ease;
}

.service-learn-more:hover {
    gap: 12px;
    color: var(--secondary);
}

.service-learn-more:hover i {
    transform: translateX(5px);
}

/* Number Badge */
.service-number-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(42, 109, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.service-card-grid:hover .service-number-badge {
    opacity: 1;
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .services-grid-premium {
        padding: 80px 0;
    }

    .service-card-grid {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .service-icon-circle {
        width: 70px;
        height: 70px;
    }

    .service-icon-circle i {
        font-size: 2rem;
    }

    .service-title-grid {
        font-size: 1.3rem;
    }
}

/* ===== PREMIUM TESTIMONIALS CAROUSEL ===== */
.testimonials-carousel-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, #2a6dff 0%, #4ecdc4 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-premium::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-carousel-premium::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Testimonial Card */
.testimonial-card-carousel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Quote Icon */
.testimonial-quote-icon-carousel {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(42, 109, 255, 0.3);
}

.testimonial-quote-icon-carousel i {
    font-size: 1.5rem;
    color: white;
}

/* Patient Image */
.testimonial-patient-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

/* Star Rating */
.testimonial-stars-carousel {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.testimonial-stars-carousel i {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Testimonial Text */
.testimonial-text-carousel {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Patient Info */
.testimonial-patient-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-patient-type {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

/* Carousel Controls */
.testimonial-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-carousel-btn:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

/* Carousel Indicators */
.testimonial-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    width: 40px;
    border-radius: 10px;
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-carousel-premium {
        padding: 80px 0;
    }

    .testimonial-card-carousel {
        padding: 2rem 1.5rem;
    }

    .testimonial-text-carousel {
        font-size: 1rem;
    }
}

/* ===== PREMIUM FOOTER ===== */
.footer-premium {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-premium::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 109, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Footer Brand */
.footer-brand-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-brand-premium:hover {
    color: var(--primary);
}

.footer-brand-premium i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Social Icons */
.footer-social-premium {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
}

/* Footer Section Title */
.footer-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

/* Footer Links */
.footer-links-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-premium li {
    margin-bottom: 0.75rem;
}

.footer-links-premium a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-premium a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

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

.footer-links-premium a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(42, 109, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-text {
    flex: 1;
    line-height: 1.6;
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.footer-newsletter h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.75rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 109, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom-premium {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom-premium p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-premium {
        padding: 60px 0 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-social-premium {
        justify-content: center;
    }

    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===== COMPREHENSIVE RESPONSIVE STYLES ===== */

/* Tablet and Below (768px) */
@media (max-width: 768px) {

    /* Hero Sections */
    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-section,
    .hero-section-2,
    .page-hero {
        padding: 100px 0 60px !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }

    /* Premium Appointment Box */
    .premium-appointment-box {
        margin-top: 2rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    /* Feature Cards */
    .feature-card,
    .feature-card-2 {
        margin-bottom: 1.5rem;
    }

    /* Service Tabs */
    .premium-tab-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .premium-tab-link {
        width: 100%;
        justify-content: center;
    }

    /* Service Images */
    .service-img-premium {
        margin-bottom: 2rem;
    }

    /* Doctor Cards */
    .team-card-premium,
    .doctor-card {
        margin-bottom: 1.5rem;
    }

    .doctor-image {
        height: 300px;
    }

    /* Process Steps */
    .process-step-premium {
        margin-bottom: 2rem;
    }

    .step-icon-premium {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .step-number-premium {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Gallery */
    .gallery-item-premium {
        margin-bottom: 1rem;
    }

    /* Blog Cards */
    .blog-card-premium {
        margin-bottom: 1.5rem;
    }

    /* Pricing Cards */
    .pricing-card-premium {
        margin-bottom: 1.5rem;
    }

    .pricing-features-premium {
        min-height: auto;
    }

    /* Testimonials */
    .testimonial-card-premium {
        margin-bottom: 1.5rem;
    }

    .testimonial-avatar-premium {
        width: 60px;
        height: 60px;
    }

    /* CTA Section */
    .cta-section-premium {
        padding: 60px 0 !important;
    }

    .cta-content-premium h2 {
        font-size: 2rem !important;
    }

    /* About Section */
    .about-image-wrapper {
        margin-bottom: 2rem;
    }

    .experience-badge {
        position: static;
        margin-top: 1rem;
        transform: none;
    }

    /* Forms */
    .appointment-form,
    .premium-appointment-box {
        padding: 1.5rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Background Shapes - Hide on mobile for better performance */
    .bg-shape,
    .about-bg-shape-1,
    .about-bg-shape-2,
    .service-bg-shape-1,
    .service-bg-shape-2,
    .doctor-bg-shape,
    .process-bg-decoration,
    .process-bg-decoration-2,
    .gallery-bg-pattern,
    .blog-bg-element,
    .pricing-bg-shape,
    .testimonials-bg-decoration,
    .cta-bg-pattern,
    .cta-floating-shape {
        display: none;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {

    /* Typography */
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    .lead {
        font-size: 1rem;
    }

    /* Hero Sections */
    .hero-section,
    .hero-section-2,
    .page-hero {
        padding: 80px 0 40px !important;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    /* Stats */
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Feature Icons */
    .feature-icon,
    .feature-icon-2,
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Service Features Grid */
    .service-features-grid {
        grid-template-columns: 1fr;
    }

    /* Process Steps */
    .step-icon-premium {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .step-number-premium {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-title-premium {
        font-size: 1.2rem;
    }

    /* Pricing */
    .pricing-price-premium {
        font-size: 2.5rem;
    }

    /* Testimonials */
    .testimonial-text-premium {
        font-size: 0.95rem;
    }

    .testimonial-rating-premium {
        font-size: 0.9rem;
    }

    /* CTA */
    .cta-section-premium {
        padding: 40px 0 !important;
    }

    .cta-content-premium h2 {
        font-size: 1.75rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Forms */
    .appointment-form,
    .premium-appointment-box {
        padding: 1.25rem;
    }

    .form-control {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Spacing */
    section {
        padding: 40px 0;
    }

    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Large Tablets (992px and below) */
@media (max-width: 992px) {

    /* Hero */
    .hero-content h1 {
        font-size: 3rem;
    }

    /* Premium Tabs */
    .premium-tab-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .premium-tab-link {
        flex: 1 1 45%;
        min-width: 200px;
    }

    /* Service Images */
    .service-img-premium img {
        max-height: 400px;
        object-fit: cover;
    }

    /* Doctor Cards */
    .team-card-premium {
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }

    /* Process Connector */
    .process-connector {
        display: none;
    }

    /* Gallery Grid */
    .gallery-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog Grid */
    .blog-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .navbar-brand {
        font-size: 1.3rem !important;
    }

    .feature-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pricing-card-premium {
        padding: 1.5rem;
    }

    .testimonial-card-premium {
        padding: 1.5rem;
    }

    .gallery-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 600px) and (orientation: landscape) {

    .hero-section,
    .hero-section-2,
    .page-hero {
        padding: 60px 0 40px !important;
    }

    .navbar {
        padding: 5px 0;
    }

    .navbar.scrolled {
        padding: 5px 0;
    }
}

/* ===== HERO SECTION SPECIFIC RESPONSIVE STYLES ===== */

/* Hero Image Wrapper and Floating Cards */
@media (max-width: 768px) {

    /* Hero Image Container */
    .hero-image-container {
        margin-top: 3rem;
    }

    .hero-image-wrapper {
        position: relative;
        padding: 20px;
    }

    .hero-bg-shape {
        display: none;
    }

    /* Floating Cards - Make them smaller and reposition */
    .floating-card {
        padding: 12px 15px !important;
        max-width: 280px;
    }

    .floating-card.card-1 {
        top: 10px !important;
        left: 10px !important;
        right: auto !important;
    }

    .floating-card.card-2 {
        bottom: 10px !important;
        right: 10px !important;
        left: auto !important;
    }

    .floating-card h6 {
        font-size: 0.9rem;
    }

    .floating-card small {
        font-size: 0.75rem;
    }

    /* Icon boxes in floating cards */
    .floating-card .icon-box {
        width: 35px !important;
        height: 35px !important;
    }

    .floating-card .icon-box i {
        font-size: 1rem !important;
    }

    /* Avatar group adjustments */
    .avatar-group img {
        width: 35px !important;
        height: 35px !important;
    }

    .avatar-group .rounded-circle.bg-primary {
        width: 35px !important;
        height: 35px !important;
        font-size: 11px !important;
        left: 50px !important;
    }

    .avatar-group+div {
        margin-left: 55px !important;
    }

    /* Hero Stats - Already handled but adding specific adjustments */
    .hero-stats {
        margin-top: 2rem !important;
        flex-wrap: wrap;
        gap: 1.5rem !important;
    }

    .hero-stats .stat-item {
        flex: 1 1 45%;
        min-width: 120px;
    }

    .hero-stats h3 {
        font-size: 1.5rem;
    }

    /* Button group in hero */
    .hero-content .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .hero-content .btn-lg {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    /* Further reduce floating card sizes */
    .floating-card {
        padding: 10px 12px !important;
        max-width: 240px;
    }

    .floating-card.card-1 {
        top: 5px !important;
        left: 5px !important;
    }

    .floating-card.card-2 {
        bottom: 5px !important;
        right: 5px !important;
    }

    .floating-card h6 {
        font-size: 0.85rem;
    }

    .floating-card small {
        font-size: 0.7rem;
    }

    /* Even smaller icons */
    .floating-card .icon-box {
        width: 30px !important;
        height: 30px !important;
        padding: 5px !important;
    }

    .floating-card .icon-box i {
        font-size: 0.9rem !important;
    }

    /* Smaller avatars */
    .avatar-group img {
        width: 30px !important;
        height: 30px !important;
    }

    .avatar-group img.position-absolute {
        left: 22px !important;
    }

    .avatar-group .rounded-circle.bg-primary {
        width: 30px !important;
        height: 30px !important;
        font-size: 10px !important;
        left: 44px !important;
    }

    .avatar-group+div {
        margin-left: 48px !important;
    }

    .avatar-group+div .small {
        font-size: 0.7rem !important;
    }

    /* Hero stats - stack vertically on very small screens */
    .hero-stats {
        gap: 1rem !important;
    }

    .hero-stats .stat-item {
        flex: 1 1 100%;
        text-align: center;
    }

    .hero-stats h3 {
        font-size: 1.3rem;
    }

    .hero-stats p {
        font-size: 0.85rem;
    }

    /* Hero buttons */
    .hero-content .btn-lg {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    /* Hide floating cards on very small screens to reduce clutter */
    .floating-card {
        display: none;
    }

    /* Or alternatively, make them even smaller if you want to keep them */
    /* Uncomment below and comment out the display: none above if you prefer */
    /*
    .floating-card {
        padding: 8px 10px !important;
        max-width: 200px;
        font-size: 0.75rem;
    }
    */

    .hero-image-wrapper {
        padding: 10px;
    }
}

/* ===== HERO SECTION 2 (WITH APPOINTMENT FORM) RESPONSIVE STYLES ===== */

/* Tablet and Below */
@media (max-width: 992px) {
    .hero-section-2 {
        padding: 100px 0 60px;
    }

    .hero-section-2 .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-section-2 .hero-badge {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section-2 .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-section-2 .stat-item {
        flex: 1 1 30%;
        min-width: 120px;
        text-align: center;
    }

    .premium-appointment-box {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section-2 {
        padding: 80px 0 50px;
    }

    .hero-section-2 h1 {
        font-size: 2.2rem;
    }

    .hero-section-2 .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem !important;
    }

    .hero-section-2 .stat-item {
        flex: 1 1 45%;
    }

    .hero-section-2 .stat-number {
        font-size: 2rem;
    }

    .hero-section-2 .stat-label {
        font-size: 0.9rem;
    }

    /* Premium Appointment Box */
    .premium-appointment-box {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .premium-appointment-box h3 {
        font-size: 1.5rem;
    }

    .premium-appointment-box .form-control,
    .premium-appointment-box .form-select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .premium-appointment-box .input-group-text {
        padding: 12px 15px;
    }

    .premium-appointment-box .btn {
        padding: 14px 20px !important;
        font-size: 1rem;
    }

    /* Button group */
    .hero-section-2 .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-section-2 .btn {
        padding: 12px 25px;
    }
}

@media (max-width: 576px) {
    .hero-section-2 {
        padding: 70px 0 40px;
    }

    .hero-section-2 h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-section-2 .lead {
        font-size: 1rem;
    }

    .hero-section-2 .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .hero-section-2 .hero-stats {
        flex-direction: column;
        gap: 1rem !important;
    }

    .hero-section-2 .stat-item {
        flex: 1 1 100%;
        width: 100%;
    }

    .hero-section-2 .stat-number {
        font-size: 1.8rem;
    }

    .hero-section-2 .stat-label {
        font-size: 0.85rem;
    }

    /* Premium Appointment Box */
    .premium-appointment-box {
        padding: 1.5rem 1rem;
    }

    .premium-appointment-box h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem !important;
    }

    .premium-appointment-box .form-control,
    .premium-appointment-box .form-select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .premium-appointment-box .input-group-text {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .premium-appointment-box .btn {
        padding: 12px 18px !important;
        font-size: 0.95rem;
    }

    .premium-appointment-box .row.g-3 {
        gap: 0.75rem !important;
    }

    /* Buttons */
    .hero-section-2 .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-section-2 .d-flex.gap-3 {
        gap: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section-2 h1 {
        font-size: 1.6rem;
    }

    .premium-appointment-box {
        padding: 1.25rem 0.875rem;
    }

    .premium-appointment-box h3 {
        font-size: 1.2rem;
    }

    .premium-appointment-box .form-control,
    .premium-appointment-box .form-select,
    .premium-appointment-box .input-group-text {
        padding: 9px 10px;
        font-size: 0.85rem;
    }
}

/* ===== HERO CAROUSEL SECTION STYLES ===== */

/* Hero Carousel Item */
.hero-carousel-item {
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(42, 109, 255, 0.3) 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(42, 109, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    width: 40px;
    border-radius: 6px;
    background-color: var(--primary);
    border-color: white;
}

/* Responsive Styles for Hero Carousel */
@media (max-width: 992px) {
    .hero-carousel-item {
        min-height: 600px;
        padding: 100px 0 60px;
    }

    .hero-overlay {
        padding: 100px 0 60px;
    }

    .hero-carousel-item h1 {
        font-size: 2.5rem;
    }

    .hero-carousel-item .lead {
        font-size: 1.1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-carousel-item {
        min-height: 500px;
        padding: 80px 0 50px;
    }

    .hero-overlay {
        padding: 80px 0 50px;
    }

    .hero-carousel-item h1 {
        font-size: 2rem;
    }

    .hero-carousel-item .lead {
        font-size: 1rem;
        width: 100% !important;
        margin-left: 0 !important;
    }

    .hero-carousel-item .badge {
        font-size: 0.85rem;
        padding: 6px 15px !important;
    }

    .hero-carousel-item .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .hero-carousel-item .btn-lg {
        padding: 12px 25px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .carousel-indicators button.active {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .hero-carousel-item {
        min-height: 450px;
        padding: 70px 0 40px;
    }

    .hero-overlay {
        padding: 70px 0 40px;
    }

    .hero-carousel-item h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-carousel-item .lead {
        font-size: 0.95rem;
        margin-bottom: 2rem !important;
    }

    .hero-carousel-item .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .hero-carousel-item .btn.me-3 {
        margin-right: 0 !important;
    }

    /* Center all carousel content on mobile */
    .hero-carousel-item .row {
        text-align: center !important;
    }

    .hero-carousel-item .row.justify-content-end {
        justify-content: center !important;
    }

    .hero-carousel-item .text-end {
        text-align: center !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-carousel-item {
        min-height: 400px;
        padding: 60px 0 30px;
    }

    .hero-overlay {
        padding: 60px 0 30px;
    }

    .hero-carousel-item h1 {
        font-size: 1.5rem;
    }

    .hero-carousel-item .badge {
        font-size: 0.75rem;
        padding: 5px 12px !important;
    }

    .hero-carousel-item .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* ===== BLOG DETAILS PREMIUM STYLES ===== */

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Premium Hero Section */
.blog-details-hero-premium {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 109, 255, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
    z-index: 1;
}

.blog-details-hero-premium .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb Premium */
.breadcrumb-premium {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb-premium .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-premium .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    padding: 0 0.75rem;
    color: var(--text);
}

.breadcrumb-premium .breadcrumb-item a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb-premium .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

/* Blog Header Premium */
.blog-details-header-premium {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-category-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(42, 109, 255, 0.15);
    border: 2px solid rgba(42, 109, 255, 0.1);
}

.blog-details-title-premium {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

.blog-subtitle-premium {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Author Meta Premium */
.blog-details-meta-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.author-meta-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.author-meta-premium img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-meta-premium div {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.author-role {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.blog-meta-items-premium {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-meta-item-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
}

.blog-meta-item-premium i {
    color: var(--primary);
}

/* Blog Content Section */
.blog-details-section-premium {
    padding: 80px 0;
    background: #fff;
}

/* Featured Image Premium */
.blog-featured-image-premium {
    margin-bottom: 3rem;
    position: relative;
}

.blog-featured-image-premium img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text);
    font-style: italic;
}

.image-caption i {
    color: var(--primary);
}

/* Blog Content Premium */
.blog-content-premium {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-intro {
    margin-bottom: 2.5rem;
}

.lead-premium {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0;
}

/* Drop Cap */
.drop-cap {
    float: left;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--primary);
    font-family: 'DM Sans', sans-serif;
}

/* Key Takeaways Box */
.key-takeaways {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.key-takeaways h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.key-takeaways ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.key-takeaways li {
    margin-bottom: 0.5rem;
    color: #856404;
}

/* Headings with Icons */
.blog-content-premium h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-content-premium h2 i {
    color: var(--primary);
    font-size: 1.75rem;
}

.blog-content-premium h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content-premium h3 i {
    font-size: 1.25rem;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.styled-list li i {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.technique-list {
    margin-top: 1rem;
}

/* Step Cards */
.step-card {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid rgba(42, 109, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 109, 255, 0.15);
    border-color: var(--primary);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(42, 109, 255, 0.3);
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Premium Quote */
.premium-quote {
    position: relative;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 5px solid var(--primary);
    padding: 2.5rem 2.5rem 2.5rem 4rem;
    margin: 3rem 0;
    border-radius: 12px;
    font-style: italic;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.premium-quote p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.premium-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

/* Info Boxes */
.info-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid;
}

.info-box i {
    flex-shrink: 0;
    font-size: 2rem;
    margin-top: 0.25rem;
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-box p {
    margin-bottom: 0;
}

.info-box.warning {
    background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
    border-color: #ffc107;
}

.info-box.warning i,
.info-box.warning h4 {
    color: #856404;
}

.info-box.success {
    background: linear-gradient(135deg, #d4edda 0%, #e7f5e9 100%);
    border-color: #28a745;
}

.info-box.success i,
.info-box.success h4 {
    color: #155724;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border: 2px solid rgba(42, 109, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 109, 255, 0.15);
    border-color: var(--primary);
}

.tip-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.tip-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.tip-card p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0;
}

/* Conclusion Box */
.conclusion-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    border: 2px solid rgba(42, 109, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.conclusion-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.conclusion-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Tags & Share Premium */
.blog-tags-share-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.blog-tags-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-tags-premium i {
    color: var(--primary);
    font-size: 1.25rem;
}

.tags-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag-premium {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.tag-premium:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.blog-share-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-share-premium span {
    font-weight: 600;
    color: var(--dark);
}

.share-buttons-premium {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy {
    background: #6c757d;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Author Bio Premium */
.author-bio-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid rgba(42, 109, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.author-bio-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.author-avatar-premium {
    position: relative;
    flex-shrink: 0;
}

.author-avatar-premium img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 3px solid white;
}

.author-info-premium h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--dark);
}

.verified-text {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.author-title-premium {
    display: block;
    color: var(--text);
    margin-bottom: 1rem;
}

.author-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.author-stats .stat {
    text-align: center;
}

.author-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-stats .stat span {
    font-size: 0.85rem;
    color: var(--text);
}

.author-bio-text {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.author-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-social-premium {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Comments Section Premium */
.comments-section-premium {
    margin: 3rem 0;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.comments-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-count {
    color: var(--primary);
}

.comment-sort select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1rem;
}

/* Comment Premium */
.comment-premium {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.comment-premium:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.comment-premium.reply {
    margin-left: 4rem;
    margin-top: 1.5rem;
    background: #f8f9ff;
}

.comment-avatar-premium {
    position: relative;
    flex-shrink: 0;
}

.comment-avatar-premium img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.comment-content-premium {
    flex: 1;
}

.comment-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-header-premium h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.comment-date-premium {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.comment-content-premium p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-action-btn {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.comment-action-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.load-more-comments {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 2px dashed var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.load-more-comments:hover {
    background: var(--primary-light);
    border-style: solid;
}

/* Comment Form Premium */
.comment-form-premium {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid rgba(42, 109, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.comment-form-premium h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-subtitle {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.comment-form-premium label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

/* Related Posts Premium */
.related-posts-premium {
    margin: 3rem 0;
}

.related-posts-premium h3 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-posts-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.related-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h5 {
    margin-bottom: 1rem;
}

.related-post-content h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-post-content h5 a:hover {
    color: var(--primary);
}

.post-meta-mini {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text);
}

.post-meta-mini span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Sidebar Premium */
.blog-sidebar-premium {
    position: sticky;
    top: 100px;
}

.sidebar-widget-premium {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.sidebar-widget-premium:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.sidebar-widget-premium h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Table of Contents */
.toc-widget {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.toc-list a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 1rem;
}

.toc-list a i {
    font-size: 0.75rem;
}

/* Recent Posts Premium */
.recent-post-premium {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
}

.recent-post-premium:hover {
    background: var(--primary-light);
}

.recent-post-number {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.recent-post-image-premium {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.recent-post-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content-premium {
    flex: 1;
}

.recent-post-content-premium h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-content-premium h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-content-premium h5 a:hover {
    color: var(--primary);
}

.post-meta-small {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text);
}

.post-meta-small span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Categories Premium */
.category-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-premium li {
    margin-bottom: 0.75rem;
}

.category-list-premium a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9ff;
    border-radius: 10px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.category-list-premium a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.category-list-premium a span:first-child {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-count-premium {
    background: white;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-list-premium a:hover .category-count-premium {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Newsletter Premium */
.newsletter-widget-premium {
    background: linear-gradient(135deg, var(--primary) 0%, #1a56e0 100%);
    color: white;
}

.newsletter-widget-premium h4,
.newsletter-widget-premium p {
    color: white;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.input-group-premium {
    position: relative;
    margin-bottom: 1rem;
}

.input-group-premium i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text);
}

.input-group-premium .form-control {
    padding-left: 3rem;
}

.privacy-text {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Social Follow Widget */
.social-follow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-follow-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-follow-btn.facebook {
    background: #1877f2;
}

.social-follow-btn.twitter {
    background: #1da1f2;
}

.social-follow-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-follow-btn.youtube {
    background: #ff0000;
}

.social-follow-btn i {
    font-size: 1.5rem;
}

.social-follow-btn div {
    text-align: left;
}

.social-follow-btn strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.social-follow-btn span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Floating Share Buttons */
.floating-share-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
}

.floating-share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.floating-share-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blog-sidebar-premium {
        position: static;
        margin-top: 3rem;
    }

    .floating-share-buttons {
        display: none;
    }

    .comment-premium.reply {
        margin-left: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-details-title-premium {
        font-size: 2rem;
    }

    .blog-subtitle-premium {
        font-size: 1.1rem;
    }

    .blog-details-meta-premium {
        flex-direction: column;
        gap: 1rem;
    }

    .author-bio-header {
        flex-direction: column;
        text-align: center;
    }

    .author-stats {
        justify-content: center;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .comment-premium {
        flex-direction: column;
    }

    .comment-premium.reply {
        margin-left: 0;
    }

    .blog-tags-share-premium {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-follow-grid {
        grid-template-columns: 1fr;
    }
}






/* ===== BLOG DETAILS PREMIUM STYLES ===== */

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Premium Hero Section */
.blog-details-hero-premium {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 109, 255, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
    z-index: 1;
}

.blog-details-hero-premium .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb Premium */
.breadcrumb-premium {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb-premium .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-premium .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    padding: 0 0.75rem;
    color: var(--text);
}

.breadcrumb-premium .breadcrumb-item a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb-premium .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

/* Blog Header Premium */
.blog-details-header-premium {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-category-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(42, 109, 255, 0.15);
    border: 2px solid rgba(42, 109, 255, 0.1);
}

.blog-details-title-premium {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

.blog-subtitle-premium {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Author Meta Premium */
.blog-details-meta-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.author-meta-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.author-meta-premium img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-meta-premium div {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.author-role {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.blog-meta-items-premium {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-meta-item-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
}

.blog-meta-item-premium i {
    color: var(--primary);
}

/* Blog Content Section */
.blog-details-section-premium {
    padding: 80px 0;
    background: #fff;
}

/* Featured Image Premium */
.blog-featured-image-premium {
    margin-bottom: 3rem;
    position: relative;
}

.blog-featured-image-premium img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text);
    font-style: italic;
}

.image-caption i {
    color: var(--primary);
}

/* Blog Content Premium */
.blog-content-premium {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-intro {
    margin-bottom: 2.5rem;
}

.lead-premium {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0;
}

/* Drop Cap */
.drop-cap {
    float: left;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--primary);
    font-family: 'DM Sans', sans-serif;
}

/* Key Takeaways Box */
.key-takeaways {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.key-takeaways h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.key-takeaways ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.key-takeaways li {
    margin-bottom: 0.5rem;
    color: #856404;
}

/* Headings with Icons */
.blog-content-premium h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-content-premium h2 i {
    color: var(--primary);
    font-size: 1.75rem;
}

.blog-content-premium h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content-premium h3 i {
    font-size: 1.25rem;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.styled-list li i {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.technique-list {
    margin-top: 1rem;
}

/* Step Cards */
.step-card {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid rgba(42, 109, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 109, 255, 0.15);
    border-color: var(--primary);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(42, 109, 255, 0.3);
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Premium Quote */
.premium-quote {
    position: relative;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 5px solid var(--primary);
    padding: 2.5rem 2.5rem 2.5rem 4rem;
    margin: 3rem 0;
    border-radius: 12px;
    font-style: italic;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.premium-quote p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.premium-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

/* Info Boxes */
.info-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid;
}

.info-box i {
    flex-shrink: 0;
    font-size: 2rem;
    margin-top: 0.25rem;
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.info-box p {
    margin-bottom: 0;
}

.info-box.warning {
    background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
    border-color: #ffc107;
}

.info-box.warning i,
.info-box.warning h4 {
    color: #856404;
}

.info-box.success {
    background: linear-gradient(135deg, #d4edda 0%, #e7f5e9 100%);
    border-color: #28a745;
}

.info-box.success i,
.info-box.success h4 {
    color: #155724;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    border: 2px solid rgba(42, 109, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 109, 255, 0.15);
    border-color: var(--primary);
}

.tip-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.tip-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.tip-card p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0;
}

/* Conclusion Box */
.conclusion-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    border: 2px solid rgba(42, 109, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.conclusion-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.conclusion-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Tags & Share Premium */
.blog-tags-share-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.blog-tags-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-tags-premium i {
    color: var(--primary);
    font-size: 1.25rem;
}

.tags-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag-premium {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.tag-premium:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.blog-share-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-share-premium span {
    font-weight: 600;
    color: var(--dark);
}

.share-buttons-premium {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy {
    background: #6c757d;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Author Bio Premium */
.author-bio-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid rgba(42, 109, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.author-bio-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.author-avatar-premium {
    position: relative;
    flex-shrink: 0;
}

.author-avatar-premium img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 3px solid white;
}

.author-info-premium h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--dark);
}

.verified-text {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.author-title-premium {
    display: block;
    color: var(--text);
    margin-bottom: 1rem;
}

.author-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.author-stats .stat {
    text-align: center;
}

.author-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-stats .stat span {
    font-size: 0.85rem;
    color: var(--text);
}

.author-bio-text {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.author-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-social-premium {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Comments Section Premium */
.comments-section-premium {
    margin: 3rem 0;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.comments-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-count {
    color: var(--primary);
}

.comment-sort select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1rem;
}

/* Comment Premium */
.comment-premium {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.comment-premium:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.comment-premium.reply {
    margin-left: 4rem;
    margin-top: 1.5rem;
    background: #f8f9ff;
}

.comment-avatar-premium {
    position: relative;
    flex-shrink: 0;
}

.comment-avatar-premium img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.comment-content-premium {
    flex: 1;
}

.comment-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-header-premium h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.comment-date-premium {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.comment-content-premium p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-action-btn {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.comment-action-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.load-more-comments {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 2px dashed var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.load-more-comments:hover {
    background: var(--primary-light);
    border-style: solid;
}

/* Comment Form Premium */
.comment-form-premium {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid rgba(42, 109, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.comment-form-premium h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-subtitle {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.comment-form-premium label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

/* Related Posts Premium */
.related-posts-premium {
    margin: 3rem 0;
}

.related-posts-premium h3 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-posts-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.related-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h5 {
    margin-bottom: 1rem;
}

.related-post-content h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-post-content h5 a:hover {
    color: var(--primary);
}

.post-meta-mini {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text);
}

.post-meta-mini span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Sidebar Premium */
.blog-sidebar-premium {
    position: sticky;
    top: 100px;
}

.sidebar-widget-premium {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.sidebar-widget-premium:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.sidebar-widget-premium h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Table of Contents */
.toc-widget {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.toc-list a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 1rem;
}

.toc-list a i {
    font-size: 0.75rem;
}

/* Recent Posts Premium */
.recent-post-premium {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
}

.recent-post-premium:hover {
    background: var(--primary-light);
}

.recent-post-number {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.recent-post-image-premium {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.recent-post-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content-premium {
    flex: 1;
}

.recent-post-content-premium h5 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-content-premium h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-content-premium h5 a:hover {
    color: var(--primary);
}

.post-meta-small {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text);
}

.post-meta-small span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Categories Premium */
.category-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-premium li {
    margin-bottom: 0.75rem;
}

.category-list-premium a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9ff;
    border-radius: 10px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.category-list-premium a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.category-list-premium a span:first-child {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-count-premium {
    background: white;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-list-premium a:hover .category-count-premium {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Newsletter Premium */
.newsletter-widget-premium {
    background: linear-gradient(135deg, var(--primary) 0%, #1a56e0 100%);
    color: white;
}

.newsletter-widget-premium h4,
.newsletter-widget-premium p {
    color: white;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.input-group-premium {
    position: relative;
    margin-bottom: 1rem;
}

.input-group-premium i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text);
}

.input-group-premium .form-control {
    padding-left: 3rem;
}

.privacy-text {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Social Follow Widget */
.social-follow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-follow-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-follow-btn.facebook {
    background: #1877f2;
}

.social-follow-btn.twitter {
    background: #1da1f2;
}

.social-follow-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-follow-btn.youtube {
    background: #ff0000;
}

.social-follow-btn i {
    font-size: 1.5rem;
}

.social-follow-btn div {
    text-align: left;
}

.social-follow-btn strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.social-follow-btn span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Floating Share Buttons */
.floating-share-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
}

.floating-share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.floating-share-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blog-sidebar-premium {
        position: static;
        margin-top: 3rem;
    }

    .floating-share-buttons {
        display: none;
    }

    .comment-premium.reply {
        margin-left: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-details-title-premium {
        font-size: 2rem;
    }

    .blog-subtitle-premium {
        font-size: 1.1rem;
    }

    .blog-details-meta-premium {
        flex-direction: column;
        gap: 1rem;
    }

    .author-bio-header {
        flex-direction: column;
        text-align: center;
    }

    .author-stats {
        justify-content: center;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .comment-premium {
        flex-direction: column;
    }

    .comment-premium.reply {
        margin-left: 0;
    }

    .blog-tags-share-premium {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-follow-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG PAGE PREMIUM STYLES ===== */

/* Blog Hero Premium */
.blog-hero-premium {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(42, 109, 255, 0.15);
    border: 2px solid rgba(42, 109, 255, 0.1);
    animation: fadeInDown 0.6s ease;
}

.hero-badge-premium i {
    font-size: 1.25rem;
}

.hero-title-premium {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1.5rem 0;
    color: var(--dark);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Enhanced Search Box */
.search-box-premium {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box-premium .search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.25rem;
    z-index: 2;
}

.search-box-premium .form-control {
    height: 65px;
    border-radius: 50px;
    border: 2px solid rgba(42, 109, 255, 0.2);
    padding: 0 140px 0 65px;
    font-size: 1.05rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.search-box-premium .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(42, 109, 255, 0.2);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(42, 109, 255, 0.4);
}

/* Blog Stats Premium */
.blog-stats-premium {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(42, 109, 255, 0.15);
}

.stat-item-premium i {
    font-size: 2rem;
    color: var(--primary);
}

.stat-item-premium strong {
    display: block;
    font-size: 1.75rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-item-premium span {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

/* Blog Filters Premium */
.blog-filters-premium {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filters-left h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text);
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: #f8f9ff;
    padding: 5px;
    border-radius: 12px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary);
    color: white;
}

.sort-select {
    padding: 0.75rem 1.25rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Filter Tags Premium */
.filter-tags-premium {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tag-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9ff;
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tag-premium i {
    font-size: 1.1rem;
    color: var(--primary);
}

.filter-tag-premium:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.filter-tag-premium.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.filter-tag-premium.active i {
    color: white;
}

/* Blog Grid Premium */
.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Blog Card Premium */
.blog-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-card-premium.featured {
    grid-column: span 2;
}

.blog-card-premium.featured .blog-card-image-premium {
    height: 400px;
}

.blog-card-image-premium {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-card-image-premium img {
    transform: scale(1.1);
}

/* Blog Card Badges */
.blog-card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.blog-card-badge.trending {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    animation: pulse 2s infinite;
}

.blog-card-badge.new {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.blog-card-category-premium {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

/* Blog Card Content Premium */
.blog-card-content-premium {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta-premium {
    margin-bottom: 1.5rem;
}

.author-info-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.author-info-mini img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.author-name-mini {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.author-verified {
    color: var(--primary);
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-stats i {
    color: var(--primary);
}

.blog-card-title-premium {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title-premium a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.blog-card-excerpt-premium {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Blog Card Footer Premium */
.blog-card-footer-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.read-more-premium {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more-premium:hover {
    gap: 1rem;
}

.read-more-premium i {
    transition: var(--transition);
}

.engagement-buttons {
    display: flex;
    gap: 0.5rem;
}

.engagement-btn {
    background: #f8f9ff;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

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

.engagement-btn i {
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-card-premium.featured {
        grid-column: span 1;
    }

    .blog-card-premium.featured .blog-card-image-premium {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .blog-hero-premium {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .hero-title-premium {
        font-size: 2.25rem;
    }

    .hero-subtitle-premium {
        font-size: 1.1rem;
    }

    .blog-stats-premium {
        gap: 1.5rem;
    }

    .stat-item-premium {
        padding: 1rem 1.5rem;
    }

    .filters-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filters-right {
        width: 100%;
        justify-content: space-between;
    }

    .blog-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card-footer-premium {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .engagement-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .search-box-premium .form-control {
        height: 55px;
        padding: 0 120px 0 55px;
        font-size: 0.95rem;
    }

    .search-btn {
        width: 45px;
        height: 45px;
    }

    .filter-tags-premium {
        gap: 0.75rem;
    }

    .filter-tag-premium {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FINAL FINISH & PREMIUM POLISH ===== */

/* 1. Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-tooth {
    font-size: 3rem;
    color: var(--primary);
    animation: bounce-loader 1.5s infinite ease-in-out, glow-loader 2s infinite alternate;
}

@keyframes bounce-loader {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow-loader {
    from {
        text-shadow: 0 0 5px rgba(42, 109, 255, 0.2);
    }

    to {
        text-shadow: 0 0 20px rgba(42, 109, 255, 0.6);
    }
}

/* 2. Back to Top */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    transform: translateY(20px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(42, 109, 255, 0.4);
}

/* 3. Floating Appointment FAB */
.fab-appointment {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

.fab-appointment.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.fab-btn {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.fab-btn:hover {
    transform: scale(1.1) rotate(15deg);
    color: white;
}

.fab-text {
    position: absolute;
    right: 75px;
    background: white;
    padding: 10px 18px;
    border-radius: 12px;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(15px);
    transition: var(--transition);
    pointer-events: none;
}

.fab-btn:hover .fab-text {
    opacity: 1;
    transform: translateX(0);
}

/* 4. Advanced Glass Navbar */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* 5. Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* 6. Premium Animation Helpers */
.hover-float {
    transition: var(--transition);
}

.hover-float:hover {
    transform: translateY(-10px);
}

.ls-1 {
    letter-spacing: 1px;
}

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

.bg-primary-light {
    background-color: rgba(42, 109, 255, 0.1) !important;
}

/* Final cleanup for dropdown markers */
.dropdown-toggle::after {
    display: none !important;
}

/* 7. Footer Social Icons */
.social-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon-box:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(42, 109, 255, 0.4);
}