/* ========================================
   Barley Hair Transplant - Official Style
   Deep Navy Blue Theme (matching barleyhair.com)
   ======================================== */

:root {
    /* Primary Colors - Bright Blue (from barleyhair.com) */
    --primary-blue: #1E50A2;
    --primary-blue-light: #2E60B2;
    --primary-blue-dark: #0E4092;
    
    /* Accent Colors */
    --accent-gold: #D4A574;
    --accent-orange: #E89B5C;
    
    /* Secondary Colors */
    --soft-blue: #E8F0F8;
    --soft-gold: #FDF6ED;
    
    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.16);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E50A2 0%, #2E60B2 100%);
    --gradient-soft: linear-gradient(135deg, #E8F0F8 0%, #F0F5FA 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-size: 17px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-text-desktop {
    display: inline;
}

.logo-text-mobile {
    display: none;
}

.logo img {
    height: 45px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--primary-blue);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--white);
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

/* Hero Slides Container */
.hero-slides {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s ease-in-out;
}

/* Hero Slide */
.hero-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 80, 162, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h2 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--white);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 35px;
    opacity: 0.95;
    color: var(--white);
}

/* Remove spacing between header and hero */
header + .hero {
    margin-top: 0;
}

/* Remove spacing between hero and next section */
.hero + section {
    margin-top: 0;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 16px 42px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Stats Section (index page) */
.stats {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stats .stat-item {
    padding: 20px;
}

.stats .stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stats .stat-label {
    font-size: 18px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.gold-divider {
    width: 70px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto 24px;
}

.section-title p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 750px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background: var(--bg-light);
}

/* Section spacing - alternating backgrounds removed to preserve each section's custom bg color */
body > section {
    margin: 0;
    padding: 80px 0;
}

.hero {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

header + .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero + section {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

section.bg-light {
    background: var(--bg-light) !important;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.column-text h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.column-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 18px;
    line-height: 1.8;
}

.column-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.column-text a:hover {
    color: var(--accent-gold);
}

.column-media img,
.column-media video {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.service-card h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.service-card p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.why-choose-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
}

.why-choose-card h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.why-choose-card p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Before & After Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 66, 79, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Three Step Process */
.three-step-process {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr !important;
    }
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--soft-blue);
    margin-bottom: 20px;
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
}

.step-card h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.step-card p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Hospital Gallery */
.hospital-gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.hospital-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.hospital-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hospital-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.hospital-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 66, 79, 0.9), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
}

.hospital-caption h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.hospital-caption p {
    font-size: 14px;
    opacity: 0.9;
}

/* Locations (index page - compact tags) - REMOVED: duplicate definition, see line 4182 */

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-blue);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--soft-blue);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 28px;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer-content {
    padding: 0 28px 24px;
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.9;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--soft-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 18px;
    color: var(--text-gray);
}

.contact-item.clickable {
    cursor: pointer;
}

.contact-item.qrcode-card {
    padding: 20px;
}

.contact-item.qrcode-card img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
}

/* Contact Three Column Layout */
.contact-three-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: start;
}

.contact-form-column {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(30, 80, 162, 0.12);
    border: 1px solid rgba(30, 80, 162, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-form-column h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.contact-form-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8eef5;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--text-dark);
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(30, 80, 162, 0.08);
    transform: translateY(-1px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 0;
}

.contact-form .btn-primary,
.contact-form button[type="submit"] {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(30, 80, 162, 0.3);
    display: block;
}

.contact-form .btn-primary:hover,
.contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 80, 162, 0.4);
    background: var(--gradient-primary) !important;
}

.contact-form .btn-primary:active,
.contact-form button[type="submit"]:active {
    transform: translateY(-1px);
}

