/* ========================================
   Barley Hair Transplant - Natural Medical Style
   ======================================== */

:root {
    /* Primary Colors - Navy Gold Theme */
    --primary-blue: #001F5B;
    --primary-blue-light: #1a3570;
    --primary-blue-dark: #001540;
    
    /* Accent Colors */
    --accent-gold: #FFD700;
    --accent-gold-hover: #E6C200;
    --accent-gold-soft: #FFF8DC;
    
    /* Secondary Colors */
    --soft-blue: #EBF0F8;
    --soft-gold: #FFF8E1;
    --soft-indigo: #E8EAF6;
    
    /* Neutral Colors */
    --text-dark: #1a1a2e;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-light: #F5F7FA;
    --white: #FFFFFF;
    
    /* Shadows for depth and dimension */
    --shadow-sm: 0 2px 8px rgba(0, 31, 91, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 31, 91, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 31, 91, 0.15);
    --shadow-xl: 0 16px 60px rgba(0, 31, 91, 0.18);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #001F5B 0%, #1a3570 50%, #2d4a8a 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    --gradient-soft: linear-gradient(135deg, #EBF0F8 0%, #F5F7FA 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 31, 91, 0.85) 0%, rgba(0, 31, 91, 0.5) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-text-desktop {
    display: inline;
}

.logo-text-mobile {
    display: none;
}

.logo img {
    height: 50px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 12px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.5);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover, nav a.active {
    color: var(--primary-blue);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--accent-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.back-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    position: relative;
    height: 540px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 40px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 900;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    opacity: 1;
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 16px 44px;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: var(--accent-gold-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 15px;
    box-shadow: none;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Section */
section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.section-title .gold-divider {
    width: 80px;
    height: 5px;
    background: var(--gradient-gold);
    margin: 0 auto 22px;
    border-radius: 3px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    grid-column: 1 / -1;
}

.stat-box {
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--bg-light) 100%);
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 31, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-box h3 {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 6px;
    font-weight: 800;
}

.stat-box p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.about-video {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--white);
}

.about-video video {
    width: 100%;
    display: block;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.why-choose-card {
    background: var(--white);
    padding: 44px 32px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 31, 91, 0.2);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.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 26px;
    font-size: 40px;
    color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0, 31, 91, 0.3);
}

.why-choose-card h3 {
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
}

.why-choose-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 44px 32px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::after {
    left: 100%;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--bg-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    font-size: 40px;
    color: var(--primary-blue);
    border: 3px solid rgba(0, 31, 91, 0.1);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Technology Section */
.technology {
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tech-video {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--white);
}

.tech-video video {
    width: 100%;
    display: block;
}

.tech-text h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.tech-text p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
}

.tech-features {
    margin-top: 32px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px 20px;
    background: var(--soft-blue);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    background: var(--soft-gold);
    transform: translateX(5px);
}

.tech-feature i {
    color: var(--accent-gold);
    font-size: 24px;
    margin-top: 2px;
}

.tech-feature span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
    border: 4px solid var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    background: linear-gradient(transparent, rgba(0, 31, 91, 0.95));
    color: white;
}

.gallery-overlay h4 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 15px;
    opacity: 0.9;
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.photo-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--white);
    background: var(--white);
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.photo-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    background: var(--white);
    padding: 24px;
    text-align: center;
}

.photo-caption h4 {
    color: var(--primary-blue);
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
}

.photo-caption p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 44px;
    border-radius: 28px;
    border-left: 5px solid var(--accent-gold);
    border-top: 2px solid rgba(0, 31, 91, 0.1);
    border-right: 2px solid rgba(0, 31, 91, 0.1);
    border-bottom: 2px solid rgba(0, 31, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 80px;
    color: var(--soft-blue);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 22px;
    font-size: 18px;
    letter-spacing: 4px;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.testimonial-info h4 {
    color: var(--primary-blue);
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* Hospital Environment */
.hospital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.hospital-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--white);
    background: var(--white);
}

.hospital-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.hospital-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.hospital-caption {
    background: var(--white);
    padding: 24px;
}

.hospital-caption h4 {
    color: var(--primary-blue);
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
}

