/* Tajmeel Website - Exact Match to Image Design */

/* Photos Page Styles */
.photos-page {
    min-height: 100vh;
    background: #f4f4f4;
    padding: 80px 0;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.photos-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.photo-item img
{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.photo-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Loading and Error States */
.loading-container,
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loading-spinner i {
    font-size: 24px;
    color: #785944;
}

.loading-spinner p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.error-container i {
    font-size: 24px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.error-container p {
    font-size: 14px;
    color: #e74c3c;
    margin: 0;
}

/* Photos Page Responsive */
@media (max-width: 768px) {
    .photos-page {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
	width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: #f4f4f4;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Left Side - Hamburger Menu */
.header-left {
    flex: 0 0 auto;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10000;
    position: relative;
}

.hamburger-menu span {
    width: 24px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu:hover span {
    background: #333;
}

/* Hamburger menu animation */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Center Navigation */
.center-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 18px;
}

.nav-link:hover {
    color: #333;
}

/* Right Side - Icons */
.header-right {
    flex: 0 0 auto;
    display: flex;
    gap: 20px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #000;
    font-size: 18px;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: #333;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: #f4f4f4;
}

/* Home Hero Section - Exact Match to Image */
.home-hero-section {
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    background: #f4f4f4;
	max-width: 1200px;
}

.home-brand-title {
    font-size: 120px;
    font-weight: 900;
    color: #000;
    letter-spacing: 5px;
    line-height: 0.9;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.home-tagline {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.home-category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.home-category-btn {
    background: linear-gradient(to right, #785944, #9f7f66);
    color: #fff;
    border: none;
    padding: 20px 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    flex: 1;
    max-width: calc(100% / 6);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.home-category-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.home-category-btn:active {
    transform: translateY(0);
}

.home-search-container {
    display: flex;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.home-search-input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    background: #fff;
    font-size: 16px;
    color: #333;
    outline: none;
}

.home-search-input::placeholder {
    color: #666;
    font-weight: 400;
}

.home-search-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.home-search-btn:hover {
    background: #333;
}

.home-search-btn i {
    font-size: 18px;
}

/* Search Suggestions Dropdown */
.search-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background-color: #f8f8f8;
}

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

.suggestion-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Home Hero Section Responsive Design */
@media (max-width: 768px) {
    .home-hero-section {
        padding: 0px 15px;
    }
    
    .home-brand-container {
        display: none;
    }
    
    .home-brand-title {
        font-size: 60px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    
    .home-tagline {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .home-category-buttons {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .home-category-btn {
        min-width: 120px;
        padding: 12px 15px;
        font-size: 12px;
        max-width: calc(50% - 5px);
    }
    
    .home-search-container {
        max-width: 100%;
    }
    
    .home-search-input {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .home-search-btn {
        padding: 15px 20px;
        min-width: 50px;
    }
    
    .search-suggestions-dropdown {
        max-height: 250px;
    }
    
    .suggestion-item {
        padding: 10px 15px;
    }
    
    .suggestion-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .home-brand-title {
        font-size: 48px;
    }
    
    .home-tagline {
        font-size: 16px;
    }
    
    .home-category-buttons {
        align-items: center;
    }
    
    .home-category-btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Logo */
.brand-logo {
    margin-bottom: 30px;
}

.logo-text {
    font-size: 120px;
    font-weight: 900;
    color: #000;
    letter-spacing: -2px;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
}

/* Tagline */
.tagline {
    margin-bottom: 50px;
}

.tagline-text {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

/* Category Buttons */
.category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: linear-gradient(to right, #785944, #9f7f66);
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    flex: 1;
    max-width: calc(100% / 6);
}

.category-btn:hover {
    background: linear-gradient(to right, #9f7f66, #785944);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.category-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .center-nav {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Mobile Header Logo - Center position */
    .mobile-header-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
    }
    
    .header-left {
        flex: 0 0 auto;
    }
    
    .header-right {
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
    }
    
    /* Hide brand logo and tagline on mobile */
    .brand-logo {
        display: none;
    }
    
    .tagline {
        display: none;
    }
    
    .logo-text {
        font-size: 80px;
    }
    
    .tagline-text {
        font-size: 20px;
    }
    
    .category-buttons {
        gap: 10px;
    }
    
    .category-btn {
        padding: 12px 20px;
        font-size: 12px;
        min-width: 80px;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input {
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    
    .city-dropdown {
        min-width: auto;
    }
    
    .city-dropdown-btn {
        padding: 15px 20px;
    }
    
    .search-btn {
        padding: 15px 20px;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }
    
    .mobile-logo-img {
        height: auto;
        width: auto;
        max-width: 160px;
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .mobile-nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }
    
    .mobile-nav-links a:hover {
        color: #785944;
    }
}

/* Ensure mobile menu and logo are hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-header-logo {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 60px;
    }
    
    .tagline-text {
        font-size: 18px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .category-buttons {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 15px;
        font-size: 11px;
        min-width: 70px;
    }
}

/* Ensure exact spacing and alignment */
.brand-logo .logo-text {
    font-weight: 900;
    letter-spacing: 10px;
}


/* Home Reels Carousel Section */
.home-reels-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 0;
}

.home-reels-arrow {
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    z-index: 2;
}

.home-reels-arrow:hover {
    color: #333;
}

.home-reels-prev {
    margin-right: 20px;
}

.home-reels-next {
    margin-left: 20px;
}

.home-reels-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-reels-container::-webkit-scrollbar {
    display: none;
}

.home-reels-container .reel-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.home-reels-container .reel-item:hover {
    transform: translateY(-5px);
}

.home-reels-container .doctor-specialization {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-top: 6px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 124px;
}

.home-reels-container .doctor-label {
    font-size: 13px;
    font-weight: 900;
    color: #000;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 124px;
}

.home-reels-container .doctor-image {
    position: relative;
    padding: 4px;
    background: linear-gradient(to right, #ff822b, #c3a085);
    border-radius: 100px;
    width: 123px;
    height: 123px;
    margin: 0 auto;
}

.home-reels-container .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 96px;
    display: block;
}

/* Home Reels Carousel Responsive Design */
@media (max-width: 1024px) {
    .home-reels-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-reels-carousel {
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
		padding: 0;
    }
    
    .home-reels-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        align-items: center;
        justify-content: center;
        margin: 0;
    }
    
    .home-reels-prev {
        left: 10px;
    }
    
    .home-reels-next {
        right: 10px;
    }
    
    .home-reels-arrow:hover {
        background: #f8f8f8;
        border-color: #999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .home-reels-container {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 20px 60px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transform: translateX(0);
    }
    
    .reel-item {
        flex-shrink: 0;
        margin: 0 5px 0 5px;
    }
	.home-reels-container .doctor-image {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 480px) {
    .home-reels-arrow {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }
    
    .home-reels-prev {
        left: 5px;
    }
    
    .home-reels-next {
        right: 5px;
    }
    
    .home-reels-container {
        padding: 20px 30px;
    }
}

/* Home Before & After Section */
.home-before-after-section {
    background: linear-gradient(135deg, #f4f4f4 0%, #ff980021 50%, #f4f4f4 100%);
    padding: 80px 0;
}

.home-before-after-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-before-after-header {
    text-align: center;
    margin-bottom: 60px;
}

.home-before-after-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-before-after-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin: 0;
}

.home-before-after-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.home-before-after-prev,
.home-before-after-next {
    background: #000;
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-before-after-prev:hover,
.home-before-after-next:hover {
    background: #333;
    transform: scale(1.1);
}

.home-before-after-prev {
    margin-right: 30px;
}

.home-before-after-next {
    margin-left: 30px;
}

.home-before-after-main {
    position: relative;
    width: 900px;
    height: 600px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.home-before-after-main-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.home-before-after-main-item.active {
    opacity: 1;
}

.home-before-after-split {
    display: flex;
    width: 100%;
    height: 100%;
}

.home-before-panel,
.home-after-panel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-before-panel img,
.home-after-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-before-label,
.home-after-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgb(0 0 0 / 49%);
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.home-after-label {
    left: 20px;
    right: 20px;
}

.home-before-after-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.home-thumbnail-item {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.home-thumbnail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.home-thumbnail-item.active {
    border-color: #d4a574;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.home-thumbnail-split {
    display: flex;
    width: 100%;
    height: 100%;
}

.home-thumbnail-split img {
    width: 100%;
    object-fit: cover;
}

/* Home Before & After Responsive Design */
@media (max-width: 1024px) {
    .home-before-after-main {
        width: 750px;
        height: 500px;
    }
    
    .home-before-after-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .home-before-after-section {
        padding: 60px 0;
    }
    
    .home-before-after-title {
        font-size: 32px;
    }
    
    .home-before-after-subtitle {
        font-size: 16px;
    }
    
    .home-before-after-main {
        width: 100%;
        max-width: 600px;
        height: 400px;
    }
    
    .home-before-after-prev,
    .home-before-after-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .home-before-after-prev {
        margin-right: 15px;
    }
    
    .home-before-after-next {
        margin-left: 15px;
    }
    
    .home-thumbnail-item {
        width: 100px;
        height: 65px;
    }
}

@media (max-width: 480px) {
    .home-before-after-title {
        font-size: 28px;
    }
    
    .home-before-after-main {
        height: 350px;
    }
    
    .home-before-after-prev,
    .home-before-after-next {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .home-thumbnail-item {
        width: 80px;
        height: 55px;
    }
	.home-before-label, .home-after-label {
		bottom: 0;
		padding: 2px 8px;
		font-size: 10px;
	}
}

/* Home Featured Providers Section - Exact Match to Image */
.home-featured-providers-section {
    background: #fff;
    padding: 80px 0;
}

.home-providers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-providers-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-providers-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-view-all-link {
    color: #000;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.home-view-all-link:hover {
    color: #333;
}

/* Home Carousel Container */
.home-providers-carousel {
    position: relative;
    overflow: hidden;
}

.home-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
    padding-bottom: 20px;
}

.home-carousel-container::-webkit-scrollbar {
    height: 8px;
}

.home-carousel-container::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.home-carousel-container::-webkit-scrollbar-thumb {
    background: #ccc;
}

.home-carousel-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.home-carousel-track {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
    transition: transform 0.3s ease;
}

/* Home Provider Cards */
.home-provider-card {
    position: relative;
    background: #fff;
    border: 1px solid #000;
    padding: 25px;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.home-provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.home-sponsored-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5f5f5;
    color: #666;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.home-provider-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.home-provider-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.home-verified-badge {
    position: absolute;
    bottom: 10px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: #28a745;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 50%;
}

.home-provider-info {
    text-align: center;
}

.home-provider-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.home-provider-specialty {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    word-break: break-word;
    word-wrap: break-word;
    max-width: 100%;
    text-overflow: ellipsis;
}

.home-provider-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.home-stars {
    display: flex;
    gap: 2px;
}

.home-stars i {
    color: #000;
    font-size: 14px;
}

.home-rating-text {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.home-separator {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.home-review-count {
    color: #ff0000;
    font-weight: 600;
    font-size: 14px;
}

.home-provider-details {
    margin-bottom: 20px;
}

.home-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.home-detail-item i {
    font-size: 14px;
}

.home-provider-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.home-btn-consultation {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.home-btn-consultation:hover {
    background: #000;
    color: #fff;
}

.home-btn-profile {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.home-btn-profile:hover {
    background: #333;
    border-color: #333;
}

/* Home Carousel Controls */
.home-carousel-prev,
.home-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.home-carousel-prev:hover,
.home-carousel-next:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.home-carousel-prev {
    left: 10px;
}

.home-carousel-next {
    right: 10px;
}

.home-carousel-prev i,
.home-carousel-next i {
    font-size: 14px;
    color: #000;
}

/* Home Featured Providers Responsive Design */
@media (max-width: 768px) {
    .home-featured-providers-section {
        padding: 60px 0;
    }
    
    .home-providers-title {
        font-size: 32px;
    }
    
    .home-provider-card {
        max-width: 100%;
        padding: 20px;
        margin: 0 5px 0 5px;
		
    }
    
    .home-carousel-track {
        gap: 0;
        padding: 0 20px;
        transform: translateX(0);
    }
    
    .home-carousel-prev,
    .home-carousel-next {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .home-carousel-prev {
        left: 10px;
    }
    
    .home-carousel-next {
        right: 10px;
    }
    
    .home-carousel-prev:hover,
    .home-carousel-next:hover {
        background: #f8f8f8;
        border-color: #999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
}

@media (max-width: 480px) {
    .home-providers-title {
        font-size: 28px;
    }
    
    .home-provider-card {
        padding: 15px;
    }
    
    .home-provider-photo {
        width: 100px;
        height: 100px;
    }
    
    .home-provider-name {
        font-size: 18px;
    }
    
    .home-carousel-prev,
    .home-carousel-next {
        width: 35px;
        height: 35px;
    }
    
    .home-carousel-prev {
        left: 5px;
    }
    
    .home-carousel-next {
        right: 5px;
    }
}

/* Beauty Offers Section - Clone of Featured Providers */
.beauty-offers-section {
    background: #fff;
    padding: 80px 0;
}

.beauty-offers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.beauty-offers-header {
    text-align: center;
    margin-bottom: 50px;
}

.beauty-offers-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.beauty-view-all-link {
    color: #000;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.beauty-view-all-link:hover {
    color: #333;
}

/* Beauty Carousel Container */
.beauty-offers-carousel {
    position: relative;
    overflow: hidden;
}

.beauty-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.beauty-carousel-container::-webkit-scrollbar {
    height: 8px;
}

.beauty-carousel-container::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.beauty-carousel-container::-webkit-scrollbar-thumb {
    background: #ccc;
}

.beauty-carousel-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.beauty-carousel-track {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
    transition: transform 0.3s ease;
}

/* Beauty Offer Cards */
.beauty-offer-card {
    position: relative;
    background: #fff;
    min-width: 350px;
    max-width: 350px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.beauty-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.beauty-offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Beauty Carousel Controls */
.beauty-carousel-prev,
.beauty-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.beauty-carousel-prev:hover,
.beauty-carousel-next:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.beauty-carousel-prev {
    left: 10px;
}

.beauty-carousel-next {
    right: 10px;
}

.beauty-carousel-prev i,
.beauty-carousel-next i {
    font-size: 14px;
    color: #000;
}

/* Beauty Offers Responsive Design */
@media (max-width: 768px) {
    .beauty-offers-section {
        padding: 40px 0;
    }
    
    .beauty-offers-container {
        padding: 0 10px;
    }
    
    .beauty-offers-header {
        margin-bottom: 30px;
    }
    
    .beauty-offers-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .beauty-offer-card {
        min-width: 280px;
        max-width: 280px;
        padding: 0;
        margin: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .beauty-carousel-track {
        gap: 15px;
        padding: 0 10px;
        transform: translateX(0);
    }
    
    .beauty-carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .beauty-carousel-prev,
    .beauty-carousel-next {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .beauty-carousel-prev {
        left: 10px;
    }
    
    .beauty-carousel-next {
        right: 10px;
    }
    
    .beauty-carousel-prev:hover,
    .beauty-carousel-next:hover {
        background: #f8f8f8;
        border-color: #999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
}

@media (max-width: 480px) {
    .beauty-offers-section {
        padding: 30px 0;
    }
    
    .beauty-offers-container {
        padding: 0 5px;
    }
    
    .beauty-offers-title {
        font-size: 24px;
        letter-spacing: 0.5px;
    }
    
    .beauty-view-all-link {
        font-size: 14px;
    }
    
    .beauty-offer-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .beauty-carousel-track {
        gap: 10px;
        padding: 0 5px;
    }
    
    .beauty-carousel-prev,
    .beauty-carousel-next {
        width: 32px;
        height: 32px;
    }
    
    .beauty-carousel-prev i,
    .beauty-carousel-next i {
        font-size: 12px;
    }
    
    .beauty-carousel-prev {
        left: 5px;
    }
    
    .beauty-carousel-next {
        right: 5px;
    }
}


/* Home Real Reviews Section - Exact Match to Image */
.home-real-reviews-section {
    background: #f4f4f4;
    padding: 80px 0;
}

.home-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.home-reviews-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-reviews-subtitle {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-read-reviews-link {
    color: #000;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.home-read-reviews-link:hover {
    color: #333;
}

/* Home Reviews Carousel */
.home-reviews-carousel {
    position: relative;
    overflow: hidden;
}

.home-reviews-track-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
    padding-bottom: 20px;
}

.home-reviews-track-container::-webkit-scrollbar {
    height: 8px;
}

.home-reviews-track-container::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.home-reviews-track-container::-webkit-scrollbar-thumb {
    background: #ccc;
}

.home-reviews-track-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.home-reviews-track {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
    transition: transform 0.3s ease;
}

/* Home Testimonial Cards */
.home-testimonial-card {
    position: relative;
    min-width: 350px;
    max-width: 350px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.home-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Card Background Colors */
.home-card-gray {
    background: #e7e7e7;
    color: #000;
}

.home-card-beige {
    background: #f2ead6;
    color: #000;
}

.home-card-terracotta {
    background: #d4a5a5;
    color: #000;
}

.home-card-rose {
    background: #c4c4c4;
    color: #000;
}

/* Home Testimonial Quote */
.home-testimonial-quote {
    margin-bottom: 30px;
    position: relative;
}

.home-quote-mark {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.home-quote-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.5em * 6);
}

/* Home Testimonial Info */
.home-testimonial-info {
    margin-bottom: 30px;
}

.home-username {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-procedure {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-read-review-link {
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    color: #000;
}

.home-read-review-link:hover {
    opacity: 0.7;
}

/* Home Testimonial Logo */
.home-testimonial-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.home-logo-r {
    width: 40px;
    height: 40px;
    background-image: url('../img/logo/faviconb.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Home Carousel Controls */
.home-reviews-prev,
.home-reviews-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.home-reviews-prev:hover,
.home-reviews-next:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.home-reviews-prev {
    left: 10px;
}

.home-reviews-next {
    right: 10px;
}

.home-reviews-prev i,
.home-reviews-next i {
    font-size: 14px;
    color: #000;
}

/* Home Reviews Section Responsive Design */
@media (max-width: 768px) {
    .home-real-reviews-section {
        padding: 60px 0;
    }
    
    .home-reviews-title {
        font-size: 32px;
    }
    
    .home-reviews-subtitle {
        font-size: 16px;
    }
    
    .home-testimonial-card {
        padding: 30px 20px;
        margin: 0 5px 0 5px;
    }
    
    .home-reviews-track {
        gap: 0;
        padding: 0 20px;
        transform: translateX(0);
    }
    
    .home-quote-text {
        font-size: 14px;
    }
    
    .home-reviews-prev,
    .home-reviews-next {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .home-reviews-prev {
        left: 10px;
    }
    
    .home-reviews-next {
        right: 10px;
    }
    
    .home-reviews-prev:hover,
    .home-reviews-next:hover {
        background: #f8f8f8;
        border-color: #999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
}

@media (max-width: 480px) {
    .home-reviews-title {
        font-size: 28px;
    }
    
    .home-testimonial-card {
        padding: 25px 15px;
    }
    
    .home-quote-text {
        font-size: 13px;
    }
    
    .home-username,
    .home-procedure {
        font-size: 12px;
    }
    
    .home-read-review-link {
        font-size: 11px;
    }
    
    .home-reviews-prev,
    .home-reviews-next {
        width: 35px;
        height: 35px;
    }
    
    .home-reviews-prev {
        left: 5px;
    }
    
    .home-reviews-next {
        right: 5px;
    }
}

/* Home Real Answers Section - Exact Match to Image */
.home-real-answers-section {
    background: #f4f4f4;
    padding: 80px 0;
}

.home-answers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.home-answers-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-answers-subtitle {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-ask-question-btn {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-ask-question-btn:hover {
    background: #000;
    color: #fff;
}

/* Home Answers Carousel */
.home-answers-carousel {
    position: relative;
    overflow: hidden;
}

.home-answers-track-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
    padding-bottom: 20px;
}

.home-answers-track-container::-webkit-scrollbar {
    height: 6px;
}

.home-answers-track-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.home-answers-track-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.home-answers-track-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.home-answers-track {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
    transition: transform 0.3s ease;
}

/* Home Q&A Card */
.home-qa-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    min-width: 350px;
    max-width: 350px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.home-qa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.home-question-section {
    margin-bottom: 20px;
}

.home-question-text {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.4em * 3);
}

.home-question-author {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.home-answers-count {
    font-size: 12px;
    color: #ff0000;
    font-weight: 600;
    text-transform: uppercase;
}

.home-answer-section {
    padding: 15px;
    background: #f9f9f9;
    margin-top: 15px;
}

.home-answer-label {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.home-answer-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.6em * 6);
}

.home-doctor-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.home-doctor-avatar {
    position: relative;
    flex-shrink: 0;
}

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

.home-verified-badge {
    position: absolute;
    bottom: 10px;
    right: 0;
    background: #785944;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.home-verified-badge .fa-check {
    color: #fff;
    font-size: 8px;
}

.home-doctor-details {
    flex: 1;
    min-width: 0;
}

.home-doctor-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-doctor-specialty {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.home-doctor-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-stars {
    display: flex;
    gap: 1px;
}

.home-stars i {
    color: #ffc107;
    font-size: 12px;
}

.home-rating-text {
    font-size: 11px;
    color: #666;
    margin-right: 5px;
}

.home-review-count {
    font-size: 11px;
    color: #666;
}

.home-see-profile-btn {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.home-see-profile-btn:hover {
    background: #333;
    border-color: #333;
}

/* Home Answers Carousel Navigation */
.home-answers-prev,
.home-answers-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.home-answers-prev {
    left: 0px;
}

.home-answers-next {
    right: 0px;
}

.home-answers-prev:hover,
.home-answers-next:hover {
    background: #f8f8f8;
    border-color: #999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.home-answers-prev i,
.home-answers-next i {
    font-size: 14px;
    color: #333;
}

.home-answers-prev:disabled,
.home-answers-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.home-answers-prev:disabled:hover,
.home-answers-next:disabled:hover {
    background: #fff;
    border-color: #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Home Answers Responsive Design */
@media (max-width: 768px) {
    .home-answers-title {
        font-size: 36px;
    }
    
    .home-answers-subtitle {
        font-size: 16px;
    }
    
    .home-qa-card {
        padding: 20px;
        margin: 0 5px 0 5px;
    }
    
    .home-answers-prev,
    .home-answers-next {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .home-answers-prev {
        left: 10px;
    }
    
    .home-answers-next {
        right: 10px;
    }
    
    .home-answers-prev:hover,
    .home-answers-next:hover {
        background: #f8f8f8;
        border-color: #999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .home-answers-track-container {
        padding: 0 20px;
    }
    
    .home-answers-track {
        gap: 0;
        padding: 0 20px;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .home-answers-title {
        font-size: 28px;
    }
    
    .home-answers-subtitle {
        font-size: 14px;
    }
    
    .home-qa-card {
        padding: 15px;
    }
    
    .home-question-text {
        font-size: 14px;
    }
    
    .home-answer-text {
        font-size: 13px;
    }
    
    .home-answers-prev,
    .home-answers-next {
        width: 35px;
        height: 35px;
    }
    
    .home-answers-prev {
        left: 5px;
    }
    
    .home-answers-next {
        right: 5px;
    }
}

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

.answers-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.answers-subtitle {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ask-question-btn {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ask-question-btn:hover {
    background: #000;
    color: #fff;
}

/* Answers Carousel */
.answers-carousel {
    position: relative;
    overflow: hidden;
}

.answers-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
    padding-bottom: 20px;
}

.answers-container::-webkit-scrollbar {
    height: 8px;
}

.answers-container::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.answers-container::-webkit-scrollbar-thumb {
    background: #ccc;
}

.answers-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.answers-track {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
}

/* Q&A Cards */
.qa-card {
    max-width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.qa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Question Section */
.question-section {
    margin-bottom: 25px;
}

.question-text {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.4em * 3);
}

.question-author {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.answers-count {
    font-size: 14px;
    color: #e74c3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Answer */
.featured-answer {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.answer-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.6em * 6);
}

/* Doctor Profile - General */
.doctor-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.doctor-avatar {
    position: relative;
    flex-shrink: 0;
}

.doctor-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
	border-radius: 100px;
}

.verified-badgeDp {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: #8b4513;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.verified-badgeDp i {
    font-size: 10px;
    color: #fff;
}

.doctor-info {
    flex: 1;
    min-width: 0;
}

.doctor-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doctor-specialty {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doctor-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 12px;
    color: #ffd700;
}

.rating-text {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.see-profile-btn {
    background: linear-gradient(to right, #785944, #9f7f66);
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.see-profile-btn:hover {
    background: linear-gradient(to right, #9f7f66, #785944);
    transform: translateY(-1px);
}

/* Carousel Controls */
.answers-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.answers-carousel-btn:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.answers-prev {
    left: 10px;
}

.answers-next {
    right: 10px;
}

.answers-carousel-btn i {
    font-size: 14px;
    color: #000;
}

/* Responsive Design for Answers Section */
@media (max-width: 768px) {
    .real-answers-section {
        padding: 60px 0;
    }
    
    .answers-title {
        font-size: 32px;
    }
    
    .answers-subtitle {
        font-size: 16px;
    }
    
    .answers-track {
        gap: 20px;
        padding: 0 10px;
    }
    
    .question-text {
        font-size: 16px;
        height: calc(1.4em * 3);
    }
    
    .answer-text {
        font-size: 14px;
        height: calc(1.6em * 6);
    }
    
    .doctor-profile {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .doctor-info {
        width: 100%;
    }
    
    .answers-carousel-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .answers-title {
        font-size: 28px;
    }
    
    .qa-card {
        padding: 20px;
    }
    
    .question-text {
        font-size: 15px;
        height: calc(1.4em * 3);
    }
    
    .answer-text {
        font-size: 13px;
        height: calc(1.6em * 6);
    }
    
    .doctor-name {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .doctor-specialty {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .rating-text {
        font-size: 11px;
    }
    
    .see-profile-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}

    
    .logo-symbol {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .trust-card {
        padding: 25px 15px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
/* Home Doctor Directory Section - Exact Match to Image */
.home-doctor-directory-section {
    background: #f4f4f4;
    padding: 80px 0;
}

.home-directory-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.home-directory-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-see-full-directory-link {
    color: #000;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.home-see-full-directory-link:hover {
    color: #333;
}

/* Home Directory Grid */
.home-directory-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Home City Columns */
.home-city-column {
    text-align: left;
}

.home-city-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-procedure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-procedure-list li {
    margin-bottom: 15px;
}

.home-procedure-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.4;
}

.home-procedure-link:hover {
    color: #333;
    text-decoration: underline;
}

/* Home Directory Section Responsive Design */
@media (max-width: 1400px) {
    .home-directory-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .home-directory-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-doctor-directory-section {
        padding: 60px 0;
    }
    
    .home-directory-title {
        font-size: 36px;
    }
    
    .home-directory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .home-city-name {
        font-size: 16px;
    }
    
    .home-procedure-link {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .home-directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .home-directory-title {
        font-size: 28px;
    }
    
    .home-directory-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .home-city-name {
        font-size: 15px;
    }
    
    .home-procedure-link {
        font-size: 12px;
    }
}


/* Home Newsletter Section - Exact Match to Image */
.home-newsletter-section {
    background: linear-gradient(to right, #785944, #9f7f66);
    padding: 60px 0;
}

.home-newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-newsletter-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.home-newsletter-text {
    flex: 1;
}

.home-newsletter-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-title-line {
    display: block;
}

.home-newsletter-signup {
    flex: 1;
}

.home-newsletter-description {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 400;
}

.home-newsletter-description strong {
    font-weight: 700;
}

.home-signup-form {
    display: flex;
    gap: 0;
    align-items: center;
}

.home-email-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 14px;
    color: #333;
    background: #fff;
    min-width: 300px;
}

.home-email-input::placeholder {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-email-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #a86f6f;
}

.home-signup-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.home-signup-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Footer Links Section */
.footer-links-section {
    background: #000;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    text-align: left;
}

.footer-title {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: block;
}

.footer-link:hover {
    color: #ccc;
    text-decoration: underline;
}

/* Home Newsletter Section Responsive Design */
@media (max-width: 768px) {
    .home-newsletter-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .home-newsletter-title {
        font-size: 48px;
    }
    
    .home-newsletter-description {
        font-size: 15px;
    }
    
    .home-signup-form {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .home-email-input {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0;
    }
    
    .home-signup-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .home-newsletter-section {
        padding: 60px 0;
    }
    
    .home-newsletter-title {
        font-size: 36px;
    }
    
    .home-newsletter-description {
        font-size: 14px;
    }
    
    .home-email-input {
        padding: 14px 16px;
    }
    
    .home-signup-btn {
        padding: 14px 20px;
    }
}

/* Final Footer Section */
.final-footer {
    background: #000;
    padding: 60px 0 40px;
    text-align: center;
}

.final-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Section */
.footer-logo-section {
    margin-bottom: 40px;
}

.stylized-logo {
    margin-bottom: 20px;
}

.logo-symbol {
    width: 80px;
    height: 80px;
    background-image: url('../img/logo/faviconw.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.logo-symbol::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.footer-brand {
    font-size: 100px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 10px 0 0 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Social Media Section */
.social-media-section {
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.social-icon:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.social-icon i {
    font-size: 16px;
}

/* Footer Navigation */
.footer-navigation {
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-nav-link:hover {
    color: #ccc;
    text-decoration: underline;
}

.nav-divider {
    color: #666;
    font-size: 14px;
    margin: 0 5px;
}

/* Copyright Section */
.copyright-section {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.copyright-text {
    color: #ccc;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Final Footer */
@media (max-width: 768px) {
    .final-footer {
        padding: 40px 0 30px;
    }
    
    .logo-symbol {
        width: 60px;
        height: 60px;
        background-image: url('../img/logo/faviconw.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .footer-brand {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 14px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-divider {
        display: none;
    }
    
    .footer-nav-link {
        font-size: 13px;
    }
    
    .copyright-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .final-footer {
        padding: 30px 0 20px;
    }
    
    .logo-symbol {
        width: 50px;
        height: 50px;
        background-image: url('../img/logo/faviconw.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .footer-brand {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon i {
        font-size: 12px;
    }
    
    .footer-nav-link {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .copyright-text {
        font-size: 10px;
    }
}

/* All Procedures Section */
.all-procedures-section {
    background: #f4f4f4;
    text-align: center;
}

.procedures-title {
    margin-bottom: 20px;
}

.procedures-main-title {
    font-size: 60px;
    font-weight: 900;
    color: #000;
    margin: 0;
    letter-spacing: 2px;
}

.procedures-subtitle {
    margin-bottom: 60px;
}

.procedures-description {
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.5;
	font-weight: 900;
}

.procedures-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow {
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    z-index: 2;
}

.carousel-arrow:hover {
    color: #333;
}

.carousel-prev {
    margin-right: 20px;
}

.carousel-next {
    margin-left: 20px;
}

.procedures-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.procedures-container::-webkit-scrollbar {
    display: none;
}

.procedure-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.procedure-item.active {
    position: relative;
}

.procedure-item.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: 36px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    z-index: 1;
}

.procedure-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

.procedure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.procedure-label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive for All Procedures */
@media (max-width: 768px) {
    .all-procedures-section {
        padding: 60px 0;
    }
    
    .procedures-main-title {
        font-size: 36px;
    }
    
    .procedures-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .procedures-carousel {
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        align-items: center;
        justify-content: center;
        margin: 0;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-arrow:hover {
        background: #f8f8f8;
        border-color: #999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .procedures-container {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 20px 60px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transform: translateX(0);
    }
    
    .procedure-item {
        flex-shrink: 0;
        margin: 0 5px 0 5px;
    }
    
    .procedure-image {
        width: 100px;
        height: 100px;
    }
    
    .procedure-label {
        font-size: 12px;
    }
	.procedure-item.active::before {
		display: none;
	}
}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 20px;
        height: 20px;
		font-size: 13px;
    }
    
    .procedures-container {
        padding: 20px 45px;
    }
    
    .procedure-image {
        width: 80px;
        height: 80px;
    }
    
    .procedure-label {
        font-size: 11px;
    }
}

/* Procedures List Section */
.procedures-list-section {
    background: #f4f4f4;
    padding: 40px 0;
}

.procedures-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.filter-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option,
.checkbox-option {
    display: flex;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.radio-option input,
.checkbox-option input {
    display: none;
}

.radio-custom,
.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    margin: 2px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.radio-custom {
    border-radius: 50%;
}

.checkbox-custom {
    border-radius: 2px;
}

.radio-option input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.checkbox-option input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

.radio-label,
.checkbox-label {
    flex: 1;
}

/* Cost Slider */
.cost-slider-container {
    margin-top: 15px;
}

.cost-slider {
    position: relative;
    height: 4px;
    background: #ddd;
    margin: 20px 0;
    border-radius: 2px;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #333;
    border-radius: 2px;
}

.slider-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-handle:hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-handle-left {
    left: 0;
}

.slider-handle-right {
    right: 0;
}

.cost-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* Range input styling for cost slider */
.cost-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    outline: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
}

.cost-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cost-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.cost-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cost-slider input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.cost-label {
    font-size: 12px;
    color: #666;
}

.categories-list,
.concerns-list {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.categories-list::-webkit-scrollbar,
.concerns-list::-webkit-scrollbar {
    width: 4px;
}

.categories-list::-webkit-scrollbar-track,
.concerns-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.categories-list::-webkit-scrollbar-thumb,
.concerns-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

/* Worth It Rating Slider */
.rating-slider-container {
    margin-top: 15px;
}

.rating-slider {
    position: relative;
    height: 4px;
    background: #ddd;
    margin: 20px 0;
    border-radius: 2px;
}

.rating-slider .slider-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #000;
    border-radius: 2px;
}

.rating-slider .slider-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-slider .slider-handle:hover {
    transform: translateY(-50%) scale(1.1);
}

.rating-slider .slider-handle-left {
    left: 0;
}

.rating-slider .slider-handle-right {
    right: 0;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.rating-label {
    font-size: 12px;
    color: #666;
    position: relative;
}

.rating-label::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: #ccc;
}

/* Procedures Content */
.procedures-content {
    background: #f4f4f4;
}

.procedures-header {
    margin-bottom: 10px;
}

.procedures-count {
    font-size: 26px;
    font-weight: 900;
    color: #000;
    margin: 0;
}

.count-highlight {
    color: #8B4513;
}

.procedure-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.procedure-card {
    background: #fff;
    padding: 30px;
    border-radius: 0;
    border: 1px solid #00000070;
    overflow: hidden;
    box-sizing: border-box;
}

.card-header {
    margin-bottom: 15px;
}

.procedure-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.2em * 1);
}

.procedure-stats {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.card-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.6em * 2);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-container {
    position: relative;
    text-align: center;
}

.before-after-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* Procedure Featured Image */
.procedure-featured-image {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 4px;
    box-sizing: border-box;
}

.procedure-featured-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
    margin: 0;
    padding: 0;
}

.image-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    z-index: 1;
}

/* NSFW Overlay for Procedures Page */
.image-container .nsfw-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.image-container .nsfw-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.image-container .nsfw-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive for Procedures List */
@media (max-width: 768px) {
    .procedures-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters-sidebar {
        position: static;
        padding: 20px;
    }
    
    .procedures-count {
        font-size: 24px;
    }
    
    .procedure-name {
        font-size: 20px;
    }
    
    .procedure-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .before-after-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .before-after-img {
        height: 200px;
    }
    
    .procedure-featured-img {
        height: 200px;
    }
}

/* Photos Page Specific Styles */
.worth-it {
    color: #8B4513;
    font-weight: 600;
}

.photo-count {
    color: #000;
    font-weight: 400;
}

.view-all-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    float: right;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #004499;
    text-decoration: underline;
}

.main-image-container {
    position: relative;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    filter: blur(20px);
}

.nsfw-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

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

.nsfw-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.watermark {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.thumbnail-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.thumbnail-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    object-position: center;
    filter: blur(20px);
}

.thumbnail-container .nsfw-overlay {
    padding: 8px 12px;
}

.thumbnail-container .nsfw-icon {
    font-size: 16px;
    margin-bottom: 2px;
}

/* Mobile Responsive for Photos Page */
@media (max-width: 768px) {
    .main-image {
        height: 150px;
    }
    
    .thumbnail-img {
        height: 50px;
    }
    
    .nsfw-overlay {
        padding: 10px 15px;
    }
    
    .nsfw-icon {
        font-size: 20px;
    }
    
    .thumbnail-container .nsfw-overlay {
        padding: 6px 10px;
    }
    
    .thumbnail-container .nsfw-icon {
        font-size: 14px;
    }
}

/* Reviews Page Specific Styles */
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.worth-it-tag {
    background: #8B4513;
    color: #fff;
}

.procedure-tag {
    background: #000;
    color: #fff;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.username {
    font-size: 14px;
    font-weight: 600;
    color: #333;
	margin: 0;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.expand-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.expand-btn:hover {
    color: #333;
}

.review-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.review-text {
    margin-bottom: 20px;
}

.review-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.review-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #f4e4c1 0%, #d4c4a8 100%);
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(20px);
}

.review-image-container .nsfw-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.review-image-container .nsfw-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

/* Sticky Action Buttons */
.sticky-actions {
    position: sticky;
    bottom: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    z-index: 100;
}

.action-btn {
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leave-review-btn {
    background: #8B4513;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
}

.leave-review-btn:hover {
    background: #6d3410;
    transform: translateY(-2px);
}

.vote-btn, .up-btn {
    background: #8B4513;
    color: #fff;
    padding: 12px 16px;
    font-size: 16px;
}

.vote-btn:hover, .up-btn:hover {
    background: #6d3410;
    transform: translateY(-2px);
}

/* Mobile Responsive for Reviews Page */
@media (max-width: 768px) {
    .review-card {
        padding: 20px !important;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-tags {
        order: 1;
    }
    
    .review-user-info {
        order: 2;
        align-self: flex-start;
    }
    
    .expand-btn {
        order: 3;
        align-self: flex-end;
    }
    
    .review-title {
        font-size: 18px;
    }
    
    .review-image-container {
        height: 200px;
    }
    
    .sticky-actions {
        position: fixed;
        bottom: 10px;
        right: 10px;
        flex-direction: column;
        gap: 8px;
    }
    
    .action-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .leave-review-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Ask Doctor Page Specific Styles */
.ask-doctor .procedures-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0;
}

.ask-doctor .filters-sidebar {
    display: none;
}

.ask-doctor .procedures-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.qa-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.question-section {
    padding: 0;
    border-bottom: 1px solid #eee;
    margin: 0;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.question-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.username {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.question-date {
    font-size: 12px;
    color: #999;
}

.expand-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.expand-btn:hover {
    color: #666;
}

.procedure-tag-container {
    margin-bottom: 20px;
}

.question-titleQA {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.question-textQA {
    margin-bottom: 0;
}

.question-text p {
    font-size: 13px;
    color: #333;
    margin: 0;
    text-transform: initial;
}

.answer-section {
    padding: 15px;
    background: #f9f9f9;
}

.answer-label {
    font-size: 16px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.doctor-avatar {
    position: relative;
    flex-shrink: 0;
}

.doctor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #fff;
}

.doctor-details {
    flex: 1;
	margin: 0 0 0 15px;
}

.doctor-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.doctor-specialty {
    font-size: 14px;
    color: #333;
    margin: 0 0 10px 0;
}

.doctor-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #000;
    font-size: 14px;
}

.rating-text {
    font-size: 12px;
    color: #666;
}

.answer-date {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.doctor-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.consultation-btn {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    background: #000;
    color: #fff;
}

.profile-btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    background: #333;
    border-color: #333;
}

.answer-text {
    margin-bottom: 20px;
}

.answer-text p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.more-answers {
    display: flex;
    justify-content: flex-start;
}

.more-answers-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-answers-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Bottom Action Buttons */
.bottom-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.ask-question-btn {
    background: #8B4513;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
	text-transform: capitalize;
}

.ask-question-btn:hover {
    background: #6d3410;
    transform: translateY(-2px);
}

.sort-btn, .up-btn {
    background: #8B4513;
    color: #fff;
    border: none;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sort-btn:hover, .up-btn:hover {
    background: #6d3410;
    transform: translateY(-2px);
}

/* Doctor Profile Page Styles */
.doctor-hero-section {
    background: #f4f4f4;
}

.doctor-hero-content {
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.doctor-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.doctor-profile-imageDp {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.verified-badgeAQ {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 20px;
    height: 20px;
    background: #8B4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.doctor-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doctor-name {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verified-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: -5px;
}

.verified-icon {
    width: 16px;
    height: 16px;
    background: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.verified-icon::after {
    content: '✓';
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

.verified-text {
    color: #8B4513;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doctor-specialty {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 16px;
}

.doctor-specialty i {
    color: #999;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.contact-item i {
    color: #999;
    font-size: 14px;
    width: 16px;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    color: #000;
    font-size: 14px;
}

.rating-text {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.engagement-stats {
    flex-direction: column-reverse;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.stat-item i {
    color: #999;
    font-size: 14px;
    width: 16px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.consultation-btn {
    background: #000;
    color: #fff;
    border-color: #000;
}

.consultation-btn:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.pricing-btn {
    background: #fff;
    color: #000;
    border-color: #000;
}

.pricing-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.doctor-nav-tabs {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.doctor-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-tab {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-tab:hover {
    color: #000;
}

.nav-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: #8B4513;
    transition: width 0.3s ease;
}

.nav-tab:hover::after {
    width: 100%;
}

.nav-tab.active {
    color: #8B4513;
}

.nav-tab.active::after {
    width: 100%;
}

.consultation-sticky-btn {
    background: #8B4513;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-sticky-btn:hover {
    background: #6d3410;
    transform: translateY(-2px);
}

/* Mobile Responsive for Doctor Profile */
@media (max-width: 768px) {
    .doctor-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .doctor-profile-image {
        width: 150px;
        height: 150px;
    }
    
    .doctor-name {
        font-size: 24px;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .doctor-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav-tab {
        font-size: 12px;
    }
}

/* Areas of Expertise Section */
.expertise-section {
    background: #fff;
    padding: 30px 0;
}

.expertise-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.expertise-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.expertise-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.procedure-title {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.procedure-stats {
    font-size: 18px;
    color: #8b4513;
    margin: 0 0 20px 0;
    font-weight: 900;
}

.procedure-description {
    margin-bottom: 25px;
}

.procedure-description p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.6em * 3);
}

.show-more-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.show-more-link:hover {
    color: #8B4513;
    text-decoration: underline;
}

.expertise-card .before-after-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.expertise-card .image-container {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-sizing: border-box;
}

.expertise-card .photo-thumbnail-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-sizing: border-box;
}

.expertise-card .before-after-img {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.expertise-card .image-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    z-index: 1;
}

.expertise-card .nsfw-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.expertise-card .nsfw-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.expertise-card .nsfw-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fillers card - no blur for clear images */
.expertise-card:last-child .before-after-img {
    filter: none;
}

/* Mobile Responsive for Expertise Section */
@media (max-width: 768px) {
    .expertise-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .expertise-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .expertise-card {
        padding: 20px;
		min-width: 100%;
    }
    
    .procedure-title {
        font-size: 18px;
    }
    
    .expertise-card .before-after-img {
        height: 200px;
        max-width: 100%;
        width: 100%;
    }
    
    .expertise-card .image-container,
    .expertise-card .photo-thumbnail-container {
        overflow: hidden;
        width: 100%;
    }
	.nsfw-overlay {
		top: 30% !important;
	}
}

/* About Section */
.about-section {
    background: #fff;
    padding: 30px 0;
}

.about-header {
    margin-bottom: 40px;
}

.about-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.experience-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.experience-info i {
    color: #8B4513;
    font-size: 18px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Video Section */
.video-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-container {
    position: relative;
}

.video-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.video-title h4 {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0 0 20px 0;
}

.video-player {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 24px;
    color: #000;
    margin-left: 3px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    z-index: 1;
}

.overlay-text {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.overlay-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.office-image {
    width: 100%;
}

.office-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Qualifications Section */
.qualifications-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    align-self: flex-start;
}

.qualifications-title {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qualification-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.qualification-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.qualification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.qualification-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.expand-icon {
    color: #8B4513;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.qualification-content {
    padding-left: 20px;
}

.education-item, .cert-item, .hospital-item, .membership-item {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.education-item strong {
    color: #000;
    font-weight: 700;
}

.education-item ul {
    margin: 5px 0 0 20px;
    padding: 0;
}

.education-item li {
    margin-bottom: 5px;
}

.verified-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8B4513;
    font-weight: 600;
}

.verified-item i {
    font-size: 16px;
}

.consultation-fee {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #8B4513;
    font-size: 18px;
    color: #000;
    text-align: center;
}

.about-description p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.read-more-link {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #6d3410;
    text-decoration: underline;
}

/* Mobile Responsive for About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .video-player {
        height: 250px;
    }
    
    .office-image {
        max-width: 100%;
        margin-left: 0;
    }
    
    .qualifications-section {
        padding: 20px;
    }
    
    .qualifications-title {
        font-size: 20px;
    }
}

/* Videos Section */
.videos-section {
    background: #fff;
    padding: 30px 0;
}

.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.videos-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.browse-all-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browse-all-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.videos-carousel {
    position: relative;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.video-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-card .nsfw-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.video-card .nsfw-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.video-card .nsfw-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.see-all-card {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.see-all-content {
    text-align: center;
}

.see-all-text {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.scroll-progress {
    width: 20%;
    height: 100%;
    background: #000;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Mobile Responsive for Videos Section */
@media (max-width: 768px) {
    .videos-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .videos-title {
        font-size: 28px;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-card {
        height: 150px;
    }
}

/* Photos Section */
.photos-section {
    background: #fff;
    padding: 30px 0;
}

.photos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.photos-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.photos-carousel {
    position: relative;
}

.photos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.photo-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
}

.photo-thumbnail-container {
    position: relative;
    width: 100%;
}

.photo-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Force blur for encrypted photos - MUST BLUR when class is present */
.photo-encrypted-blur {
    filter: blur(20px) !important;
    -webkit-filter: blur(20px) !important;
    -ms-filter: blur(20px) !important;
}

.photo-thumbnail-container .photo-encrypted-blur,
.photo-card .photo-encrypted-blur,
.photo-thumbnail-container img.photo-encrypted-blur,
.photo-card img.photo-encrypted-blur {
    filter: blur(20px) !important;
    -webkit-filter: blur(20px) !important;
    -ms-filter: blur(20px) !important;
}

.photo-card .nsfw-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
}

.photo-card .nsfw-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.photo-card .nsfw-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photo-card.see-all-card {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-card .see-all-content {
    text-align: center;
}

.photo-card .see-all-text {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Q&A Section */
.qa-section {
    background: #fff;
    padding: 20px 0;
}

.qa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.qa-title {
    font-size: 26px;
    font-weight: 900;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.qa-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.qa-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.question-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.question-title {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.5em * 3);
}

.question-author {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.answer-section {
    padding-top: 20px;
}

.answer-label {
    font-size: 12px;
    font-weight: 700;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.doctor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.doctor-info .doctor-name {
    font-size: 26px;
}

.doctor-name {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	max-width: 88%;
}

.answer-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}

/* Reviews Section */
.reviews-section {
    background: #f4f4f4;
    padding: 60px 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.reviews-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

/* Rating Details Card */
.rating-details-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    height: fit-content;
}

.doctor-image-container {
    margin-bottom: 20px;
}

.doctor-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.rating-details-title {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overall-rating {
    margin-bottom: 20px;
}

.rating-score {
    font-size: 48px;
    font-weight: 900;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
}

.rating-details-card .stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.rating-details-card .stars i {
    color: #000;
    font-size: 20px;
}

.review-count {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.rating-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* Reviews List */
.reviews-list {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.results-count {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.clear-filters-btn {
    background: #f0f0f0;
    color: #666;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #e0e0e0;
    color: #000;
}

/* Review Cards */
.review-card {
    padding: 15px 15px;
    border-bottom: 1px solid #eee;
}

.review-card:last-child {
    border-bottom: none;
}

.review-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-tag, .post-op-tag, .procedure-tag {
    background: #000;
    color: #fff;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.user-details {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.username {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.review-date {
    font-size: 12px;
    color: #666;
}

.review-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.review-card .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.review-card .stars i {
    color: #000;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.read-more-link {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #6d3410;
    text-decoration: underline;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .photos-header, .qa-header, .reviews-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .photos-title, .qa-title, .reviews-title {
        font-size: 28px;
    }
    
    .photos-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photo-card {
        height: 150px;
    }
    
    .qa-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qa-card {
        padding: 15px;
		max-width: 100%;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rating-details-card {
        padding: 20px;
    }
    
    .reviews-list {
        padding: 20px;
    }
}

/* Review Form Card */
.review-form-card {
    background: #f2ead6;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-bottom: 3px solid #8B4513;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.review-form-title {
    font-size: 12px;
    font-weight: 700;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
}

.doctor-name-large {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

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

.rating-section {
    display: flex;
    gap: 10px;
}

.rating-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star-icon {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-icon:hover,
.star-icon.active {
    color: #ffc107;
}

.service-dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.service-select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #000;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.service-select:focus {
    outline: none;
    border-color: #8B4513;
}

.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.write-review-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.write-review-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Mobile Responsive for Ask Doctor Page */
@media (max-width: 768px) {
    .question-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .question-user-info {
        order: 1;
    }
    
    .expand-btn {
        order: 2;
        align-self: flex-end;
    }
    
    .question-title {
        font-size: 18px;
    }
    
    .doctor-profile {
        flex-direction: column;
        gap: 15px;
    }
	.doctor-name {
		margin: 20px 0 0 0;
	}
    
    .doctor-actions {
        flex-direction: row;
        justify-content: space-between;
    }
	.more-answers-btn {
		margin: 20px 0 0 0;
	}
    
    .consultation-btn,
    .profile-btn {
        flex: 1;
        text-align: center;
    }
}

/* ===============================
   DOCTOR LOGIN STYLES
   =============================== */

.login-section {
    padding: 50px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.login-container {
    background: white;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    position: relative;
}


.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.error-message {
    background: #fee;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #fed7d7;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

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

.form-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    color: #667eea;
    width: 16px;
}

.form-input {
    padding: 8px 8px;
    border: 1px solid #8b451370;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-btn {
    background: #000;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.login-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.login-help {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-link {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
}

.login-link:hover {
    text-decoration: underline;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #28a745;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

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

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

.form-group select {
    cursor: pointer;
}

.form-group input[type="file"] {
    padding: 8px;
    cursor: pointer;
}

.form-group input[type="file"]::-webkit-file-upload-button {
    background: #8B4513;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
    background: #6d3410;
}

/* ===============================
   DOCTOR DASHBOARD STYLES
   =============================== */

.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f8fafc;
}

.loading-spinner {
    text-align: center;
    color: #667eea;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.breadcrumb-item {
    color: #7f8c8d;
}

.breadcrumb-item.active {
    color: #2c3e50;
    font-weight: 600;
}

.breadcrumb-separator {
    font-size: 0.8rem;
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
	text-align: center;
	text-transform: uppercase;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    min-height: 80vh;
}

/* Doctor Sidebar */
.doctor-sidebar {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.doctor-profile-card {
    position: relative;
}

.profile-background {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 120px;
    position: relative;
    overflow: hidden;
}

.profile-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
    opacity: 0.3;
}

.profile-icons i {
    font-size: 1.5rem;
    color: white;
}

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

.profile-image {
    margin: 20px 0 20px 0
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.doctor-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.doctor-specialization {
    font-size: 0.8rem;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.doctor-category {
    margin-bottom: 20px;
}

.category-tag {
    background: #667eea;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-tag i {
    font-size: 0.6rem;
}

.availability-section {
    margin-top: 20px;
}

.availability-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.availability-dropdown {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: #2c3e50;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.availability-dropdown:focus {
    outline: none;
    border-color: #667eea;
}

/* Sidebar Navigation */
.doctor-sidebar .sidebar-nav {
    border-top: 1px solid #e2e8f0;
}

.doctor-sidebar .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctor-sidebar .nav-item {
    border-bottom: 1px solid #f1f5f9;
}

.doctor-sidebar .nav-item:last-child {
    border-bottom: none;
}

.doctor-sidebar .nav-link {
    display: flex;
	font-size: 12px;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.doctor-sidebar .nav-link:hover {
    background: #8B4513;
    color: white;
}

.doctor-sidebar .nav-item.active .nav-link {
    background: #8B4513;
    color: white;
}

.doctor-sidebar .nav-link i {
    width: 20px;
    font-size: 1.1rem;
}

.notification-badge {
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: auto;
}

.logout-btn {
    color: #ef4444 !important;
}

.logout-btn:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

/* Main Dashboard Content */
.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 0 0 calc(33.333% - 14px);
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

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

.stat-content {
    flex: 1;
}

.stat-title {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-family: 'Comfortaa', sans-serif;
}

.stat-change {
    font-size: 0.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.stat-change.positive {
    color: #10b981;
}

.stat-change.negative {
    color: #ef4444;
}

.stat-icon {
    font-size: 2.5rem;
    color: #667eea;
    opacity: 0.7;
}

.doctor-details-card,
.appointments-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

procedure-card .card-header {
    padding: 25px 25px 0 25px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.time-filter {
    padding: 8px 15px;
    border: 2px solid #e2e8f0;
    background: white;
    font-size: 0.9rem;
    color: #2c3e50;
    cursor: pointer;
}

.card-content {
    padding: 0 25px 25px 25px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Patient Dashboard specific styles */
.patient-dashboard .details-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.patient-dashboard .detail-item {
    padding: 6px;
    background: #f8fafc;
    border-left: 1px solid #8B4513;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.detail-value {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
}

.appointments-list {
    padding: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.appointment-item:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.appointment-patient {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

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

.patient-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.appointment-id {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 600;
}

.patient-name {
    font-weight: 600;
    color: #2c3e50;
}

.appointment-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.appointment-date {
    color: #2c3e50;
    font-weight: 500;
	font-size: 12px;
}

.appointment-type {
    background: #8B4513;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
	width: 160px;
	text-align: center;
}

.appointment-actions {
    display: flex;
    gap: 10px;
}

.doctor-dashboard .action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.doctor-dashboard .action-btn.accept {
    background: #10b981;
    color: white;
}

.doctor-dashboard .action-btn.accept:hover {
    background: #059669;
    transform: scale(1.1);
}

.doctor-dashboard .action-btn.reject {
    background: #ef4444;
    color: white;
}

.doctor-dashboard .action-btn.reject:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .doctor-sidebar {
        position: static;
    }
    
    .stats-cards {
        flex-direction: column;
    }
    
    .stat-card {
        flex: 0 0 100%;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .appointment-actions {
        align-self: flex-end;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===============================
   USER DROPDOWN STYLES
   =============================== */

.user-dropdown-container {
    position: relative;
    display: inline-block;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    margin-top: 8px;
    overflow: hidden;
}

.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.user-dropdown .dropdown-item:hover {
    background: #f8fafc;
    color: #8B4513;
}

.user-dropdown .dropdown-item.logout-item {
    color: #ef4444;
    border-top: 1px solid #e2e8f0;
}

.user-dropdown .dropdown-item.logout-item:hover {
    background: #fef2f2;
    color: #dc2626;
}

.user-dropdown .dropdown-item i {
    width: 16px;
    font-size: 0.9rem;
    text-align: center;
}

/* Animation for dropdown */
.user-dropdown {
    animation: dropdownFadeIn 0.2s ease-out;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}