.about-barley-card {
    margin-top: 30px;
    padding: 35px 30px;
    background: linear-gradient(135deg, #f0f5fa 0%, #e8f0f8 100%);
    border-radius: 16px;
    border: 1px solid rgba(30, 80, 162, 0.1);
    box-shadow: 0 8px 30px rgba(30, 80, 162, 0.08);
    position: relative;
}

.about-barley-card::before {
    content: '\f0f0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: var(--primary-blue);
    opacity: 0.12;
}

.about-barley-card h4 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.about-barley-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.9;
    position: relative;
    z-index: 1;
    margin: 0;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-info-top {
    background: linear-gradient(135deg, #f0f5fa 0%, #e8f0f8 100%);
    padding: 45px 40px;
    border-radius: 16px;
    flex: 1;
    position: relative;
    border: 1px solid rgba(30, 80, 162, 0.1);
    box-shadow: 0 8px 30px rgba(30, 80, 162, 0.08);
}

.contact-info-top::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 48px;
    color: var(--primary-blue);
    opacity: 0.15;
}

.contact-info-top h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-info-top p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.contact-info-bottom {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    overflow: hidden;
    border: 1px solid rgba(30, 80, 162, 0.08);
    transition: all 0.3s ease;
}

.contact-info-bottom:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-bottom img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.contact-info-bottom:hover img {
    transform: scale(1.02);
}

/* Responsive for contact three column */
@media (max-width: 992px) {
    .contact-three-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-column {
        padding: 40px 35px;
    }
    
    .contact-info-top {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .contact-three-column {
        margin-top: 40px;
        gap: 30px;
    }
    
    .contact-form-column {
        padding: 30px 25px;
    }
    
    .contact-form-column h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .contact-info-top {
        padding: 30px 25px;
    }
    
    .contact-info-top h3 {
        font-size: 22px;
    }
    
    .contact-info-top p {
        font-size: 16px;
    }
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 22px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--white);
    opacity: 0.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-details {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 9999;
    align-items: center;
    gap: 10px;
}

.copy-notification.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Page Banner */
.page-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
}

.page-banner p {
    font-size: 22px;
    opacity: 0.95;
    margin-bottom: 35px;
}

/* Reviews Grid - Modern Redesign */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.review-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 45px 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 80, 162, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.review-card::after {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 120px;
    color: var(--primary-blue);
    opacity: 0.05;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(30, 80, 162, 0.15);
    border-color: var(--accent-gold);
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-stars i {
    font-size: 22px;
    color: var(--accent-gold);
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
    transition: transform 0.3s ease;
}

.review-card:hover .review-stars i {
    transform: scale(1.1);
}

.review-content {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
    text-align: justify;
}

.review-author {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: right;
    padding-top: 20px;
    border-top: 2px solid var(--soft-gold);
    position: relative;
    z-index: 1;
}

.review-author::before {
    content: '—';
    margin-right: 8px;
    color: var(--accent-gold);
    font-weight: 400;
}

/* Travel to China Styles - Modern Redesign */
.travel-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    margin-top: 60px;
    align-items: center;
}

.travel-intro-text p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 22px;
}

.travel-intro-text p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.travel-intro-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.travel-intro-text a:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--primary-blue);
}

.travel-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.travel-intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 80, 162, 0.12);
}

.travel-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.travel-intro-image:hover img {
    transform: scale(1.03);
}

.travel-stat-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fc 100%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(30, 80, 162, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.travel-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.travel-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(30, 80, 162, 0.15);
    border-color: var(--accent-gold);
}

.travel-stat-card:hover::before {
    transform: scaleX(1);
}

.travel-stat-card i {
    font-size: 52px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.travel-stat-card:hover i {
    transform: scale(1.1);
}

.travel-stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.travel-stat-card p {
    font-size: 15px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.travel-branches-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #eef3f9 100%);
}

.travel-branches-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    margin-top: 60px;
    align-items: center;
}

.travel-branches-text p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 22px;
}

.travel-branches-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fc 100%);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(30, 80, 162, 0.1);
    border: 2px solid rgba(30, 80, 162, 0.05);
    transition: all 0.3s ease;
}

.travel-branches-cta:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 16px 40px rgba(30, 80, 162, 0.15);
}

.travel-branches-cta .btn {
    margin-bottom: 20px;
    padding: 18px 48px;
    font-size: 17px;
}

.cta-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