.hospital-caption p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Locations */
.locations {
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.location-item {
    background: var(--soft-blue);
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.location-item:hover {
    background: var(--gradient-primary);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-item i {
    font-size: 30px;
    margin-bottom: 12px;
    display: block;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.location-item:hover i {
    color: var(--accent-gold);
}

.location-item span {
    font-weight: 600;
    font-size: 15px;
}

/* FAQ */
.faq-categories {
    padding: 100px 0;
    background: var(--bg-light);
}

.enhanced-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.08), rgba(255, 215, 0, 0.1));
    color: var(--primary-blue);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.enhanced-section-header h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.enhanced-section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.category-tab {
    background: var(--white);
    color: var(--text-gray);
    border: 2px solid var(--soft-blue);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-tab:hover {
    border-color: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--gradient-primary);
    color: var(--accent-gold);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--soft-blue);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 17px;
}

.faq-question:hover {
    color: var(--primary-blue);
    background: var(--soft-blue);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    padding: 0 32px 28px;
    max-height: 600px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.contact-item {
    background: var(--gradient-primary);
    color: white;
    padding: 48px 36px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-item i {
    font-size: 46px;
    margin-bottom: 22px;
    display: block;
    color: var(--accent-gold);
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    opacity: 0.95;
    font-size: 16px;
    line-height: 1.6;
}

.contact-item.qrcode-card {
    position: relative;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.contact-item.qrcode-card img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 18px;
    background: white;
    padding: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Copy notification */
.copy-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.copy-notification.show {
    display: flex;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.copy-notification i {
    color: white;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Contact item clickable */
.contact-item.clickable {
    cursor: pointer;
}

.contact-item.clickable:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #001540 0%, #001F5B 50%, #1a3570 100%);
    color: white;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--accent-gold);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 110px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
    }
    
    .logo-text-desktop {
        display: none;
    }
    
    .logo-text-mobile {
        display: inline;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: 0 !important;
        width: 75% !important;
        max-width: 260px !important;
        height: 100vh !important;
        background: var(--white) !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15) !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease, opacity 0.4s ease !important;
        padding-top: 80px !important;
        z-index: 1000 !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    nav.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Navigation Overlay */
    .nav-overlay {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.4s ease, visibility 0.4s ease !important;
    }
    
    .nav-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 16px;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav a {
        font-size: 15px;
        padding: 10px 16px;
        display: block;
    }
    
    .back-to-top {
        display: none !important;
    }
    
    .hero-slide {
        height: 400px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about-grid, .tech-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }
    
    .stat-box {
        padding: 24px 16px;
    }
    
    .stat-box h3 {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    /* Footer Responsive */
    .footer-grid {
        display: none;
    }
    
    .footer-bottom {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    
    .footer-bottom p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .gallery-grid,
    .hospital-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Doctors Section */
.doctors-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    background: var(--soft-blue);
    color: var(--primary-blue);
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.doctors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.doctor-profile {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid rgba(0, 31, 91, 0.1);
}

.doctor-profile:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.doctor-photo-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: var(--soft-blue);
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-profile:hover .doctor-photo {
    transform: scale(1.05);
}

.doctor-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.doctor-details {
    padding: 38px;
}

.doctor-details h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 800;
}

.doctor-position {
    font-size: 16px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 18px;
}

.doctor-bio {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 26px;
}

.doctor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.expertise-tag {
    background: var(--soft-blue);
    color: var(--primary-blue);
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: var(--gradient-primary);
    color: var(--accent-gold);
    transform: scale(1.05);
}

/* Cases Section Styles */
.cases-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

.filter-btn {
    padding: 14px 32px;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
}

.cases-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.case-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--white);
    background: var(--white);
}

.case-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.case-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-item:hover img {
    transform: scale(1.08);
}

/* Results Stats Section Styles */
.results-stats-section {
    padding: 100px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.stat-card {
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--bg-light) 100%);
    padding: 48px 36px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 31, 91, 0.1);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.stat-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.stat-icon-wrapper i {
    color: var(--accent-gold);
    font-size: 40px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Real Cases Showcase Section Styles */
.real-cases-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.cases-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cases-showcase-card {
    background: var(--white);
    padding: 52px 44px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.cases-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.showcase-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: var(--shadow-md);
}

.showcase-icon i {
    color: var(--accent-gold);
    font-size: 44px;
}

.cases-showcase-card h3 {
    color: var(--text-dark);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.cases-showcase-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Mobile Responsive for Cases Section */
@media (max-width: 992px) {
    .cases-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-gallery {
        grid-template-columns: 1fr;
    }
    
    .case-item img {
        height: 220px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
    
    .stat-number {
        font-size: 34px;
    }
    
    .cases-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-showcase-card {
        padding: 40px 32px;
    }
    
    .showcase-icon {
        width: 85px;
        height: 85px;
    }
    
    .showcase-icon i {
        font-size: 38px;
    }
}



/* Technology Cards Grid */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.tech-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.tech-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.tech-card-icon {
    width: 78px;
    height: 78px;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 32px;
    color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.tech-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 800;
}

.tech-card h4 {
    color: var(--accent-gold);
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.tech-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.tech-card-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tech-card-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--soft-blue);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-card-feature:hover {
    background: var(--soft-gold);
    transform: translateX(8px);
}

.tech-card-feature i {
    color: var(--accent-gold);
    font-size: 16px;
}

.tech-card-feature span {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

/* Comparison Cards */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.comparison-card {
    background: var(--white);
    border-radius: 28px;
    padding: 48px 36px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid transparent;
}

.comparison-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.comparison-card.primary {
    border: 4px solid var(--accent-gold);
    transform: scale(1.02);
}

.comparison-badge {
    position: absolute;
    top: -16px;
    right: 32px;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.comparison-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--soft-blue);
}

.comparison-header i {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.comparison-header h3 {
    color: var(--text-dark);
    font-size: 24px;
    margin: 0;
    font-weight: 800;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--soft-blue);
}

.comparison-feature:last-child {
    border-bottom: none;
}

.comparison-label {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 600;
}

.comparison-value {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

.comparison-value i.fa-check {
    color: var(--accent-gold);
    font-size: 20px;
}

.comparison-value i.fa-times {
    color: #E57373;
    font-size: 20px;
}

/* Patents Grid */
.patents-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.patent-detail-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.patent-detail-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.patent-detail-image {
    width: 100%;
    height: 220px;
    background: var(--soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.patent-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    background: var(--white);
}

.patent-detail-content {
    padding: 34px;
    flex: 1;
}

.patent-detail-number {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.patent-detail-content h4 {
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 700;
}

.patent-detail-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section - Redesigned */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.08), rgba(255, 215, 0, 0.1));
    color: var(--primary-blue);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 72px;
}

.feature-card.enhanced {
    background: var(--white);
    padding: 40px 36px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card.enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.feature-card.enhanced:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.08), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 32px;
    transition: all 0.4s ease;
}

.feature-card.enhanced:hover .feature-icon-wrapper {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    transform: rotate(5deg) scale(1.1);
}

.feature-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    background: var(--white);
    padding: 56px 48px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.trust-item {
    text-align: center;
    color: var(--text-dark);
    padding: 24px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: var(--soft-gold);
    transform: translateY(-6px);
}

.trust-item i {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.trust-item h4 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 900;
    color: var(--primary-blue);
}

.trust-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Safety Guarantees Section */
.safety-guarantees {
    padding: 100px 0;
    background: var(--white);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.safety-card {
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.03), rgba(255, 215, 0, 0.05));
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.safety-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.safety-card:hover::before {
    opacity: 1;
}

.safety-icon {
    width: 96px;
    height: 96px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 42px;
    color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.safety-card:hover .safety-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.safety-card h3 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.safety-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Quick Facts Section */
.quick-facts-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.quick-fact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.quick-fact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.quick-fact-card.primary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.quick-fact-card.primary:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.fact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.08), rgba(255, 215, 0, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 26px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-fact-card.primary .fact-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.08), rgba(255, 215, 0, 0.1));
    color: var(--primary-blue);
}

.quick-fact-card:hover .fact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.fact-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fact-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1.2;
}

.quick-fact-card.primary .fact-number {
    color: var(--accent-gold);
}

.fact-content h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.quick-fact-card.primary .fact-content h4 {
    color: var(--text-dark);
}

.fact-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.quick-fact-card.primary .fact-content p {
    color: var(--text-gray);
}

/* Photo Items */
.photo-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.photo-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.photo-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    padding: 24px 20px;
}

