/* Orthopedic Services Page Styles */
.orthopedic-services-page {
    font-family: 'Figtree', sans-serif;
}

/* UH Hero Header Styles */
.UH-Feature-Heroes-HeroHeader {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.UH-Feature-Heroes-HeroHeader-Background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.UH-Feature-Heroes-HeroHeader-Background-Img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.UH-Feature-Heroes-HeroHeader-NavWrapper {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 0;
}

.UH-Feature-Heroes-HeroHeader-Breadcrumb {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 0;
}

.UH-Feature-Heroes-HeroHeader-Overlay {
    position: relative;
    z-index: 2;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.UH-Feature-Heroes-HeroHeader-Overlay-Heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.UH-Feature-Heroes-AdvancedHeroHeader-Overlay-Subtitle {
    margin-bottom: 2rem;
}

.UH-Feature-Heroes-AdvancedHeroHeader-Overlay-Subtitle img {
    max-width: 300px;
    height: auto;
}

/* Secondary Navigation Menu */
.UH-Feature-Navigation-SecondaryMenu {
    background: rgba(0, 0, 0, 0.8);
}

.UH-Feature-Navigation-SecondaryMenu-Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.UH-Feature-Navigation-SecondaryMenu-List {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.UH-Feature-Navigation-SecondaryMenu-Item {
    margin: 0;
}

.UH-Feature-Navigation-SecondaryMenu-Link {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.UH-Feature-Navigation-SecondaryMenu-Link:hover,
.UH-Feature-Navigation-SecondaryMenu-Item.active .UH-Feature-Navigation-SecondaryMenu-Link {
    background-color: #3b82f6;
    color: white;
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-node {
    margin: 0;
}

.breadcrumb-node:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: #9ca3af;
}

.breadcrumb-link {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
}

/* Hero Call to Action */
.herocallcta {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.callctaicon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.callctaright h4 {
    margin: 0 0 0.5rem 0;
    color: #fbbf24;
    font-size: 1.25rem;
}

.callctaright p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.callctaright a {
    color: #fbbf24;
    text-decoration: none;
}

.callctaright a:hover {
    text-decoration: underline;
}

/* Advanced Hero Header */
.UH-Feature-Heroes-AdvancedHeroHeader {
    background: white;
    padding: 4rem 0;
}

.UH-Feature-Heroes-AdvancedHeroHeader-Header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.UH-Feature-Heroes-AdvancedHeroHeader-Header-Link {
    text-align: center;
    margin-bottom: 3rem;
}

.UH-Button-Tertiary a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.UH-Button-Tertiary a:hover {
    background: #3b82f6;
    color: white;
}

/* CTA Blocks */
.UH-Feature-GenericContent-CtaBlock {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.UH-Feature-GenericContent-CtaBlock:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.UH-Feature-GenericContent-CtaBlock-Background {
    height: 200px;
    overflow: hidden;
}

.UH-Feature-GenericContent-CtaBlock-Background-Img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.UH-Feature-GenericContent-CtaBlock-Action {
    padding: 1.5rem;
    text-align: center;
}

.UH-Button-Primary a {
    display: inline-block;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.UH-Button-Primary a:hover {
    background: #1e3a8a;
}

/* Section Styles */
.UH-Project-Common-Section {
    padding: 4rem 0;
    background: #f8fafc;
}

.UH-Utility-WidthGate {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.UH-Project-Common-1-Column {
    width: 100%;
}

.UH-Project-Common-1-Column-Inner {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Image Grid */
.UH-Inline-Image-Grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.UH-Inline-Image-Caption-Small {
    text-align: center;
}

.UH-Inline-Image-Content {
    padding: 1rem;
    border-radius: 8px;
}

.UH-Inline-Image-Large {
    max-width: 100%;
    height: auto;
}

/* Inline CTA */
.UH-Feature-GenericContent-InlineCta {
    padding: 4rem 0;
    background: #f8fafc;
}

.inlinecta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.UH-Feature-GenericContent-CtaBlock-Heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-align: center;
}

.UH-Feature-GenericContent-CtaBlock-Description {
    text-align: center;
    line-height: 1.7;
    color: #374151;
}

.UH-Feature-GenericContent-CtaBlock-Description h4 {
    color: #1e293b;
    margin: 1.5rem 0 0.5rem 0;
}

.UH-Feature-GenericContent-CtaBlock-Description a {
    color: #3b82f6;
    text-decoration: none;
}

.UH-Feature-GenericContent-CtaBlock-Description a:hover {
    text-decoration: underline;
}

/* Treatment Options */
.treatment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.treatment-option {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.treatment-option h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.treatment-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-option li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.treatment-option li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.treatment-option li:last-child {
    border-bottom: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .UH-Feature-Heroes-HeroHeader-Overlay-Heading {
        font-size: 2rem;
    }
    
    .UH-Feature-Heroes-AdvancedHeroHeader-Header {
        font-size: 2rem;
    }
    
    .herocallcta {
        flex-direction: column;
        text-align: center;
    }
    
    .callctaicon {
        align-self: center;
    }
    
    .UH-Feature-Navigation-SecondaryMenu-List {
        flex-direction: column;
    }
    
    .UH-Inline-Image-Grid {
        grid-template-columns: 1fr;
    }
    
    .treatment-options {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
}

/* About Us Page Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mission-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.mission-card p {
    color: #64748b;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-overview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-overview-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.service-overview-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-overview-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e0e7ff;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cta-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Main Content Section */
.main-content {
    padding: 60px 0;
}

.content-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

/* Specialized Services Section */
.specialized-services {
    padding: 80px 0;
    background-color: #f8fafc;
}

.specialized-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #e5e7eb 25%, transparent 25%), 
                linear-gradient(-45deg, #e5e7eb 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #e5e7eb 75%), 
                linear-gradient(-45deg, transparent 75%, #e5e7eb 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #fbbf24;
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-3px);
}

.award-icon {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.award-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.award-card p {
    color: #64748b;
    line-height: 1.6;
}

.awards-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.contact-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-3px);
}

.contact-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #fbbf24;
    color: #1e293b;
}

.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1e293b;
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .hero-section,
    .cta-section,
    .main-content,
    .specialized-services,
    .awards-section,
    .contact-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .specialized-services h2,
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .cta-card,
    .service-card,
    .award-card,
    .contact-option {
        padding: 1.5rem;
    }
}