.travel-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.travel-service-card {
    background: linear-gradient(145deg, var(--white) 0%, #fafbfc 100%);
    padding: 45px 38px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(30, 80, 162, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.travel-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.travel-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(30, 80, 162, 0.15);
    border-color: var(--accent-gold);
}

.travel-service-card:hover::before {
    transform: scaleX(1);
}

.travel-service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(30, 80, 162, 0.25);
    transition: all 0.3s ease;
}

.travel-service-card:hover .travel-service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(30, 80, 162, 0.3);
}

.travel-service-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.travel-service-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 24px;
    text-align: center;
}

.travel-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(30, 80, 162, 0.08);
    padding-top: 20px;
}

.travel-service-features li {
    font-size: 15px;
    color: var(--text-gray);
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.travel-service-features li:hover {
    transform: translateX(5px);
}

.travel-service-features li i {
    color: var(--accent-gold);
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.travel-why-choose {
    background: linear-gradient(135deg, var(--bg-light) 0%, #eef3f9 100%);
}

.travel-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin-top: 60px;
}

.travel-why-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(30, 80, 162, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.travel-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(30, 80, 162, 0.12);
    border-color: var(--accent-gold);
}

.travel-why-item > i {
    font-size: 42px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(30, 80, 162, 0.2);
    transition: transform 0.3s ease;
}

.travel-why-item:hover > i {
    transform: scale(1.1);
}

.travel-why-item h4 {
    font-size: 21px;
    color: var(--primary-blue);
    margin-bottom: 14px;
    font-weight: 700;
}

.travel-why-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.travel-cta-center {
    text-align: center;
    margin-top: 70px;
    padding: 60px 50px;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fc 100%);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(30, 80, 162, 0.1);
    border: 2px solid rgba(30, 80, 162, 0.05);
    position: relative;
    overflow: hidden;
}

.travel-cta-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
}

.travel-cta-center p {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.travel-cta-center .btn {
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .travel-intro-grid,
    .travel-branches-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .travel-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .travel-intro-stats {
        grid-template-columns: 1fr;
    }
    
    .travel-services-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-cta-center {
        padding: 40px 25px;
    }
    
    .travel-intro-image {
        margin-top: 30px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .page-banner h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 50%;
        max-width: 240px;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 12px 16px;
    }
    
    nav ul li {
        border-bottom: 1px solid #e0e0e0;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }
    
    .logo-text-desktop {
        display: none;
    }
    
    .logo-text-mobile {
        display: inline;
    }
    
    .hero {
        height: 260px;
        padding: 0;
    }
    
    .hero-slide {
        height: 260px;
    }
    
    .hero h1 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .hero-content h2 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .hero-content p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
    
    .page-banner p {
        font-size: 18px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Hospital Gallery Mobile */
    .hospital-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hospital-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 220px;
    }
    
    .hero-slide {
        height: 220px;
    }
    
    .hero h1 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .hero-content h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .hero p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .hero .btn {
        padding: 7px 18px;
        font-size: 12px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .services-grid,
    .why-choose-grid,
    .steps-grid,
    .testimonials-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hospital Gallery Mobile */
    .hospital-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hospital-item img {
        height: 200px;
    }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h2 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.blog-content h2 a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--accent-gold);
}

.blog-content p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 22px;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-gold);
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 34px;
    color: var(--primary-blue);
    margin: 36px 0 18px;
}

.policy-content h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin: 30px 0 15px;
}

.policy-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 18px;
    line-height: 1.9;
}

.policy-content ul {
    margin-left: 24px;
    margin-bottom: 18px;
}

.policy-content ul li {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 12px;
}

.contact-info-box {
    background: var(--soft-blue);
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.contact-info-box i {
    margin-right: 10px;
    color: var(--primary-blue);
}

.policy-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

/* Author Profile */
.author-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.author-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.author-info h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.author-title {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.author-stats .stat-box {
    text-align: center;
    padding: 20px;
    background: var(--soft-blue);
    border-radius: 8px;
}

.author-stats .stat-box h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.author-stats .stat-box p {
    font-size: 14px;
    color: var(--text-gray);
}

.author-bio {
    max-width: 800px;
    margin: 0 auto;
}

.author-bio h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin: 30px 0 15px;
}

.author-bio h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin: 25px 0 12px;
}

.author-bio p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.author-bio ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.author-bio ul li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.testimonial-highlight {
    background: var(--soft-gold);
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-gold);
}