.photo-caption h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.photo-caption p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Hospital Grid */
.hospital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.hospital-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.hospital-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.hospital-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hospital-item:hover img {
    transform: scale(1.05);
}

.hospital-caption {
    padding: 20px 20px 24px;
}

.hospital-caption h4 {
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
}

.hospital-caption p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Responsive for tablet screens */
@media (max-width: 992px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .doctors-section,
    .why-choose-section,
    .faq-categories {
        padding: 70px 0;
    }

    .section-header h2,
    .enhanced-section-header h1 {
        font-size: 32px;
    }

    .section-header p,
    .enhanced-section-header p {
        font-size: 16px;
    }

    .doctors-container {
        grid-template-columns: 1fr;
    }

    .doctor-photo-wrapper {
        height: 360px;
    }

    .features-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card.enhanced {
        padding: 32px 28px;
    }

    .feature-icon-wrapper {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .trust-indicators {
        grid-template-columns: 1fr 1fr;
        padding: 40px 28px;
        gap: 24px;
    }
    
    .trust-item {
        padding: 20px 12px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .safety-card {
        padding: 40px 28px;
    }
    
    .safety-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .faq-question {
        padding: 22px 24px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 24px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 22px;
    }
    
    .quick-facts-section,
    .testimonials {
        padding: 70px 0;
    }
    
    .quick-facts-grid,
    .testimonials-grid,
    .hospital-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-fact-card {
        padding: 28px 24px;
    }
    
    .fact-icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .fact-number {
        font-size: 28px;
    }
    
    .fact-content h4 {
        font-size: 16px;
    }
    
    .photo-item img {
        height: 240px;
    }
    
    .testimonial-card {
        padding: 28px 24px;
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .tech-cards-grid,
    .comparison-cards,
    .patents-detailed-grid,
    .steps-grid,
    .hospital-grid,
    .achievements-grid,
    .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card,
    .hospital-item,
    .achievement-card {
        padding: 36px 28px;
    }
    
    .step-number {
        font-size: 56px;
        top: 12px;
        left: 20px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }
    
    .hospital-item img {
        height: 220px;
    }
    
    .achievement-icon {
        width: 75px;
        height: 75px;
        font-size: 34px;
    }
    
    /* Timeline Responsive */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        left: 30px !important;
        transform: translate(-50%, -50%);
    }
    
    .patents-grid,
    .values-grid,
    .promises-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card,
    .promise-card {
        padding: 36px 28px;
    }
    
    .value-icon,
    .promise-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    /* Our Services Responsive */
    .service-detail-card {
        grid-template-columns: 1fr !important;
    }
    
    .service-detail-card:nth-child(even) {
        grid-template-columns: 1fr !important;
    }
    
    .service-detail-card:nth-child(even) .service-detail-image,
    .service-detail-card:nth-child(even) .service-detail-content {
        order: initial;
    }
    
    .service-detail-image {
        min-height: 300px;
    }
    
    .service-detail-content {
        padding: 32px 28px;
    }
    
    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .service-detail-content h3 {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .service-info-section h4 {
        font-size: 16px;
    }
    
    .service-detail-features {
        grid-template-columns: 1fr;
    }
    
    .service-feature-item {
        padding: 14px 18px;
    }
    
    /* Featured Technology Responsive */
    .featured-tech {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-tech-video video {
        min-height: 300px;
    }
    
    .featured-tech-features {
        grid-template-columns: 1fr;
    }
    
    /* Hair Transplant Process Responsive */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-card {
        padding: 28px;
    }
    
    .process-number {
        font-size: 48px;
    }
    
    .process-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.achievement-card {
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--bg-light) 100%);
    padding: 48px 36px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 31, 91, 0.1);
    box-shadow: var(--shadow-sm);
}

.achievement-card:hover {
    transform: translateY(-12px);
    background: var(--white);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.achievement-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    font-size: 40px;
    color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.achievement-card h3 {
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 800;
}

.achievement-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Three Step Process Section */
.three-step-process {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.step-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 31, 91, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--accent-gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    font-size: 42px;
    color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.step-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Hospital Grid */
.hospital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.hospital-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--white);
    background: var(--white);
    position: relative;
}

.hospital-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.hospital-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hospital-item:hover img {
    transform: scale(1.08);
}

.hospital-caption {
    padding: 24px;
    text-align: center;
}

.hospital-caption h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.hospital-caption p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-gold));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding: 40px 0;
    width: 100%;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 31, 91, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: calc(50% - 50px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.timeline-content h3 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 800;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
    z-index: 10;
}

