/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A6E73;
    --accent-color: #FF6B6B;
    --neutral-light: #F8F9FA;
    --neutral-dark: #2D3748;
    --text-color: #333;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

/* ============================================
   ACCESSIBILITY STYLES
   ============================================ */

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Enhanced focus indicators for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Ensure focus is visible on menu toggle */
.menu-toggle:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Focus visible for modern browsers (only shows on keyboard nav) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Remove outline for mouse clicks (modern browsers) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Ensure all images maintain aspect ratio */
img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--neutral-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--neutral-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-menu a.btn-primary:hover {
    background-color: #085a5e;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #085a5e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 110, 115, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--neutral-light) 0%, #e8f4f5 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero h1 {
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.visual-tag {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

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

.checkmark {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background-color: white;
}

.story-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-dark);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.patient-questions {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    border-radius: 5px;
}

.patient-questions p {
    margin-bottom: 0.5rem;
    font-style: italic;
    color: #555;
}

.promise {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e8f4f5;
    border-radius: 10px;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2rem 0;
}

.certifications {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.certifications h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.certifications ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.certifications li {
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--neutral-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card .tagline {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Gallstones Section */
.gallstones-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f5 0%, var(--neutral-light) 100%);
}

.gallstones-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.gallstones-content {
    max-width: 900px;
    margin: 0 auto;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-item.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d8b91 100%);
    color: white;
}

.comparison-item.highlight h4,
.comparison-item.highlight p,
.comparison-item.highlight li {
    color: white;
}

.comparison-item h4 {
    margin-bottom: 1rem;
}

.comparison-item ul {
    margin-left: 1.5rem;
}

.comparison-item li {
    margin-bottom: 0.5rem;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: white;
}

.locations-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-type {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.phone-numbers {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #2a3a4a; /* Darker background for better contrast */
    color: #E8EDF2;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 0;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.footer-col p {
    color: #D4DCE6; /* Lighter for better contrast */
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col a {
    color: #D4DCE6; /* Lighter for better contrast */
    text-decoration: underline; /* Always underline for accessibility */
    text-underline-offset: 2px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration-thickness: 2px;
}

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

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col li a {
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #C5D0DD; /* Lighter for better contrast */
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #D4DCE6;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.sticky-whatsapp svg {
    fill: white;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border: none;
}

.social-link.instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.social-link.linkedin {
    background-color: #0077B5;
    border: none;
}

.social-link.linkedin:hover {
    background-color: #006399;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0.5rem 0;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a.btn-primary {
        margin-top: 1rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        padding-right: 0;
    }

    .trust-bar {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .comparison {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 30px;
    }

    .footer {
        padding: 40px 0 0;
    }

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

    .footer-col ul {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
    }

    .sticky-cta {
        display: block;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ============================================
   NEW PAGE-SPECIFIC STYLES
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--neutral-light) 0%, #e8f4f5 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Services Overview (Homepage) */
.services-overview {
    padding: 80px 0;
    background-color: white;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d8b91 100%);
    color: white;
}

.stats-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Locations Preview */
.locations-preview {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.locations-preview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.locations-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.location-area {
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f5 0%, var(--neutral-light) 100%);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons-center {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-detailed {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.quick-facts {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 10px;
}

.quick-facts h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-facts li:last-child {
    border-bottom: none;
}

/* Professional Highlights Gallery */
.professional-highlights-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.professional-highlights-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.highlights-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    background-color: var(--neutral-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.highlight-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
}

.highlight-caption {
    padding: 2rem;
}

.highlight-caption h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.highlight-caption p {
    color: #666;
    line-height: 1.6;
}

.certifications-section {
    padding: 80px 0;
    background-color: white;
}

.certifications-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cert-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.experience-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.experience-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.experience-card {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 10px;
}

.experience-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-section {
    padding: 80px 0;
    background-color: white;
}

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.philosophy-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Quick Navigation */
.service-quick-nav {
    background-color: white;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-quick-nav .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 20px;
}

.quick-nav-title {
    font-weight: 600;
    color: var(--neutral-dark);
    white-space: nowrap;
}

.quick-nav-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.quick-nav-link {
    padding: 0.5rem 1.25rem;
    background-color: var(--neutral-light);
    border-radius: 25px;
    color: var(--neutral-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-nav-link:hover,
.quick-nav-link.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.service-detail {
    padding: 80px 0;
    background-color: white;
    scroll-margin-top: 140px;
}

.service-detail.alt-bg {
    background-color: var(--neutral-light);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-icon-large {
    font-size: 5rem;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.service-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.benefit-card {
    background-color: #e8f4f5;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.conditions-list {
    margin-top: 2rem;
}

.condition-item {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.condition-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.condition-item ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.hpb-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.hpb-category {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.hpb-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hpb-category ul {
    margin-left: 2rem;
}

.hpb-category li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.approach-card {
    background-color: #e8f4f5;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.approach-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cancer-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.cancer-type {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cancer-type h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.endoscopy-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.endoscopy-type {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.endoscopy-type h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.endoscopy-type ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.screening-guidelines {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.screening-card {
    background-color: #e8f4f5;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.screening-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   LOCATIONS PAGE STYLES
   ============================================ */

.locations-detail-section {
    padding: 80px 0;
    background-color: white;
}

.location-detail-card {
    background-color: var(--neutral-light);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.location-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.location-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 2rem;
}

.location-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.location-info p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.note {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.location-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Compact Locations Layout */
.locations-compact-section {
    padding: 60px 0;
    background-color: white;
}

.locations-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-compact-card {
    background-color: var(--neutral-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.location-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.location-compact-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.location-compact-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.location-area {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.location-compact-body {
    flex-grow: 1;
}

.info-row {
    margin-bottom: 1.2rem;
}

.info-row strong {
    display: block;
    color: var(--neutral-dark);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-row p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

.note-small {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.location-compact-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

.locations-main-cta {
    background: linear-gradient(135deg, #e8f4f5 0%, var(--neutral-light) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.locations-main-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

.locations-main-cta .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.locations-main-cta .cta-buttons a {
    display: inline-block;
    text-align: center;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for Compact Locations */
@media (max-width: 1024px) {
    .locations-compact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .locations-compact-section {
        padding: 40px 0;
    }

    .location-compact-card {
        padding: 1.5rem;
    }

    .location-compact-header h2 {
        font-size: 1.3rem;
    }

    .locations-main-cta {
        padding: 2rem 1.5rem;
    }

    .locations-main-cta .cta-buttons {
        flex-direction: column;
    }

    .locations-main-cta .cta-buttons a {
        width: 100%;
    }
}

.prep-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.prep-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.prep-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.prep-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.prep-card ul {
    margin-left: 1.5rem;
}

.prep-card li {
    margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-options-section {
    padding: 80px 0;
    background-color: white;
}

.contact-options-simple {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    margin: 0 auto;
}

.contact-card-large {
    background-color: var(--neutral-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-card-large.featured {
    background: linear-gradient(135deg, #e8f4f5 0%, var(--neutral-light) 100%);
    border: 2px solid var(--primary-color);
}

.contact-card-large h2 {
    margin-bottom: 1rem;
}

.contact-card-large > p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-card.featured {
    background: linear-gradient(135deg, #e8f4f5 0%, var(--neutral-light) 100%);
    border: 2px solid var(--primary-color);
}

.phone-list {
    margin-top: 2rem;
}

.phone-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.phone-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.phone-number a {
    color: var(--neutral-dark);
}

.hours {
    color: #666;
    font-style: italic;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1.25rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--neutral-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.walk-in-info {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.walk-in-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.walk-in-info ul {
    margin-left: 1.5rem;
}

.walk-in-info li {
    margin-bottom: 0.5rem;
}

.email-section {
    padding: 60px 0;
    background-color: var(--neutral-light);
}

.email-card {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.email-card h2 {
    margin-bottom: 1rem;
}

.email-card a {
    font-size: 1.3rem;
    font-weight: 600;
}

.expect-section {
    padding: 80px 0;
    background-color: white;
}

.expect-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.expect-card {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.expect-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.expect-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.consultation-note {
    background-color: #e8f4f5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.emergency-section {
    padding: 60px 0;
    background-color: white;
}

.emergency-card {
    background-color: #fff4f4;
    border: 2px solid #ff6b6b;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-card h2 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* ============================================
   MINIMAL HOMEPAGE STYLES
   ============================================ */

/* Specialties Minimal Section */
.specialties-minimal {
    padding: 80px 0;
    background-color: white;
}

.specialties-minimal h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.specialties-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.specialty-minimal {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--neutral-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.specialty-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #e8f4f5;
}

.specialty-minimal h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.specialty-minimal p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.quick-contact-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.quick-contact-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
}

.quick-contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.quick-contact-item p {
    margin-bottom: 0.5rem;
}

.quick-contact-item a {
    color: var(--neutral-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.quick-contact-item a:hover {
    color: var(--primary-color);
}

.quick-contact-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Email Contact Info */
.email-contact-info {
    margin-top: 2rem;
}

.email-address {
    text-align: center;
    margin: 2rem 0;
}

.email-address a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.email-tips {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.email-tips h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.email-tips ul {
    margin-left: 1.5rem;
}

.email-tips li {
    margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE UPDATES FOR NEW STYLES
   ============================================ */

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .locations-grid-preview {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlights-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .service-quick-nav .container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .quick-nav-title {
        font-size: 0.9rem;
    }

    .quick-nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .quick-nav-link {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .cancer-types {
        grid-template-columns: 1fr;
    }

    .screening-guidelines {
        grid-template-columns: 1fr;
    }

    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prep-grid {
        grid-template-columns: 1fr;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .contact-options-simple {
        grid-template-columns: 1fr;
    }

    .cta-buttons-center {
        flex-direction: column;
    }

    .cta-buttons-center .btn {
        width: 100%;
    }

    .specialties-grid-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-cta {
        flex-direction: column;
    }

    .quick-contact-cta .btn {
        width: 100%;
    }
}

/* ============================================
   SECOND OPINION PAGE STYLES
   ============================================ */

.second-opinion-header {
    background: linear-gradient(135deg, #e8f4f5 0%, var(--neutral-light) 100%);
}

.hero-message {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    padding: 80px 0;
    background-color: white;
}

.content-section.alt-bg {
    background-color: var(--neutral-light);
}

.content-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.content-section h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.second-opinion-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reason-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reason-card p {
    line-height: 1.7;
    color: #666;
}

.conditions-reviewed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.condition-category {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.condition-category h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.condition-category > p {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.condition-category ul {
    margin-left: 1.5rem;
}

.condition-category li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--neutral-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background-color: #e8f4f5;
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.fellowship-content {
    max-width: 900px;
    margin: 0 auto;
}

.fellowship-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.credentials-highlight {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.credentials-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.credentials-highlight ul {
    margin-left: 1.5rem;
}

.credentials-highlight li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.request-review-section {
    background: linear-gradient(135deg, #e8f4f5 0%, var(--neutral-light) 100%);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-options-simple-so {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.contact-method {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-method.highlight {
    background: linear-gradient(135deg, #e8f4f5 0%, white 100%);
    border: 2px solid var(--primary-color);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.phone-large {
    margin: 0.75rem 0;
}

.phone-large a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.email-large {
    margin: 1rem 0;
}

.email-large a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    word-break: break-all;
}

.method-note {
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.contact-method .btn-whatsapp {
    margin-top: 1rem;
    width: 100%;
}

.what-to-bring {
    max-width: 800px;
    margin: 3rem auto 0;
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.what-to-bring h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.what-to-bring ul {
    margin-left: 1.5rem;
}

.what-to-bring li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Responsive Second Opinion Page */
@media (max-width: 768px) {
    .second-opinion-reasons {
        grid-template-columns: 1fr;
    }

    .conditions-reviewed {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-options-simple-so {
        grid-template-columns: 1fr;
    }

    .contact-method {
        padding: 2rem 1.5rem;
    }

    .what-to-bring {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   LEGAL PAGE STYLES
   ============================================ */

.legal-section {
    padding: 60px 0;
    background-color: white;
}

.legal-section:nth-child(even) {
    background-color: var(--neutral-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.legal-updated {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h3 {
    color: var(--neutral-dark);
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    color: var(--neutral-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content ul li {
    color: #555;
    margin-bottom: 0.8rem;
}

.legal-content ul ul {
    margin: 0.5rem 0 0.5rem 1.5rem;
}

.legal-content ul ul li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--neutral-dark);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent-color);
}

/* Footer legal link styling */
.footer-bottom a {
    color: #B8C5D6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Mobile responsiveness for legal page */
@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 1.8rem;
    }

    .legal-content h3 {
        font-size: 1.4rem;
    }

    .legal-content h4 {
        font-size: 1.2rem;
    }

    .legal-content {
        padding: 0 1rem;
    }

    .legal-content ul {
        margin-left: 1.5rem;
    }

    .legal-section {
        padding: 40px 0;
    }
}

/* ============================================
   SIMPLIFIED CONTACT PAGE STYLES
   ============================================ */

.contact-simple-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, var(--neutral-light) 100%);
}

/* Primary Contact Area */
.contact-primary {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-primary h2 {
    font-size: 2rem;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.contact-intro {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Phone Numbers */
.contact-numbers {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-number-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--neutral-dark);
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-number-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.number-icon {
    font-size: 1.5rem;
}

.number {
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* WhatsApp CTA */
.whatsapp-cta {
    margin-top: 2.5rem;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-note {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.8rem;
}

/* Clinic Locations Simple */
.clinic-locations-simple {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.clinic-locations-simple h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.location-item:last-of-type {
    border-bottom: none;
}

.location-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.location-name strong {
    font-size: 1.1rem;
    color: var(--neutral-dark);
}

.location-area {
    font-size: 0.95rem;
    color: #666;
}

.location-timing {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    white-space: nowrap;
}

.clinic-locations-simple .btn-outline {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 12px 30px;
    text-align: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.clinic-locations-simple .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* What to Bring Simple */
.bring-section-simple {
    max-width: 700px;
    margin: 0 auto;
    padding: 35px 40px;
    background-color: #f8fcfc;
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
}

.bring-section-simple h3 {
    color: var(--neutral-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.bring-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.bring-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.bring-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.bring-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

/* Emergency Notice Simple */
.emergency-notice-simple {
    padding: 40px 0;
    background-color: #fff5f5;
}

.emergency-content {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 25px 30px;
    background-color: white;
    border-left: 5px solid #ff6b6b;
    border-radius: 8px;
    align-items: flex-start;
}

.emergency-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.emergency-content h3 {
    color: #d63030;
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
}

.emergency-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-numbers {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-number-link {
        justify-content: center;
        font-size: 1.15rem;
    }

    .btn-whatsapp-large {
        font-size: 1.1rem;
        padding: 16px 30px;
    }

    .contact-primary h2 {
        font-size: 1.6rem;
    }

    .clinic-locations-simple {
        padding: 25px 20px;
    }

    .location-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0;
    }

    .location-timing {
        font-size: 0.95rem;
    }

    .bring-section-simple {
        padding: 25px 20px;
    }

    .bring-list li {
        font-size: 1rem;
    }

    .emergency-content {
        flex-direction: column;
        padding: 20px;
    }

    .emergency-icon {
        font-size: 2rem;
    }

    .emergency-content h3 {
        font-size: 1.2rem;
    }
}