.testimonial-highlight p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-highlight .testimonial-author {
    font-weight: 600;
    color: var(--primary-blue);
    font-style: normal;
}

.author-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.author-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.author-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .author-profile {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .author-stats {
        grid-template-columns: 1fr;
    }
    
    .policy-actions {
        flex-direction: column;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero-slide {
        height: 300px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Hide video CTA buttons and footer navigation on mobile */
    .btn-video-cta,
    .footer-grid {
        display: none !important;
    }
    
    /* Move back-to-top button higher on mobile */
    .back-to-top {
        bottom: 120px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Technology Grid */
.technology {
    padding: 80px 0;
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.tech-video {
    text-align: center;
}

.tech-video .btn-video-cta {
    display: inline-block;
    margin: 20px auto 0;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 80, 162, 0.3);
}

.tech-video .btn-video-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 80, 162, 0.4);
}

.tech-video .btn-video-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tech-video .btn-video-cta:hover i {
    transform: translateY(3px);
}

.tech-text h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.tech-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--text-dark);
}

.tech-feature i {
    color: var(--primary-blue);
    font-size: 20px;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: var(--bg-light);
}

.enhanced-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--soft-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enhanced-section-header h1 {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.enhanced-section-header p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
}

.service-overview-accent {
    margin-bottom: 60px;
}

.overview-accent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-accent-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.overview-accent-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.overview-accent-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-accent-content h3 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.overview-accent-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.overview-accent-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.overview-accent-feature {
    display: flex;
    align-items: start;
    gap: 15px;
}

.overview-accent-icon {
    width: 50px;
    height: 50px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.overview-accent-text h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.overview-accent-text p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Geo Section */
.geo-section {
    padding: 60px 0;
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.geo-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.geo-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.geo-card i {
    font-size: 28px;
    color: var(--primary-blue);
}

.geo-card ul {
    list-style: none;
}

.geo-card ul li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.geo-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 14px;
}

/* Contact Cards */
.contact-cards-row {
    margin-bottom: 50px;
}

.contact-cards-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.compact-contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compact-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.compact-contact-card.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.compact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.compact-contact-card.primary .compact-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.compact-details h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.compact-details p {
    font-size: 16px;
    opacity: 0.9;
}

/* Consultation Section */
.consultation-row {
    margin-top: 50px;
}

.consultation-box-full {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.consultation-box-full h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.qrcode-section {
    text-align: center;
}

.qrcode-display {
    background: var(--soft-blue);
    padding: 30px;
    border-radius: 8px;
}

.qrcode-display img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.qrcode-display p {
    font-size: 14px;
    color: var(--text-gray);
}

.benefits-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--soft-blue);
    border-radius: 8px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 18px;
    color: var(--primary-blue);
}

/* Patient Photos Section */
.patient-photos {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
}

.photo-caption h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.photo-caption p {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive adjustments for new styles */
@media (max-width: 992px) {
    .tech-grid,
    .overview-accent-grid,
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enhanced-section-header h1 {
        font-size: 38px;
    }
    
    .overview-accent-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .overview-accent-features,
    .benefits-grid-full {
        grid-template-columns: 1fr;
    }
    
    .enhanced-section-header h1 {
        font-size: 32px;
    }
    
    .enhanced-section-header p {
        font-size: 17px;
    }
    
    .consultation-box-full {
        padding: 30px;
    }
}

/* Scroll margin for anchor links */
#contact, #faq {
    scroll-margin-top: 100px;
}













/* ========================================
   Services Page - Service Details
   ======================================== */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-detail-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-detail-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 30px;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--white);
}

.service-info-section {
    margin-bottom: 25px;
}

.service-info-section h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-info-section h4 i {
    color: var(--accent-gold);
}

.service-info-section p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.service-info-section ul {
    list-style: none;
    padding-left: 0;
}

.service-info-section ul li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.service-info-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 14px;
}

.service-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.service-feature-item i {
    color: var(--primary-blue);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.column-text,
.column-media {
    width: 100%;
}

/* ========================================
   Technology Page - Featured Tech
   ======================================== */
.featured-tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.featured-tech-video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.featured-tech-content h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.featured-tech-content p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 30px;
}