.timeline-item:hover .timeline-dot {
    background: var(--gradient-gold);
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.4);
}

/* Patents Section */
.patents-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.patents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.patent-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--white);
}

.patent-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.patent-image {
    background: var(--soft-blue);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patent-image img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 31, 91, 0.1);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    font-size: 40px;
    color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.value-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Promises Section */
.promises-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.promise-card {
    background: var(--white);
    padding: 42px 36px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 31, 91, 0.1);
    position: relative;
}

.promise-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.promise-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    font-size: 44px;
    color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.promise-card h3 {
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.promise-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* ===== 全新Our Services板块样式 ===== */
.service-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.service-detail-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    border: 2px solid rgba(0, 31, 91, 0.08);
    position: relative;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card:nth-child(even) {
    grid-template-columns: 1.1fr 1fr;
}

.service-detail-card:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-card:nth-child(even) .service-detail-content {
    order: 1;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 450px;
}

.service-detail-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-card:hover .service-detail-image::after {
    opacity: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.1);
}

.service-detail-content {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.08) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 36px;
    color: var(--primary-blue);
    border: 2px solid rgba(0, 31, 91, 0.15);
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-detail-icon {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    transform: rotate(5deg) scale(1.08);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-detail-content h3 {
    color: var(--text-dark);
    margin-bottom: 22px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.service-detail-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.service-detail-card:hover .service-detail-content h3::after {
    width: 100%;
}

.service-info-section {
    margin-bottom: 24px;
}

.service-info-section h4 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info-section h4 i {
    font-size: 16px;
    opacity: 0.8;
}

.service-info-section p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-info-section ul li {
    color: var(--text-gray);
    font-size: 15px;
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.6;
}

.service-info-section ul li::before {
    content: '�?;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 14px;
}

.service-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.05) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 31, 91, 0.08);
}

