
:root {
    --primary: #2a9d8f;
    --primary-light: #4fb3a8;
    --primary-dark: #1e7a6e;
    --secondary: #264653;
    --secondary-light: #3a5f6e;
    --accent: #e9c46a;
    --accent-light: #f1d58c;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --pink-light: #fff1f0;
    --pink-primary: #e76f51;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=2050') center/cover;
    opacity: 0.1;
    z-index: 0;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header .department-icon {
    font-size: 90px;
    margin-bottom: 20px;
    color: white;
    animation: bounce 3s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.page-header .breadcrumb {
    font-size: 18px;
    animation: fadeInUp 0.8s ease 0.2s both;
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.page-header .breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.page-header .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-header .breadcrumb span {
    margin: 0 10px;
    opacity: 0.5;
}

/* Section Styles */
.section-padding {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(42, 157, 143, 0.2);
    z-index: -1;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.8;
}

/* Department Accordion */
.department-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-section {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(42, 157, 143, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.accordion-section:hover {
    box-shadow: 0 15px 40px rgba(42, 157, 143, 0.15);
    transform: translateY(-2px);
}

.accordion-section.active {
    box-shadow: 0 20px 50px rgba(42, 157, 143, 0.25);
    border-color: var(--primary);
}

.accordion-header {
    background: var(--white);
    padding: 22px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.accordion-header:hover::before {
    left: 100%;
}

.accordion-section.active .accordion-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.accordion-header i:first-child {
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-section.active .accordion-header i:first-child {
    color: white;
    background: rgba(255,255,255,0.2);
    transform: rotate(360deg);
}

.accordion-header h3 {
    flex: 1;
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary);
}

.accordion-section.active .accordion-header h3 {
    color: white;
}

.accordion-arrow {
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 36px;
    height: 36px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-section.active .accordion-arrow {
    transform: rotate(180deg);
    color: white;
    background: rgba(255,255,255,0.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.accordion-section.active .accordion-content {
    max-height: 3000px;
}

.content-inner {
    padding: 35px;
    border-top: 2px solid rgba(42, 157, 143, 0.1);
    background: linear-gradient(145deg, white 0%, #fafafa 100%);
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.stat-box {
    background: linear-gradient(145deg, white, var(--light-bg));
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(42, 157, 143, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 30px rgba(42, 157, 143, 0.15);
    border-color: var(--primary);
}

.stat-box:hover::after {
    height: 100%;
}

.stat-box .number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-box .label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* NEW: Feature Cards */
.feature-cards-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(42,157,143,0.05) 0%, rgba(38,70,83,0.05) 100%);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(42,157,143,0.2);
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(42,157,143,0.3);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 40px;
    transition: all 0.4s;
    box-shadow: 0 10px 20px rgba(42,157,143,0.3);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.feature-card h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.feature-link:hover {
    color: var(--secondary);
    gap: 15px;
}

/* NEW: Service Cards */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card-small {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(42,157,143,0.1);
    position: relative;
    overflow: hidden;
}

.service-card-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card-small:hover::after {
    transform: scaleX(1);
}

.service-card-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(42,157,143,0.15);
}

.service-icon-small {
    width: 70px;
    height: 70px;
    background: rgba(42,157,143,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
    transition: all 0.4s;
}

.service-card-small:hover .service-icon-small {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.service-card-small h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card-small p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}

/* NEW: Doctor Cards - Enhanced */
.doctor-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.doctor-card-new {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(42,157,143,0.2);
    position: relative;
}

.doctor-card-new:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(42,157,143,0.3);
}

.doctor-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.doctor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.doctor-card-new:hover .doctor-image-wrapper img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.doctor-card-new:hover .doctor-overlay {
    opacity: 1;
}

.doctor-social-icons {
    display: flex;
    gap: 15px;
}

.doctor-social-icons a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

.doctor-card-new:hover .doctor-social-icons a {
    transform: translateY(0);
    opacity: 1;
}

.doctor-social-icons a:nth-child(1) { transition-delay: 0.1s; }
.doctor-social-icons a:nth-child(2) { transition-delay: 0.2s; }
.doctor-social-icons a:nth-child(3) { transition-delay: 0.3s; }

.doctor-social-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) !important;
}

.doctor-info-new {
    padding: 25px 20px;
    text-align: center;
    background: white;
}

.doctor-info-new h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 700;
}

.doctor-info-new .specialty {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.doctor-info-new .experience {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.doctor-rating {
    color: #fbbf24;
    font-size: 14px;
}

/* Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid rgba(42, 157, 143, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 50px rgba(42, 157, 143, 0.25);
    border-color: var(--primary);
}

.doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.doctor-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-info {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    background: white;
}

.doctor-info h4 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 700;
}

.doctor-info .qualification {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    padding: 4px 12px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50px;
    display: inline-block;
}

.doctor-info .experience {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.doctor-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.doctor-social a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.doctor-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) rotate(360deg);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.service-item {
    background: linear-gradient(145deg, white, var(--light-bg));
    padding: 22px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s;
    border: 1px solid rgba(42, 157, 143, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item i {
    font-size: 28px;
    color: var(--primary);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item:hover i {
    background: var(--secondary);
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.service-item span {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    position: relative;
    z-index: 1;
    color: var(--dark);
    transition: color 0.3s;
}

.service-item:hover span {
    color: white;
}

/* Facilities Grid */
.facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.facility-item {
    background: linear-gradient(145deg, white, var(--light-bg));
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(42, 157, 143, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.facility-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: height 0.4s;
    z-index: 0;
}

.facility-item:hover::after {
    height: 100%;
}

.facility-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.facility-item:hover i {
    color: white;
    transform: scale(1.2) rotateY(180deg);
}

.facility-item span {
    font-size: 16px;
    font-weight: 600;
    display: block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.facility-item:hover span {
    color: white;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.info-item {
    background: linear-gradient(145deg, white, var(--light-bg));
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s;
    border: 1px solid rgba(42, 157, 143, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.info-item:hover::before {
    opacity: 1;
}

.info-item i {
    font-size: 36px;
    color: var(--primary);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-item:hover i {
    background: var(--secondary);
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.info-item div {
    flex: 1;
    position: relative;
    z-index: 1;
}

.info-item .label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
    transition: color 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.info-item .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    transition: color 0.3s;
}

.info-item:hover .label,
.info-item:hover .value {
    color: white;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.condition-item {
    background: linear-gradient(145deg, white, var(--light-bg));
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(42, 157, 143, 0.1);
    position: relative;
    overflow: hidden;
}

.condition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s;
}

.condition-item:hover {
    background: var(--primary);
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.2);
}

.condition-item:hover::before {
    height: 100%;
}

.condition-item i {
    font-size: 20px;
    color: var(--primary);
    width: 30px;
    transition: all 0.3s;
}

.condition-item:hover i {
    color: white;
    transform: scale(1.2);
}

.condition-item span {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.condition-item:hover span {
    color: white;
}

/* Statistics Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px 0;
    color: white;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-banner-item {
    padding: 20px;
}

.stat-banner-item .number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-banner-item .label {
    font-size: 16px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 90px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=2050') center/cover;
    opacity: 0.05;
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.testimonials-section .section-subtitle::after {
    background: white;
}

.testimonials-section .section-title,
.testimonials-section .section-title span {
    color: white;
}

.testimonials-section .section-title span::after {
    background: rgba(255,255,255,0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.testimonial-card i.quote {
    font-size: 40px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(42, 157, 143, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(42, 157, 143, 0.05);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-question h4 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    background: linear-gradient(145deg, white, var(--light-bg));
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn.primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 2px solid white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    border: none;
    font-size: 24px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 38px;
    }
    
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-cards-grid,
    .service-cards-grid,
    .doctor-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .page-header h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header .department-icon {
        font-size: 70px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .accordion-header {
        padding: 18px 20px;
    }
    
    .accordion-header h3 {
        font-size: 18px;
    }
    
    .content-inner {
        padding: 25px;
    }
    
    .doctors-grid,
    .services-grid,
    .facilities-list,
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-banner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-banner-item .number {
        font-size: 36px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .feature-cards-grid,
    .service-cards-grid,
    .doctor-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header .department-icon {
        font-size: 60px;
    }
    
    .page-header .breadcrumb {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .accordion-header {
        padding: 15px;
        gap: 12px;
    }
    
    .accordion-header i:first-child {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .accordion-header h3 {
        font-size: 16px;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-box .number {
        font-size: 30px;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .info-item i {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .info-item .value {
        font-size: 16px;
    }
    
    .service-item {
        padding: 18px;
    }
    
    .service-item i {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .service-item span {
        font-size: 14px;
    }
    
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
        font-size: 20px;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .cta-section, .scroll-to-top,
    .testimonials-section, .stats-banner {
        display: none;
    }
    
    .page-header {
        background: none;
        color: black;
        padding: 30px 0;
    }
    
    .page-header .department-icon {
        color: var(--primary);
    }
    
    .accordion-section {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }
    
    .accordion-content {
        max-height: none;
    }
}