.featured-tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.featured-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.featured-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.featured-feature-text h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.featured-feature-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Technology Cards */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tech-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.tech-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-align: center;
}

.tech-card h4 {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.tech-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.tech-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-card-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.tech-card-feature i {
    color: var(--accent-gold);
    font-size: 16px;
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--soft-blue);
    font-size: 15px;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.highlight-col {
    background: rgba(30, 80, 162, 0.05);
    font-weight: 600;
}

.text-green {
    color: #10b981;
    font-weight: 600;
}

.text-yellow {
    color: #f59e0b;
}

.text-red {
    color: #ef4444;
}

.check-green {
    color: #10b981;
}

.cross-red {
    color: #ef4444;
}

/* Patents Detailed Grid */
.patents-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.patent-detail-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.patent-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.patent-detail-image {
    width: 100%;
    aspect-ratio: 750 / 1061;
    overflow: hidden;
}

.patent-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patent-detail-content {
    padding: 25px;
}

.patent-detail-number {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.patent-detail-content h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.patent-detail-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 48px;
    font-weight: 700;
    color: var(--soft-blue);
    opacity: 0.5;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
}

.process-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Doctors Page
   ======================================== */
.doctors-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: var(--soft-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h1 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.doctors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.doctor-profile {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.doctor-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.doctor-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 314 / 461;
    overflow: hidden;
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.doctor-details {
    padding: 30px;
}

.doctor-details h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.doctor-position {
    font-size: 16px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.doctor-bio {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.doctor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    padding: 6px 15px;
    background: var(--soft-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.why-choose-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.why-choose-section .section-title h1,
.why-choose-section .section-title h2,
.why-choose-section .section-title h3 {
    color: #1e50a2 !important;
}
.why-choose-section .section-title p {
    color: #4a5568 !important;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card.enhanced {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-card.enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.trust-item {
    text-align: center;
}

.trust-item i {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-gray);
}

.safety-guarantees {
    padding: 80px 0;
    background: var(--white);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.safety-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.safety-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.safety-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   Cases Page
   ======================================== */
/* Cases Section */
.cases-section {
    padding: 80px 0;
    background: var(--white);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--soft-blue);
    color: var(--primary-blue);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--accent-gold);
}

.cases-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.case-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Cases Page - Results Stats Section
   ======================================== */
.results-stats-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(30, 80, 162, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   Cases Page - Real Cases Section
   ======================================== */
.real-cases-section {
    padding: 80px 0;
    background: var(--white);
}

.cases-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cases-showcase-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.cases-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.cases-showcase-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.cases-showcase-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   Cases Page - Superior Section
   ======================================== */
.superior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.superior-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.superior-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.superior-card h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.superior-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   FAQ Page
   ======================================== */
.faq-categories {
    padding: 80px 0;
    background: var(--white);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-tab {
    padding: 10px 25px;
    background: var(--soft-blue);
    color: var(--primary-blue);
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-blue);
    color: var(--white);
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

/* ========================================
   FAQ Page - Quick Facts Section
   ======================================== */
.quick-facts-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.quick-fact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
}

.quick-fact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.quick-fact-card.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.quick-fact-card.primary::before {
    background: var(--accent-gold);
}

.fact-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(30, 80, 162, 0.15);
}

.quick-fact-card.primary .fact-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.fact-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 10px;
}

.quick-fact-card.primary .fact-number {
    color: var(--white);
}

.fact-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.quick-fact-card.primary .fact-content h4 {
    color: var(--white);
}

.fact-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.quick-fact-card.primary .fact-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-showcase-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-showcase-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--white);
    flex-shrink: 0;
}

.benefit-showcase-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 18px;
    font-weight: 600;
}

.benefit-showcase-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.9;
    text-align: left;
}

.locations {
    padding: 80px 0;
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.location-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-item i {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.location-item h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.location-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.why-choose-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--white);
    flex-shrink: 0;
}

.why-choose-item h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 18px;
    font-weight: 600;
}