.service-feature-item i {
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 900;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
}

.service-feature-item span {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
}

.service-feature-item:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-feature-item:hover i {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.service-feature-item:hover span {
    color: white;
}

/* Featured Technology - Microneedle Implant Pen */
.featured-tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-tech-video {
    background: var(--soft-blue);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-tech-video video {
    width: 100%;
    display: block;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.featured-tech-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.featured-tech-content h3 {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.featured-tech-content > p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.featured-tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.featured-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--soft-blue);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.featured-feature:hover {
    background: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.featured-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.featured-feature-text h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.featured-feature-text p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Hair Transplant Process Section */
.process-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.process-card:hover::before {
    opacity: 1;
}

.process-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 8px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.process-card h3 {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Contact Cards Row */
.contact-cards-row {
    margin-bottom: 50px;
}

.contact-cards-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.compact-contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.compact-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.compact-contact-card:hover::before {
    opacity: 1;
}

.compact-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.compact-contact-card.primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
}

.compact-contact-card.primary .compact-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.compact-contact-card.primary .compact-details h4 {
    color: white;
}

.compact-contact-card.primary .compact-details p {
    color: rgba(255, 255, 255, 0.9);
}

.compact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 26px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.compact-contact-card:hover .compact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.compact-details h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.compact-details p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

/* Consultation Row */
.consultation-row {
    margin-top: 40px;
}

.consultation-box-full {
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 31, 91, 0.08);
}

.consultation-box-full h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.consultation-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: center;
}

.qrcode-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qrcode-display {
    background: var(--soft-blue);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    width: 100%;
}

.qrcode-display img {
    width: 240px;
    height: 240px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.qrcode-display p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

.benefits-section {
    display: flex;
    flex-direction: column;
}

.benefits-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.06), rgba(255, 215, 0, 0.06));
    border-radius: 18px;
    border: 2px solid rgba(0, 31, 91, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-item:hover h4 {
    color: white;
}

/* Contact Benefits Section */
.contact-benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.benefit-showcase-card {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.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 24px;
    font-size: 40px;
    color: white;
    box-shadow: var(--shadow-md);
}

.benefit-showcase-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.benefit-showcase-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Locations Section */
.locations {
    padding: 100px 0;
    background: var(--bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.location-item {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.location-item i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 14px;
}

.location-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.location-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-choose-item {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 34px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.why-choose-item h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.why-choose-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qrcode-display img {
        width: 200px;
        height: 200px;
    }
    
    .benefits-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 70px 0;
    }
    
    .consultation-box-full {
        padding: 36px 24px;
    }
    
    .consultation-box-full h3 {
        font-size: 24px;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid-full {
        grid-template-columns: 1fr;
    }
    
    .benefits-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-overview-card {
    background: var(--white);
    border-radius: 32px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.service-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-overview-content h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-overview-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.overview-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overview-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
}

.overview-features li i {
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 18px;
}

/* Geo Section & Cards */
.geo-section {
    padding: 50px 0;
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.geo-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 34px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.geo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.geo-card:hover::before {
    opacity: 1;
}

.geo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.geo-card.primary {
    background: var(--gradient-primary);
}

.geo-card.primary .geo-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.geo-card.primary h3 {
    color: white;
}

.geo-card.primary ul li {
    color: rgba(255, 255, 255, 0.95);
}

.geo-card.primary ul li strong {
    color: white;
}

.geo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.geo-card:hover .geo-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.geo-card.primary:hover .geo-icon {
    background: rgba(255, 255, 255, 0.3);
}

.geo-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.geo-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.geo-card ul li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Pricing Formula Section */
.pricing-formula-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    color: white;
}

.pricing-formula-card .formula-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
}

.pricing-formula-card .formula-details {
    font-size: 16px;
    line-height: 1.8;
}

.pricing-formula-card .formula-details div {
    margin-bottom: 12px;
}

/* Procedure Steps Section */
.procedure-steps-section {
    padding: 50px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section - Updated for different class name in page */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 34px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.why-choose-card .why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.why-choose-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.why-choose-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Styles for Cost Page */
@media (max-width: 992px) {
    .service-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 60px 0;
    }
    
    .service-overview-card {
        padding: 30px 24px;
    }
    
    .service-overview-grid {
        gap: 30px;
    }
    
    .service-overview-content h3 {
        font-size: 24px;
    }
    
    .geo-grid {
        grid-template-columns: 1fr;
    }
    
    .geo-card {
        padding: 32px 26px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Cost Comparison Section */
.cost-comparison {
    padding: 60px 0;
}

.cost-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
}

.cost-table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
}

.cost-table th {
    padding: 24px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: white;
    border-bottom: 3px solid rgba(255,255,255,0.2);
}

.cost-table th.highlight-col {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    border-left: 3px solid rgba(255,255,255,0.3);
    border-right: 3px solid rgba(255,255,255,0.3);
    position: relative;
}

.cost-table th.highlight-col::before {
    content: '�?BEST CHOICE';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.cost-table tbody tr {
    border-bottom: 1px solid rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
}

.cost-table tbody tr:hover {
    background: var(--soft-blue);
}

.cost-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.cost-table tbody tr:nth-child(even):hover {
    background: var(--soft-blue);
}

.cost-table td {
    padding: 20px 16px;
    text-align: center;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.cost-table td.row-label {
    text-align: left;
    font-weight: 800;
    color: var(--text-dark);
    background: var(--white);
    padding-left: 24px;
    border-right: 2px solid rgba(0, 31, 91, 0.1);
}

.cost-table td.highlight-col {
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.08), rgba(255, 215, 0, 0.08));
    border-left: 3px solid var(--primary-blue);
    border-right: 3px solid var(--primary-blue);
    color: var(--primary-blue);
}

.cost-table td.highlight-col.best-value {
    font-weight: 900;
    font-size: 17px;
    color: var(--primary-blue);
    position: relative;
}

.cost-table td.highlight-col.best-value::before {
    content: '💰';
    margin-right: 6px;
    font-size: 18px;
}

.cost-table tbody tr:hover td.highlight-col {
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.15), rgba(255, 215, 0, 0.15));
}

.cost-table tbody tr:nth-child(even) td.highlight-col {
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
}

.cost-table tbody tr:nth-child(even):hover td.highlight-col {
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.18), rgba(255, 215, 0, 0.18));
}

