/* style.css - Main Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0F2C59;
    --primary-light: #1A3E75;
    --secondary: #00B4D8;
    --secondary-hover: #0077B6;
    --accent: #E0A96D;
    --accent-hover: #D09351;
    --dark: #1E293B;
    --light: #F8FAFC;
    --muted: #64748B;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --success: #10B981;
    --error: #EF4444;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 44, 89, 0.06), 0 8px 16px -6px rgba(15, 44, 89, 0.04);
    --shadow-lg: 0 20px 40px -10px rgba(15, 44, 89, 0.1), 0 10px 20px -8px rgba(15, 44, 89, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 90px 0;
}

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

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

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    gap: 8px;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* Header Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts {
    display: flex;
    gap: 24px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact-item svg {
    color: var(--secondary);
}

.lang-selector {
    display: flex;
    gap: 12px;
}

.lang-link {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.lang-link.active {
    color: var(--secondary);
    font-weight: 700;
    border-bottom: 2px solid var(--secondary);
}

/* Main Navigation */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 44, 89, 0.95), rgba(15, 44, 89, 0.85)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 140px 0 100px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--secondary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat-item h4 {
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 800;
}

.hero-stat-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

/* Trust Stats Bar */
.trust-stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-stats-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-stat-box:not(:last-child) {
    border-right: 1px solid var(--border);
}

.trust-stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.trust-stat-box p {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cards (Treatments, Hospitals, Doctors) */
.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 180, 216, 0.2);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background-color: #eee;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card-desc {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Treatments Cards specifically */
.treatment-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 180, 216, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover .treatment-card-icon {
    background-color: var(--secondary);
    color: var(--white);
    transform: rotate(5deg);
}

.treatment-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
    gap: 12px;
}

.treatment-meta-item p {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 500;
}

.treatment-meta-item span {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
}

/* Hospital Card Specifics */
.hospital-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.hospital-tag {
    background-color: rgba(16, 185, 129, 0.08);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
}

.hospital-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--muted);
}

.hospital-meta svg {
    color: var(--secondary);
    margin-right: 4px;
}

/* Doctor Cards Specifics */
.doctor-hospital-name {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.doctor-experience {
    background-color: rgba(224, 169, 109, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 16px;
}

/* Interactive Patient Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 20px 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-badge {
    position: absolute;
    top: 25px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -16px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -16px;
}

.timeline-item:hover .timeline-badge {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.timeline-panel {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-panel {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 180, 216, 0.2);
}

.timeline-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.timeline-panel p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Testimonial slider */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-patient {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.patient-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    overflow: hidden;
}

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

.patient-info {
    text-align: left;
}

.patient-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.patient-info p {
    font-size: 0.85rem;
    color: var(--muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    border: none;
}

.slider-dot.active {
    background-color: var(--secondary);
    width: 24px;
    border-radius: 10px;
}

/* FAQ Accordion */
.faq-grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background-color: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(0, 180, 216, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: var(--muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
    max-height: 300px;
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: var(--dark);
    outline: none;
    background-color: var(--light);
}

.form-control:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
}

/* Sidebar Inquiry Card */
.sidebar-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 120px;
}

/* Details Page Layouts */
.detail-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: start;
}

.detail-header-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
    margin-bottom: 60px;
}

.detail-header-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.detail-breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.detail-breadcrumbs a:hover {
    color: var(--secondary);
}

.detail-meta-horizontal {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.detail-meta-horizontal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.detail-meta-horizontal-item svg {
    color: var(--secondary);
}

/* Detail Section formatting */
.detail-section {
    margin-bottom: 40px;
}

.detail-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.detail-section p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.detail-bullets {
    list-style: none;
    margin-bottom: 24px;
}

.detail-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--muted);
}

.detail-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 800;
}

/* Cost table */
.cost-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.cost-table th, .cost-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.cost-table th {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
}

.cost-table tr:nth-child(even) td {
    background-color: var(--light);
}

/* WhatsApp float button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    font-size: 32px;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Footer styling */
.footer {
    background-color: #081B38;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--secondary);
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-logo span {
    color: var(--secondary);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

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

.footer-contact-info-item {
    display: flex;
    gap: 12px;
}

.footer-contact-info-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 30px 0;
    background-color: #051226;
    font-size: 0.85rem;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: var(--secondary);
}

.footer-disclaimer-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    line-height: 1.5;
}

/* Tabs & Filters for Treatments, Doctors, Hospitals */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Alert styles for success/error */
.alert {
    padding: 16px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Mobile Lang Switcher inside Menu */
.mobile-lang-switcher-wrapper {
    display: none;
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.mobile-lang-switcher {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-lang-switcher a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.mobile-lang-switcher a.active {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.mobile-lang-switcher span {
    color: var(--border);
}

/* JCI Accreditation Badges Grid */
.trust-seals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.trust-seal-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-seal-item i {
    color: var(--secondary);
}

/* Search bar styling */
.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.search-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 1.1rem;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 1.05rem;
    border: 2px solid var(--border);
    border-radius: 40px;
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

/* Doctors Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.pagination-link.active, .pagination-link:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Video Testimonial Cards */
.video-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background-color: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

