/* Styles for Physician Referrals Page and About Dr. Hull Page */

/* Physician Banner */
.physician-banner {
    background-color: #e9f7ff;
    padding: 50px 0;
    text-align: center;
    border-bottom: 4px solid #0056b3;
}

.physician-banner h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #0056b3;
}

.physician-banner p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.banner-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Doctor Profile Styles for About Page */
.doctor-profile {
    padding: 60px 0;
}

.profile-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.profile-image-section {
    flex: 0 0 350px;
    max-width: 100%;
}

.doctor-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    margin-bottom: 30px;
}

.quick-credentials {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quick-credentials h3 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.quick-credentials ul {
    list-style: none;
    padding: 0;
}

.quick-credentials li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95em;
}

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

.profile-details {
    flex: 1;
    min-width: 300px;
}

.profile-details h2 {
    color: #0056b3;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.highlight-item h3 {
    color: #0056b3;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 0.9em;
    color: #666;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
    }
    
    .profile-image-section {
        flex: 1;
        text-align: center;
        margin: 0 auto;
    }
    
    .doctor-photo {
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .quick-credentials {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .doctor-photo {
        max-width: 250px;
    }
    
    .highlight-icon {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.8em;
    }
}

/* Education Timeline */
.education-training {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.education-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #0066cc;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    bottom: -40px;
    width: 2px;
    background: #dee2e6;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.institution {
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

/* Certifications */
.certifications {
    padding: 60px 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certification-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.cert-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.cert-board {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.cert-description {
    font-size: 0.9em;
    color: #555;
}

/* Research Areas */
.research-expertise {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.expertise-overview {
    margin-bottom: 40px;
}

.research-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.research-area {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.research-area h4 {
    color: #0066cc;
    margin-bottom: 10px;
}

.research-area > p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.research-area ul {
    padding-left: 20px;
}

.research-area li {
    margin-bottom: 8px;
    color: #555;
}

/* Impact Stats */
.research-impact {
    padding: 60px 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

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

.stat-number {
    font-size: 3em;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.achievement-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Memberships */
.memberships {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.memberships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.membership-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.membership-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Clinical Philosophy */
.clinical-philosophy {
    padding: 60px 0;
}

.philosophy-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.philosophy-text {
    flex: 2;
    min-width: 300px;
}

.philosophy-text blockquote {
    font-style: italic;
    font-size: 1.2em;
    color: #555;
    border-left: 4px solid #0066cc;
    padding-left: 20px;
    margin: 30px 0;
}

.philosophy-text cite {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-style: normal;
    color: #0066cc;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.philosophy-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
}

.philosophy-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Current Research */
.current-research {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.current-research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.research-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.research-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.research-card ul {
    padding-left: 20px;
}

.research-card li {
    margin-bottom: 8px;
    color: #555;
}

/* Contact Doctor */
.contact-doctor {
    padding: 60px 0;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-option {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-option h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.contact-details {
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background-color: #e9f7ff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0056b3;
    font-size: 28px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #0056b3;
}

/* Referral Process */
.referral-process {
    padding: 60px 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #0056b3;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -20px;
    width: 40px;
    height: 2px;
    background-color: #dee2e6;
}

/* Referral Form */
.referral-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.referral-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.consent-group input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
}

.consent-group label {
    font-weight: normal;
}

.alternative-referral {
    margin-top: 40px;
    padding: 20px;
    background-color: #e9f7ff;
    border-radius: 8px;
}

.alternative-referral h3 {
    margin-bottom: 15px;
    color: #0056b3;
}

.alternative-referral ul {
    list-style-type: none;
    padding: 0;
}

.alternative-referral li {
    margin-bottom: 10px;
}

/* Contact Information */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 2;
    min-width: 300px;
}

.office-hours {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .philosophy-content {
        flex-direction: column;
    }
    
    .philosophy-photo {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .philosophy-content {
        padding: 0 15px;
    }
    
    .philosophy-text blockquote {
        font-size: 1.1em;
        padding-left: 15px;
    }
}