.cost-table .icon-green-check {
    color: #27ae60;
    font-size: 22px;
}

.cost-table .icon-red-cross {
    color: #e74c3c;
    font-size: 22px;
}

.cost-table tr.total-row {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold)) !important;
    border-top: 3px solid var(--primary-blue-dark);
}

.cost-table tr.total-row td {
    color: white;
    font-weight: 900;
    font-size: 16px;
    padding: 24px 16px;
}

.cost-table tr.total-row td.row-label {
    background: var(--primary-blue-dark);
    color: white;
}

.cost-table tr.total-row td.highlight-col {
    background: var(--primary-blue-dark);
    border-left: 3px solid rgba(255,255,255,0.3);
    border-right: 3px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 20px;
}

.cost-table .star-rating {
    font-size: 24px;
    letter-spacing: 4px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.cost-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 24px;
    padding: 16px;
    background: var(--soft-blue);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    font-weight: 500;
}

/* Responsive for Cost Comparison Table */
@media (max-width: 992px) {
    .cost-table-wrapper {
        border-radius: 16px;
    }
    
    .cost-table th,
    .cost-table td {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .cost-table th.highlight-col::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .cost-comparison {
        padding: 40px 0;
    }
    
    .cost-table-wrapper {
        border-radius: 12px;
    }
    
    .cost-table th,
    .cost-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .cost-table td.row-label {
        padding-left: 12px;
    }
    
    .cost-table .icon-green-check,
    .cost-table .icon-red-cross {
        font-size: 16px;
    }
    
    .cost-table .star-rating {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .cost-table tr.total-row td {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .cost-table tr.total-row td.highlight-col {
        font-size: 16px;
    }
    
    .cost-note {
        font-size: 13px;
        padding: 12px;
    }
}

/* Content Card */
.content-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 31, 91, 0.08);
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.content-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card strong {
    color: var(--primary-blue);
    font-weight: 800;
}

.content-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 31, 91, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Commitments Section */
.commitments {
    padding: 80px 0;
    background: var(--bg-light);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 31, 91, 0.08);
}

.commitment-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.commitment-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 30px;
    font-weight: 900;
    color: white;
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-number {
    transform: scale(1.1) rotate(5deg);
}

.commitment-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.commitment-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-title p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.gold-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive for Two Column */
@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .content-card {
        padding: 30px 24px;
    }
}