.why-choose-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.9;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .featured-tech,
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-container,
    .patents-detailed-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-tech-features,
    .tech-cards-grid,
    .patents-detailed-grid,
    .process-grid,
    .doctors-container,
    .features-showcase,
    .stats-grid,
    .cases-showcase-grid,
    .superior-grid,
    .quick-facts-grid,
    .benefits-showcase-grid,
    .locations-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Clinic Locations - Friend Links Style */
.clinic-locations-links {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

/* Mobile only: hide clinic locations link section in footer */
@media (max-width: 768px) {
    .clinic-locations-links {
        display: none !important;
    }
}

.clinic-locations-links .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.clinic-locations-links h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.clinic-locations-links p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.clinic-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.clinic-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.clinic-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   A11y / Contrast Safeguards (Prevent AI-generated same-color-on-same-color)
   ======================================== */
/* --- Dark / Navy Blue Backgrounds -> force light text */
[class*="-hero"] h1, [class*="-hero"] h2, [class*="-hero"] h3, [class*="-hero"] p,
[class*="cta"] h1, [class*="cta"] h2, [class*="cta"] h3, [class*="cta"] p,
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section p,
.hair-loss-hero h1, .hair-loss-hero h2, .hair-loss-hero h3, .hair-loss-hero p,
.hair-loss-hero *,
footer h1, footer h2, footer h3, footer h4, footer p, footer a,
.travel-section h1, .travel-section h2, .travel-section h3, .travel-section p,
.page-banner h1, .page-banner h2, .page-banner p {
    color: #ffffff !important;
}

/* --- Light Backgrounds -> force dark blue headings (prevents white on white) */
.content-section.bg-light .section-title h1, .content-section.bg-light .section-title h2,
.content-section.bg-light .section-title h3,
.testimonials .section-title h1, .testimonials .section-title h2,
.testimonials .section-title h3,
.faq .section-title h1, .faq .section-title h2, .faq .section-title h3,
.hospital-gallery .section-title h1, .hospital-gallery .section-title h2,
.hospital-gallery .section-title h3,
section .section-title h1, section .section-title h2, section .section-title h3,
.section-header h1, .section-header h2, .section-header h3,
.results-stats-section .section-title h1, .results-stats-section .section-title h2,
.real-cases-section .section-title h1, .real-cases-section .section-title h2,
body > section .section-title h2 {
    color: var(--primary-blue) !important;
}

/* --- Captions Safeguard: when gradient fails, keep text readable on any bg */
.photo-caption h4, .photo-caption p,
.hospital-caption h4, .hospital-caption p,
.case-caption h4, .case-caption p {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* ========================================
   FINAL SAFETY LAYER: Dark/Blue Gradient Sections -> Force White Text
   (runs AFTER the generic blue-heading rule above, so our !important wins)
   COVERAGE PHILOSOPHY: Explicit attribute matches only -> no generic class that
   might appear on light backgrounds. [style*="primary-blue"] catches any element
   with inline-style blue gradient, regardless of class name.
   ======================================== */
section[class*="-why-choose"] .section-title h1,
section[class*="-why-choose"] .section-title h2,
section[class*="-why-choose"] .section-title h3,
section[class*="-why-choose"] .section-title p,
section[class*="-trust-"] .section-title h1,
section[class*="-trust-"] .section-title h2,
section[class*="-trust-"] .section-title h3,
section[class*="-trust-"] .section-title p,
section[class*="density-trust"] .section-title h1,
section[class*="density-trust"] .section-title h2,
section[class*="density-trust"] .section-title h3,
section[class*="density-trust"] .section-title p,
section[class*="sideburn-grafts"] .section-title h1,
section[class*="sideburn-grafts"] .section-title h2,
section[class*="sideburn-grafts"] .section-title h3,
section[class*="sideburn-grafts"] .section-title p,
[style*="primary-blue"] .section-title h1,
[style*="primary-blue"] .section-title h2,
[style*="primary-blue"] .section-title h3,
[style*="primary-blue"] .section-title p {
    color: #ffffff !important;
}
[style*="primary-blue"] .section-title p,
section[class*="-why-choose"] .section-title p,
section[class*="-trust-"] .section-title p,
section[class*="density-trust"] .section-title p {
    color: rgba(255, 255, 255, 0.92) !important;
}