.content-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-card ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.content-card ul li:before {
    content: '�?;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 900;
    font-size: 18px;
}

@media (max-width: 768px) {
    .content-card {
        padding: 28px 24px;
    }
    
    .content-card p {
        font-size: 15px;
    }
    
    .content-card h3 {
        font-size: 20px;
    }
    
    .content-card ul li {
        font-size: 15px;
    }
}

/* Our Four Commitments */
.commitments {
    padding: 80px 0;
}

.bg-white {
    background: var(--white);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.commitment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(0, 31, 91, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.commitment-card:hover::before {
    opacity: 1;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.commitment-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-number {
    transform: scale(1.1) rotate(5deg);
}

.commitment-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.commitment-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive for Our Four Commitments */
@media (max-width: 992px) {
    .commitments-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .commitments {
        padding: 60px 0;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-card {
        padding: 32px 26px;
    }
}

/* Technology Comparison Table */
.table-responsive {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
}

.comparison-table thead th {
    padding: 24px 20px;
    color: white;
    font-weight: 700;
    font-size: 17px;
    text-align: left;
    border-bottom: none;
}

.comparison-table thead th.highlight-col {
    background: rgba(255, 255, 255, 0.15);
}

.comparison-table tbody tr {
    background: var(--white);
    transition: all 0.3s ease;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison-table tbody tr:hover {
    background: var(--soft-blue);
    transform: scale(1.01);
}

.comparison-table tbody td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 31, 91, 0.1);
    font-size: 16px;
    color: var(--text-dark);
}

.comparison-table tbody td.highlight-col {
    background: rgba(0, 31, 91, 0.05);
    font-weight: 600;
}

.comparison-table .text-green {
    color: #10b981;
    font-weight: 600;
}

.comparison-table .text-yellow {
    color: #f59e0b;
}

.comparison-table .text-red {
    color: #ef4444;
}

.comparison-table .check-green {
    color: #10b981;
    font-size: 20px;
    font-weight: 900;
}

.comparison-table .cross-red {
    color: #ef4444;
    font-size: 20px;
    font-weight: 900;
}

/* Why Our Results Are Superior */
.superior-section {
    padding: 80px 0;
}

.superior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.superior-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(0, 31, 91, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.superior-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.icon-circle i {
    color: white;
    font-size: 32px;
}

.superior-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.superior-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(0, 31, 91, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.feature-card 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;
    margin-bottom: 24px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive for all new sections */
@media (max-width: 992px) {
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 16px 12px;
        font-size: 15px;
    }
    
    .superior-grid,
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .superior-section {
        padding: 60px 0;
    }
    
    .superior-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .superior-card,
    .feature-card {
        padding: 32px 26px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 10px;
        font-size: 14px;
    }
}

/* Service Overview Enhanced */
.service-overview-enhanced {
    background: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 31, 91, 0.08);
    overflow: hidden;
    margin-bottom: 60px;
}

.overview-enhanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.overview-enhanced-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overview-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    width: fit-content;
}

.overview-badge i {
    font-size: 16px;
}

.overview-enhanced-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.overview-enhanced-content > p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.overview-features-enhanced {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overview-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.05), rgba(0, 172, 193, 0.05));
    border-radius: 16px;
    transition: all 0.3s ease;
}

.overview-feature-item:hover {
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
    transform: translateX(5px);
}

.overview-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-feature-icon i {
    color: white;
    font-size: 20px;
}

.overview-feature-text {
    flex: 1;
}

.overview-feature-text span {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.overview-enhanced-image {
    position: relative;
    background: linear-gradient(135deg, var(--soft-blue), var(--soft-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.overview-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.overview-stats-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    box-shadow: var(--shadow-md);
}

.overview-stat-item {
    text-align: center;
}

.overview-stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 4px;
}

.overview-stat-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

/* Responsive for Service Overview */
@media (max-width: 992px) {
    .overview-enhanced-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-enhanced-content {
        padding: 40px 30px;
    }
    
    .overview-enhanced-content h2 {
        font-size: 28px;
    }
    
    .overview-stats-box {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .overview-enhanced-content {
        padding: 30px 24px;
    }
    
    .overview-enhanced-content h2 {
        font-size: 24px;
    }
    
    .overview-stats-box {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .overview-stat-number {
        font-size: 24px;
    }
}

/* Service Overview Accent */
.service-overview-accent {
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.03), rgba(255, 215, 0, 0.03));
    border-radius: 32px;
    border: 2px solid rgba(0, 31, 91, 0.08);
    overflow: hidden;
    margin-bottom: 60px;
}

.overview-accent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.overview-accent-image {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.overview-accent-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-accent-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.overview-accent-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overview-accent-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    width: fit-content;
}

.overview-accent-content h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.overview-accent-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

.overview-accent-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.overview-accent-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.overview-accent-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 31, 91, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.overview-accent-feature:hover .overview-accent-icon {
    background: var(--gradient-primary);
}

.overview-accent-icon i {
    color: var(--primary-blue);
    font-size: 18px;
    transition: all 0.3s ease;
}

.overview-accent-feature:hover .overview-accent-icon i {
    color: white;
}

.overview-accent-text h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.overview-accent-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Responsive for Service Overview Accent */
@media (max-width: 992px) {
    .overview-accent-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-accent-content {
        padding: 40px 30px;
    }
    
    .overview-accent-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .overview-accent-content {
        padding: 30px 24px;
    }
    
    .overview-accent-content h3 {
        font-size: 22px;
    }
}

/* Responsive for Two Column */
@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .content-card {
        padding: 30px 24px;
    }
}