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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
    order: 2; /* Move to right */
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

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

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

nav {
    order: 1; /* Keep nav in normal position on desktop */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover, nav a.active {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filters */
.filters {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-submit {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 65, 28, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-submit {
    background: #28a745;
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background: #218838;
}

/* Doctor Cards */
.doctors-list {
    padding: 3rem 0;
}

.doctors-list h3 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
}

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

.doctor-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.doctor-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview {
    margin-top: 1rem;
}

.image-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.doctor-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.doctor-card h4 a {
    color: #333;
    text-decoration: none;
}

.doctor-card h4 a:hover {
    color: #01411C;
}

.specialist {
    color: #01411C;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.city, .timing, .address {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.address {
    font-size: 0.9rem;
    line-height: 1.4;
}

.address-detail {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #01411C;
}

.city-info {
    color: #666;
    margin-top: 0.5rem;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.btn-call, .btn-whatsapp {
    flex: 1;
    padding: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-call {
    background: #007bff;
    color: white;
}

.btn-call:hover {
    background: #0056b3;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-view {
    display: block;
    text-align: center;
    padding: 0.5rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-view:hover {
    background: #e9ecef;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.btn-page, .current-page {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    background: white;
    border: 1px solid #ddd;
}

.current-page {
    background: #01411C;
    color: white;
    border-color: #01411C;
}

.btn-page:hover {
    background: #f8f9fa;
}

/* Forms */
.submit-form {
    padding: 3rem 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    margin-bottom: 0.5rem;
    color: #333;
}

.form-wrapper > p {
    color: #666;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #01411C;
    box-shadow: 0 0 0 3px rgba(1, 65, 28, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.875rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-results a {
    color: #01411C;
}

/* Doctor Detail Page */
.doctor-detail {
    padding: 3rem 0;
}

.doctor-page-heading {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.doctor-page-heading h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.doctor-page-heading h2 {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #666;
}

.breadcrumb a {
    color: #01411C;
    text-decoration: none;
}

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

.doctor-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

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

.doctor-image-large {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid #f8f9fa;
}

.doctor-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info h1 {
    margin-bottom: 0.5rem;
    color: #333;
}

.specialist-large {
    font-size: 1.2rem;
    color: #01411C;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.city-large {
    font-size: 1.1rem;
    color: #666;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.timing-detail {
    font-size: 1.1rem;
    color: #666;
}

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

.btn-large {
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.btn-share {
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-facebook {
    background: #1877f2;
    color: white;
}

.btn-facebook:hover {
    background: #145dbf;
}

.btn-twitter {
    background: #1da1f2;
    color: white;
}

.btn-twitter:hover {
    background: #0c85d0;
}

.btn-whatsapp-share {
    background: #25d366;
    color: white;
}

.btn-whatsapp-share:hover {
    background: #1da851;
}

.btn-email {
    background: #ea4335;
    color: white;
}

.btn-email:hover {
    background: #c23321;
}

.back-link {
    margin-top: 2rem;
}

.btn-back {
    color: #01411C;
    text-decoration: none;
    font-weight: 600;
}

/* Correction Section */
.correction-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    text-align: center;
}

.btn-correction {
    background: #ff9800;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

.btn-correction:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.correction-note {
    margin-top: 0.5rem;
    color: #856404;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 10;
}

.close-modal:hover {
    color: #000;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.checkbox-group label:hover {
    background: #f8f9fa;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
}

.correction-field {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.correction-field h4 {
    margin-bottom: 1rem;
    color: #333;
}

.success-page {
    text-align: center;
    padding: 3rem 1rem;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Mobile-specific modal styles */
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        margin: 0;
        border-radius: 0;
        padding: 1rem;
        padding-top: 3rem;
    }
    
    .close-modal {
        font-size: 2.5rem;
        right: 1rem;
        top: 0.5rem;
        background: white;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .correction-field {
        padding: 1rem;
    }
    
    .correction-field h4 {
        font-size: 1.1rem;
    }
    
    .checkbox-group label {
        font-size: 0.95rem;
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 0.75rem;
        padding-top: 3rem;
    }
    
    .correction-field {
        padding: 0.75rem;
    }
}

/* Related Doctors Section */
.related-doctors-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid #f0f0f0;
}

.related-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.related-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Related badges on cards */
.related-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.5rem 0;
    text-align: center;
}

.badge-best {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
}

.badge-specialist {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #90caf9;
}

.badge-city {
    background: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #ce93d8;
}

/* View More Section */
.view-more-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.btn-view-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(1, 65, 28, 0.3);
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 65, 28, 0.4);
}

/* Error Page */
.error-page {
    padding: 5rem 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 6rem;
    color: #01411C;
    margin-bottom: 1rem;
}

.error-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.error-content p {
    color: #666;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Footer Grid Layout */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.2rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0;
    }
    
    .footer-bottom {
        margin-top: 1rem;
        padding-top: 0.8rem;
    }
}

/* Page Content Styles */
.page-content {
    padding: 3rem 0;
    min-height: 60vh;
}

.content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper h1 {
    color: #01411C;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.content-wrapper h2 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-wrapper h3 {
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

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

.content-wrapper ul, .content-wrapper ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-wrapper a {
    color: #01411C;
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

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

.policy-section {
    margin-bottom: 2.5rem;
}

.about-section {
    margin-bottom: 2.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    color: white;
    margin-top: 0;
}

.disclaimer-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.emergency-warning {
    background: #f8d7da;
    border: 2px solid #dc3545;
    padding: 1.5rem;
    border-radius: 8px;
    color: #721c24;
}

.disclaimer-footer {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 8px;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #01411C;
    margin-bottom: 0.5rem;
}

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

.contact-form-section {
    background: white;
}

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

/* Responsive */
@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        order: 2; /* Right side */
    }
    
    .logo {
        order: 1; /* Left side */
    }
    
    header .container {
        flex-direction: row; /* Keep horizontal */
        justify-content: space-between;
        padding: 0.5rem 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    /* Mobile Navigation */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding-top: 80px;
        order: 3; /* After toggle button */
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        transition: background 0.3s, padding-left 0.3s;
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background: rgba(255,255,255,0.1);
        padding-left: 2rem;
        border-bottom: none;
    }
    
    /* Menu overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 0.75rem;
        background: rgba(255,255,255,0.1);
        border-radius: 6px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .search-form {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .search-form select,
    .search-form button {
        width: 100%;
    }
    
    .doctor-page-heading {
        padding: 2rem 1rem;
    }
    
    .doctor-page-heading h1 {
        font-size: 1.5rem;
    }
    
    .doctor-page-heading h2 {
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .doctor-card {
        padding: 1.5rem;
    }
    
    .doctor-detail-wrapper {
        padding: 0 1rem;
    }
    
    .doctor-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .doctor-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    
    .doctor-image img {
        max-width: 200px;
        margin: 0 auto 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-share {
        width: 100%;
        justify-content: center;
    }
    
    .view-more-section {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .btn-view-more {
        width: 100%;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .content-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .content-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.4rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .policy-section,
    .about-section {
        margin-bottom: 2rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .image-preview {
        max-width: 100%;
    }
    
    /* Modal full-screen on mobile */
    .modal {
        align-items: flex-start;
    }
    
    .modal-content {
        width: 100%;
        height: 100vh;
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        padding: 1rem;
        padding-top: 3.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
        margin-top: 0;
        padding-right: 2rem;
    }
    
    .close-modal {
        position: fixed;
        top: 0.75rem;
        right: 0.75rem;
        font-size: 2.5rem;
        background: white;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        z-index: 10000;
        line-height: 1;
        padding: 0;
    }
    
    .correction-field {
        padding: 1rem;
        margin: 0.75rem 0;
    }
    
    .correction-field h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .checkbox-group {
        font-size: 0.95rem;
    }
    
    .checkbox-group label {
        padding: 0.75rem 0.5rem;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        margin-bottom: 0.5rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        min-width: 20px;
        min-height: 20px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    
    .btn-submit {
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .success-actions a {
        width: 100%;
        text-align: center;
    }
    
    .message-actions,
    .request-actions {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
    }
    
    .correction-compare {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    table {
        font-size: 0.85rem;
    }
    
    footer {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }
    
    footer p {
        padding: 0 1rem;
        line-height: 1.8;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0 1rem;
    }
    
    .pagination a,
    .pagination span {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .error-actions {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .error-actions a {
        width: 100%;
        text-align: center;
    }
}

/* Extra small devices (phones in portrait, less than 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .doctor-card {
        padding: 1rem;
    }
    
    .doctor-card h3 {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-submit {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .content-wrapper {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .content-wrapper h1 {
        font-size: 1.5rem;
    }
    
    .form-wrapper {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    /* Modal adjustments for very small screens */
    .modal-content {
        padding: 0.75rem;
        padding-top: 3.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.2rem;
    }
    
    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 2rem;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .correction-field {
        padding: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .correction-field h4 {
        font-size: 1rem;
    }
    
    .checkbox-group label {
        padding: 0.6rem 0.4rem;
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        padding: 0.6rem;
    }
}

/* Rating and Reviews */
.doctor-sidebar {
    margin-top: 2rem;
}

.rating-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #01411C;
}

.rating-summary h3 {
    margin-bottom: 1.5rem;
    color: #01411C;
    font-size: 1.3rem;
}

.rating-display {
    margin-bottom: 1.5rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    letter-spacing: 4px;
}

.rating-stars .star.filled {
    color: #FFA500;
    text-shadow: 0 2px 4px rgba(255,165,0,0.3);
}

.rating-stars .star.half {
    color: #FFA500;
    opacity: 0.5;
}

.rating-stars .star.empty {
    color: #e0e0e0;
}

.review-count {
    color: #666;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.btn-write-review {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(1,65,28,0.3);
}

.btn-write-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(1,65,28,0.4);
}

/* Reviews Section - Beautiful Design */
.reviews-section {
    margin-top: 3rem;
    padding: 3rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: #01411C;
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

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

.review-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid #01411C;
    position: relative;
}

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

.review-card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(1,65,28,0.3);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.review-stars-inline {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.star-icon.filled {
    color: #FFA500;
    text-shadow: 0 1px 3px rgba(255,165,0,0.3);
}

.star-icon.empty {
    color: #e0e0e0;
}

.review-date-small {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.date-icon {
    margin-right: 0.3rem;
}

.review-title-modern {
    font-size: 1.1rem;
    color: #01411C;
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-text-modern {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.quote-icon {
    color: #01411C;
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 5px;
    line-height: 1;
}

.quote-icon-end {
    color: #01411C;
    font-size: 2rem;
    opacity: 0.3;
    float: right;
    line-height: 1;
}

.review-verified {
    display: flex;
    justify-content: flex-end;
}

.verified-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* No Reviews State */
.no-reviews-yet {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.no-reviews-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.no-reviews-yet h3 {
    color: #01411C;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.no-reviews-yet p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Review Form Enhancements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.char-count {
    display: block;
    text-align: right;
    color: #666;
    margin-top: 0.5rem;
}

.review-guidelines {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.review-guidelines h4 {
    color: #01411C;
    margin-bottom: 1rem;
}

.review-guidelines ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-guidelines li {
    padding: 0.5rem 0;
    color: #555;
}

.btn-submit-review {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(1,65,28,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1,65,28,0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

.notice-icon {
    margin-right: 0.5rem;
}

/* Star Rating Input */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.5rem;
    font-size: 3rem;
    margin: 1rem 0;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: #e0e0e0;
    transition: all 0.2s;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FFA500;
    transform: scale(1.1);
}

.rating-text {
    text-align: center;
    font-weight: 600;
    color: #01411C;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.review-notice {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
}

/* Mobile responsive for ratings */
@media (max-width: 768px) {
    .rating-summary {
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border: 2px solid #01411C;
        box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    }
    
    .rating-summary h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .rating-number {
        font-size: 3.2rem;
        background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.8rem;
    }
    
    .rating-stars {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin: 0.8rem 0;
    }
    
    .rating-stars .star.filled {
        color: #FFA500;
        text-shadow: 0 3px 6px rgba(255,165,0,0.4);
    }
    
    .review-count {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    .btn-write-review {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(1,65,28,0.3);
        margin-top: 1rem;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
        background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card-modern {
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-left: 5px solid #01411C;
    }
    
    .review-card-modern:active {
        transform: scale(0.98);
    }
    
    .reviewer-avatar-large {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        box-shadow: 0 4px 15px rgba(1,65,28,0.3);
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .review-stars-inline {
        font-size: 1.1rem;
    }
    
    .star-icon.filled {
        text-shadow: 0 2px 4px rgba(255,165,0,0.4);
    }
    
    .review-title-modern {
        font-size: 1.05rem;
    }
    
    .review-text-modern {
        font-size: 0.95rem;
        padding: 1rem;
        line-height: 1.7;
    }
    
    .quote-icon {
        font-size: 1.8rem;
        top: -5px;
    }
    
    .verified-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .star-rating {
        font-size: 2.8rem;
        gap: 0.3rem;
        margin: 1.5rem 0;
    }
    
    .star-rating label {
        text-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }
    
    .rating-text {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .review-guidelines {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .review-guidelines h4 {
        font-size: 1.1rem;
    }
    
    .btn-submit-review {
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
        box-shadow: 0 4px 15px rgba(1,65,28,0.35);
    }
    
    .btn-icon {
        font-size: 1.3rem;
    }
    
    .no-reviews-yet {
        padding: 3rem 1.5rem;
    }
    
    .no-reviews-icon {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
        filter: drop-shadow(0 4px 10px rgba(255,165,0,0.3));
    }
    
    .no-reviews-yet h3 {
        font-size: 1.6rem;
        background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .no-reviews-yet p {
        font-size: 1.05rem;
    }
}

/* Extra small devices - Enhanced beauty */
@media (max-width: 480px) {
    .rating-summary {
        padding: 1.8rem 1.2rem;
    }
    
    .rating-number {
        font-size: 2.8rem;
    }
    
    .rating-stars {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .review-card-modern {
        padding: 1.2rem;
    }
    
    .reviewer-avatar-large {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .star-rating {
        font-size: 2.5rem;
    }
}

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.country-code {
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-right: 2px solid #01411C;
    font-size: 1rem;
    white-space: nowrap;
}

.phone-input-wrapper input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    padding-left: 1rem !important;
    margin: 0 !important;
}

.phone-input-wrapper input:focus {
    outline: none;
    box-shadow: none;
}

.phone-input-wrapper:focus-within {
    border-color: #01411C;
    box-shadow: 0 0 0 3px rgba(1, 65, 28, 0.1);
}

@media (max-width: 768px) {
    .country-code {
        padding: 0.75rem 0.75rem;
        font-size: 0.95rem;
    }
}

/* Mobile-specific beautiful enhancements */
@media (max-width: 768px) {
    /* Enhanced rating box on mobile */
    .rating-display {
        padding: 1rem;
        background: linear-gradient(to bottom, rgba(1,65,28,0.03), transparent);
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    /* Beautiful section divider */
    .reviews-section {
        margin-top: 2rem;
        padding: 2.5rem 0;
        background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    }
    
    /* Mobile review header with icon */
    .reviews-header {
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }
    
    /* Enhanced mobile cards */
    .review-card-header {
        background: linear-gradient(to right, rgba(1,65,28,0.02), transparent);
        padding: 1rem;
        border-radius: 12px;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }
    
    /* Beautiful divider between reviews */
    .review-card-modern + .review-card-modern {
        margin-top: 1.5rem;
        position: relative;
    }
    
    /* Smooth transitions on mobile */
    .review-card-modern,
    .rating-summary,
    .btn-write-review {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Touch feedback */
    .review-card-modern:active {
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }
    
    .btn-write-review:active {
        transform: scale(0.98);
    }
    
    /* Modal improvements for mobile */
    .modal-content h2 {
        font-size: 1.5rem;
        background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        padding-top: 0.5rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Beautiful form sections on mobile */
    .form-group {
        margin-bottom: 1.3rem;
    }
    
    .form-group label {
        font-weight: 600;
        color: #01411C;
        margin-bottom: 0.6rem;
        display: block;
        font-size: 0.95rem;
    }
    
    /* Enhanced input fields on mobile */
    .form-group input,
    .form-group textarea {
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        transition: all 0.3s;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #01411C;
        box-shadow: 0 0 0 4px rgba(1,65,28,0.1);
    }
    
    /* Character counter styling */
    .char-count {
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    /* Guidelines box on mobile */
    .review-guidelines {
        border-left: 4px solid #01411C;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .review-guidelines li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    /* Notice styling */
    .review-notice {
        background: linear-gradient(135deg, #fff3cd 0%, #fffbea 100%);
        border: 2px solid #ffc107;
        padding: 1rem 1.2rem;
        margin-top: 1.5rem;
        box-shadow: 0 2px 8px rgba(255,193,7,0.2);
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .rating-summary {
        padding: 1.2rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .rating-stars {
        font-size: 1.3rem;
    }
    
    .review-card-modern {
        padding: 1.2rem;
    }
}

/* High DPI displays (Retina) mobile enhancement */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .rating-stars .star.filled,
    .star-icon.filled {
        filter: drop-shadow(0 2px 4px rgba(255,165,0,0.5));
    }
    
    .reviewer-avatar-large {
        box-shadow: 0 6px 20px rgba(1,65,28,0.4);
    }
    
    .review-card-modern {
        box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    }
}

/* Beautiful Mobile Review Cards - Enhanced Design */
@media (max-width: 768px) {
    /* Review cards with modern card design */
    .review-card-modern {
        background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
        padding: 1.8rem;
        border-radius: 20px;
        box-shadow: 
            0 10px 40px rgba(0,0,0,0.15),
            0 2px 8px rgba(1,65,28,0.1);
        border: 2px solid rgba(1,65,28,0.15);
        border-left: 6px solid #01411C;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    /* Animated gradient overlay */
    .review-card-modern::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(1,65,28,0.08) 0%, transparent 70%);
        animation: pulseGlow 3s ease-in-out infinite;
        pointer-events: none;
    }
    
    @keyframes pulseGlow {
        0%, 100% { opacity: 0.5; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.1); }
    }
    
    /* Decorative top accent bar */
    .review-card-modern::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, 
            #01411C 0%, 
            #0A5C2C 50%, 
            #01411C 100%);
        box-shadow: 0 2px 8px rgba(1,65,28,0.4);
    }
    
    /* Enhanced header with gradient and shadow */
    .review-card-header {
        background: linear-gradient(135deg, 
            rgba(1,65,28,0.12) 0%, 
            rgba(10,92,44,0.08) 50%,
            rgba(1,65,28,0.05) 100%);
        padding: 1.5rem;
        border-radius: 16px;
        margin: -1.8rem -1.8rem 1.5rem -1.8rem;
        box-shadow: 
            0 4px 12px rgba(0,0,0,0.08),
            inset 0 1px 0 rgba(255,255,255,0.5);
        position: relative;
        z-index: 2;
    }
    
    /* Animated shine effect on header */
    .review-card-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255,255,255,0.3), 
            transparent);
        animation: shine 3s ease-in-out infinite;
    }
    
    @keyframes shine {
        0% { left: -100%; }
        50%, 100% { left: 100%; }
    }
    
    /* Large beautiful avatar with glow */
    .reviewer-avatar-large {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: linear-gradient(135deg, #01411C 0%, #0A5C2C 50%, #14a64f 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: bold;
        flex-shrink: 0;
        box-shadow: 
            0 8px 25px rgba(1,65,28,0.5),
            0 0 20px rgba(1,65,28,0.3),
            inset 0 -2px 8px rgba(0,0,0,0.2);
        border: 4px solid white;
        position: relative;
        z-index: 3;
        animation: avatarPulse 2s ease-in-out infinite;
    }
    
    @keyframes avatarPulse {
        0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(1,65,28,0.5); }
        50% { transform: scale(1.05); box-shadow: 0 10px 30px rgba(1,65,28,0.6); }
    }
    
    /* Avatar glow ring */
    .reviewer-avatar-large::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 50%;
        background: linear-gradient(45deg, #01411C, #0A5C2C, #01411C);
        z-index: -1;
        opacity: 0.6;
        filter: blur(8px);
        animation: ringGlow 2s ease-in-out infinite;
    }
    
    @keyframes ringGlow {
        0%, 100% { opacity: 0.4; }
        50% { opacity: 0.8; }
    }
    
    /* Reviewer name with enhanced styling */
    .reviewer-name {
        font-size: 1.25rem;
        font-weight: 800;
        background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.6rem;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        position: relative;
        z-index: 2;
    }
    
    /* Beautiful animated stars */
    .review-stars-inline {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
        display: flex;
        gap: 3px;
        position: relative;
        z-index: 2;
    }
    
    .star-icon.filled {
        color: #FFA500;
        text-shadow: 
            0 2px 8px rgba(255,165,0,0.6),
            0 0 15px rgba(255,165,0,0.4);
        filter: drop-shadow(0 2px 4px rgba(255,165,0,0.5));
        animation: starTwinkle 1.5s ease-in-out infinite;
    }
    
    @keyframes starTwinkle {
        0%, 100% { transform: scale(1) rotate(0deg); }
        25% { transform: scale(1.1) rotate(-5deg); }
        75% { transform: scale(1.1) rotate(5deg); }
    }
    
    .star-icon.filled:nth-child(1) { animation-delay: 0s; }
    .star-icon.filled:nth-child(2) { animation-delay: 0.1s; }
    .star-icon.filled:nth-child(3) { animation-delay: 0.2s; }
    .star-icon.filled:nth-child(4) { animation-delay: 0.3s; }
    .star-icon.filled:nth-child(5) { animation-delay: 0.4s; }
    
    .star-icon.empty {
        color: #e8e8e8;
        opacity: 0.6;
    }
    
    /* Date with icon styling */
    .review-date-small {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #666;
        font-size: 0.95rem;
        font-weight: 600;
        position: relative;
        z-index: 2;
    }
    
    .date-icon {
        font-size: 1.1rem;
        filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
    }
    
    /* Review title with animated gradient underline */
    .review-title-modern {
        font-size: 1.2rem;
        color: #01411C;
        font-weight: 800;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
        position: relative;
        z-index: 2;
    }
    
    .review-title-modern::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60%;
        height: 4px;
        background: linear-gradient(90deg, #01411C 0%, transparent 100%);
        border-radius: 2px;
        animation: underlineExpand 2s ease-in-out infinite;
    }
    
    @keyframes underlineExpand {
        0%, 100% { width: 60%; }
        50% { width: 80%; }
    }
    
    /* Beautiful quote box with multiple shadows */
    .review-text-modern {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
        padding: 1.5rem;
        border-radius: 16px;
        font-size: 1.05rem;
        line-height: 1.9;
        color: #2c3e50;
        box-shadow: 
            inset 0 2px 8px rgba(0,0,0,0.06),
            0 4px 12px rgba(0,0,0,0.08);
        border: 2px solid rgba(1,65,28,0.1);
        position: relative;
        margin-bottom: 1.3rem;
        z-index: 2;
        font-weight: 500;
    }
    
    /* Enhanced quote icons with glow */
    .quote-icon {
        color: #01411C;
        font-size: 3rem;
        opacity: 0.2;
        position: absolute;
        top: -10px;
        left: 10px;
        line-height: 1;
        font-weight: bold;
        text-shadow: 0 0 10px rgba(1,65,28,0.3);
        z-index: 1;
    }
    
    .quote-icon-end {
        color: #01411C;
        font-size: 3rem;
        opacity: 0.2;
        position: absolute;
        bottom: -15px;
        right: 15px;
        line-height: 1;
        font-weight: bold;
        text-shadow: 0 0 10px rgba(1,65,28,0.3);
        z-index: 1;
    }
    
    /* Verified badge with premium design */
    .verified-badge {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 50%, #b8dcc5 100%);
        color: #155724;
        padding: 0.7rem 1.4rem;
        border-radius: 30px;
        font-size: 0.95rem;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 
            0 4px 15px rgba(46,125,50,0.3),
            inset 0 1px 0 rgba(255,255,255,0.5);
        border: 2px solid #9fcdaa;
        position: relative;
        z-index: 2;
        animation: badgeFloat 3s ease-in-out infinite;
    }
    
    @keyframes badgeFloat {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-3px); }
    }
    
    .verified-badge::before {
        content: '✓';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #28a745, #20c997);
        color: white;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1rem;
        box-shadow: 0 2px 8px rgba(40,167,69,0.4);
    }
    
    /* Card hover/active effect with bounce */
    .review-card-modern:active {
        transform: scale(0.97);
        box-shadow: 
            0 5px 20px rgba(0,0,0,0.2),
            0 1px 4px rgba(1,65,28,0.15);
    }
    
    /* Spacing between cards with stagger animation */
    .review-card-modern {
        animation: cardSlideIn 0.6s ease-out forwards;
        opacity: 0;
    }
    
    .review-card-modern:nth-child(1) { animation-delay: 0.1s; }
    .review-card-modern:nth-child(2) { animation-delay: 0.2s; }
    .review-card-modern:nth-child(3) { animation-delay: 0.3s; }
    .review-card-modern:nth-child(4) { animation-delay: 0.4s; }
    .review-card-modern:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes cardSlideIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .review-card-modern + .review-card-modern {
        margin-top: 2rem;
    }
    
    /* Review details section */
    .reviewer-details {
        flex: 1;
        position: relative;
        z-index: 2;
    }
}

/* Extra small mobile - maintain beauty */
@media (max-width: 480px) {
    .review-card-modern {
        padding: 1.6rem;
        border-radius: 18px;
        border-left: 5px solid #01411C;
    }
    
    .review-card-header {
        padding: 1.3rem;
        margin: -1.6rem -1.6rem 1.3rem -1.6rem;
    }
    
    .reviewer-avatar-large {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .reviewer-name {
        font-size: 1.15rem;
    }
    
    .review-stars-inline {
        font-size: 1.2rem;
    }
    
    .review-text-modern {
        padding: 1.3rem;
        font-size: 1rem;
    }
    
    .verified-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* High DPI (Retina) mobile - extra polish */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .review-card-modern {
        box-shadow: 
            0 12px 45px rgba(0,0,0,0.18),
            0 4px 12px rgba(1,65,28,0.15);
    }
    
    .reviewer-avatar-large {
        box-shadow: 
            0 10px 30px rgba(1,65,28,0.6),
            0 0 25px rgba(1,65,28,0.4);
    }
    
    .star-icon.filled {
        filter: drop-shadow(0 4px 8px rgba(255,165,0,0.7));
    }
    
    .verified-badge {
        box-shadow: 
            0 6px 20px rgba(46,125,50,0.35),
            inset 0 2px 0 rgba(255,255,255,0.6);
    }
}

/* ============================================
   BEAUTIFUL REVIEW BOX - PC & MOBILE RESPONSIVE
   ============================================ */

.reviews-section-wrapper {
    margin-top: 3rem;
    padding: 3rem 0;
    background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 50%, #fafbfc 100%);
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.reviews-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
}

.reviews-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 
        0 15px 60px rgba(0,0,0,0.15),
        0 5px 15px rgba(1,65,28,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 3px solid rgba(1,65,28,0.15);
    position: relative;
    overflow: hidden;
}

.reviews-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        #01411C 0%, 
        #0A5C2C 25%, 
        #14a64f 50%,
        #0A5C2C 75%, 
        #01411C 100%);
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
    box-shadow: 0 4px 15px rgba(1,65,28,0.4);
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.reviews-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(1,65,28,0.08) 0%, transparent 70%);
    border-radius: 0 28px 0 100%;
    pointer-events: none;
}

.review-item {
    padding: 2.5rem 0;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-item.first-review {
    padding-top: 0;
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.reviewer-profile {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
}

.reviewer-avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 50%, #14a64f 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    box-shadow: 
        0 10px 35px rgba(1,65,28,0.5),
        0 0 30px rgba(1,65,28,0.3),
        inset 0 -4px 12px rgba(0,0,0,0.25);
    border: 5px solid white;
    position: relative;
    flex-shrink: 0;
    animation: avatarPulse 2.5s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 35px rgba(1,65,28,0.5), 0 0 30px rgba(1,65,28,0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 40px rgba(1,65,28,0.6), 0 0 40px rgba(1,65,28,0.4);
    }
}

.reviewer-avatar-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(45deg, #01411C, #0A5C2C, #14a64f, #0A5C2C, #01411C);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
    animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.reviewer-info-block {
    flex: 1;
}

.reviewer-name-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.7rem 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 0.7rem;
}

.star-filled {
    color: #FFA500;
    font-size: 1.4rem;
    text-shadow: 
        0 2px 8px rgba(255,165,0,0.6),
        0 0 20px rgba(255,165,0,0.4);
    filter: drop-shadow(0 2px 6px rgba(255,165,0,0.5));
    animation: starTwinkle 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    25% { transform: scale(1.15) rotate(-8deg); opacity: 0.9; }
    50% { transform: scale(1) rotate(0deg); opacity: 1; }
    75% { transform: scale(1.15) rotate(8deg); opacity: 0.9; }
}

.star-filled:nth-child(1) { animation-delay: 0s; }
.star-filled:nth-child(2) { animation-delay: 0.2s; }
.star-filled:nth-child(3) { animation-delay: 0.4s; }
.star-filled:nth-child(4) { animation-delay: 0.6s; }
.star-filled:nth-child(5) { animation-delay: 0.8s; }

.star-empty {
    color: #e0e0e0;
    font-size: 1.4rem;
    opacity: 0.6;
}

.review-date-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #666;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.review-date-text svg {
    opacity: 0.8;
    color: #01411C;
}

.verified-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    color: #155724;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 800;
    border: 2.5px solid #81c784;
    box-shadow: 
        0 4px 15px rgba(46,125,50,0.3),
        inset 0 1px 0 rgba(255,255,255,0.6);
    animation: badgeFloat 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.verified-badge-small svg {
    color: #2e7d32;
    filter: drop-shadow(0 2px 4px rgba(46,125,50,0.3));
}

.review-title-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #01411C;
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 0.8rem;
}

.review-title-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #01411C 0%, transparent 100%);
    border-radius: 2px;
    animation: underlineExpand 2.5s ease-in-out infinite;
}

@keyframes underlineExpand {
    0%, 100% { width: 80px; }
    50% { width: 120px; }
}

.review-content-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 2.2rem;
    border-radius: 20px;
    border: 2.5px solid rgba(1,65,28,0.12);
    position: relative;
    box-shadow: 
        inset 0 2px 10px rgba(0,0,0,0.05),
        0 6px 20px rgba(0,0,0,0.08);
}

.quote-start {
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.2;
    color: #01411C;
    filter: drop-shadow(0 2px 6px rgba(1,65,28,0.2));
}

.review-text-content {
    font-size: 1.15rem;
    line-height: 2;
    color: #2c3e50;
    margin: 0;
    padding: 0 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.review-divider {
    height: 3px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(1,65,28,0.15) 20%,
        rgba(1,65,28,0.3) 50%,
        rgba(1,65,28,0.15) 80%,
        transparent 100%);
    margin: 2.5rem 0;
    border-radius: 2px;
    position: relative;
}

.review-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #01411C;
    font-size: 1rem;
    background: white;
    padding: 0 1rem;
}

.no-reviews-box {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 28px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.15);
    border: 3px solid rgba(1,65,28,0.1);
    position: relative;
    overflow: hidden;
}

.no-reviews-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #01411C, #0A5C2C, #01411C);
}

.no-reviews-box .no-reviews-icon svg {
    color: #FFA500;
    filter: drop-shadow(0 6px 20px rgba(255,165,0,0.5));
    margin-bottom: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.no-reviews-box h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.no-reviews-box p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .reviews-section-wrapper {
        padding: 2rem 0;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .reviews-subtitle {
        font-size: 1.05rem;
    }
    
    .reviews-box {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        border-width: 2px;
    }
    
    .reviews-box::before {
        height: 6px;
    }
    
    .review-item {
        padding: 2rem 0;
    }
    
    .review-item-header {
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .reviewer-avatar-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-width: 4px;
    }
    
    .reviewer-name-text {
        font-size: 1.3rem;
    }
    
    .star-filled,
    .star-empty {
        font-size: 1.2rem;
    }
    
    .verified-badge-small {
        align-self: flex-start;
        padding: 0.6rem 1.1rem;
        font-size: 0.9rem;
    }
    
    .review-title-text {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .review-content-box {
        padding: 1.8rem 1.5rem;
        border-radius: 18px;
    }
    
    .review-text-content {
        font-size: 1.05rem;
        line-height: 1.9;
        padding: 0 0.8rem;
    }
    
    .review-divider {
        margin: 2rem 0;
    }
    
    .no-reviews-box {
        padding: 4rem 2rem;
        border-radius: 24px;
    }
    
    .no-reviews-box h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .reviews-header h2 {
        font-size: 1.75rem;
    }
    
    .reviews-box {
        padding: 1.8rem 1.2rem;
        border-radius: 20px;
    }
    
    .reviewer-avatar-circle {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }
    
    .reviewer-name-text {
        font-size: 1.2rem;
    }
    
    .star-filled,
    .star-empty {
        font-size: 1.1rem;
    }
    
    .review-content-box {
        padding: 1.5rem 1.2rem;
    }
    
    .review-text-content {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* HIGH DPI DISPLAYS */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .reviews-box {
        box-shadow: 
            0 18px 70px rgba(0,0,0,0.18),
            0 6px 18px rgba(1,65,28,0.15),
            inset 0 1px 0 rgba(255,255,255,0.9);
    }
    
    .reviewer-avatar-circle {
        box-shadow: 
            0 12px 40px rgba(1,65,28,0.6),
            0 0 35px rgba(1,65,28,0.4),
            inset 0 -5px 15px rgba(0,0,0,0.3);
    }
    
    .star-filled {
        filter: drop-shadow(0 3px 8px rgba(255,165,0,0.7));
    }
    
    .verified-badge-small {
        box-shadow: 
            0 6px 20px rgba(46,125,50,0.4),
            inset 0 2px 0 rgba(255,255,255,0.7);
    }
}

/* ============================================
   ACTION BUTTONS - BEAUTIFUL DESIGN
   ============================================ */

.action-buttons-section {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 28px;
    box-shadow: 
        0 15px 60px rgba(0,0,0,0.12),
        0 5px 15px rgba(1,65,28,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 3px solid rgba(1,65,28,0.1);
    position: relative;
    overflow: hidden;
}

.action-buttons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        #01411C 0%, 
        #0A5C2C 50%, 
        #01411C 100%);
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

.action-buttons-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at bottom left, rgba(1,65,28,0.06) 0%, transparent 70%);
    border-radius: 0 100% 0 28px;
    pointer-events: none;
}

.action-buttons-section h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.action-btn:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.action-btn svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.action-btn:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.action-btn span {
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #3d8b40 100%);
    color: white;
    border-color: #388e3c;
}

.call-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 50%, #2e7d32 100%);
    box-shadow: 0 12px 35px rgba(76,175,80,0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 50%, #17a84a 100%);
    color: white;
    border-color: #128c7e;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ebe57 0%, #17a84a 50%, #0f8f40 100%);
    box-shadow: 0 12px 35px rgba(37,211,102,0.4);
}

/* Facebook Button */
.facebook-btn {
    background: linear-gradient(135deg, #1877F2 0%, #0e5fc7 50%, #0a4fa1 100%);
    color: white;
    border-color: #0c4a8f;
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #0e5fc7 0%, #0a4fa1 50%, #083f7c 100%);
    box-shadow: 0 12px 35px rgba(24,119,242,0.4);
}

/* Twitter Button */
.twitter-btn {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 50%, #0a6fb3 100%);
    color: white;
    border-color: #0c5d94;
}

.twitter-btn:hover {
    background: linear-gradient(135deg, #0d8bd9 0%, #0a6fb3 50%, #085a8f 100%);
    box-shadow: 0 12px 35px rgba(29,161,242,0.4);
}

/* Email Button */
.email-btn {
    background: linear-gradient(135deg, #EA4335 0%, #d33426 50%, #b82818 100%);
    color: white;
    border-color: #a52714;
}

.email-btn:hover {
    background: linear-gradient(135deg, #d33426 0%, #b82818 50%, #9d1f10 100%);
    box-shadow: 0 12px 35px rgba(234,67,53,0.4);
}

/* Tablet */
@media (max-width: 992px) {
    .action-buttons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .action-buttons-section {
        padding: 2.5rem 2rem;
        border-radius: 24px;
        margin-top: 2.5rem;
    }
    
    .action-buttons-section h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .action-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .action-btn {
        padding: 1.3rem 1rem;
        border-radius: 18px;
        font-size: 1rem;
        border-width: 2.5px;
    }
    
    .action-btn svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .action-buttons-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .action-buttons-section h3 {
        font-size: 1.5rem;
    }
    
    .action-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    
    .action-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .action-btn span {
        flex: 1;
        text-align: left;
    }
}

/* High DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .action-buttons-section {
        box-shadow: 
            0 18px 70px rgba(0,0,0,0.15),
            0 6px 18px rgba(1,65,28,0.12),
            inset 0 1px 0 rgba(255,255,255,0.9);
    }
    
    .action-btn {
        box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    }
    
    .action-btn:hover {
        box-shadow: 0 14px 40px rgba(0,0,0,0.28);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.action-btn:focus {
    animation: pulse 0.6s ease-in-out;
}

/* ============================================
   HOSPITAL CARDS - BEAUTIFUL DESIGN
   ============================================ */

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

.hospital-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.12),
        0 2px 8px rgba(1,65,28,0.08);
    border: 2px solid rgba(1,65,28,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hospital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #01411C 0%, #0A5C2C 50%, #01411C 100%);
}

.hospital-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.18),
        0 5px 15px rgba(1,65,28,0.15);
}

.hospital-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.hospital-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    flex: 1;
}

.hospital-header h3 a {
    color: #01411C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hospital-header h3 a:hover {
    color: #0A5C2C;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid #FFD54F;
    flex-shrink: 0;
}

.rating-value {
    color: #F57C00;
}

.rating-count {
    color: #666;
    font-size: 0.85rem;
}

.hospital-details {
    margin-bottom: 1.5rem;
}

.hospital-location {
    font-size: 1.1rem;
    color: #01411C;
    margin-bottom: 0.5rem;
}

.hospital-address {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hospital-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid #a5d6a7;
}

.hospital-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-view {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #01411C 0%, #0A5C2C 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #01411C;
}

.btn-view:hover {
    background: linear-gradient(135deg, #0A5C2C 0%, #14a64f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1,65,28,0.3);
}

.btn-call {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #388e3c;
}

.btn-call:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hospitals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hospital-card {
        padding: 1.5rem;
    }
    
    .hospital-header h3 {
        font-size: 1.2rem;
    }
    
    .hospital-actions {
        flex-direction: column;
    }
    
    .btn-view,
    .btn-call {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hospital-header {
        flex-direction: column;
    }
    
    .rating-badge {
        align-self: flex-start;
    }
}

/* ============================================
   HOSPITAL DETAIL PAGE
   ============================================ */

.hospital-detail-section {
    padding: 3rem 0;
    background: #fafbfc;
}

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

.hospital-detail-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 2px solid rgba(1,65,28,0.1);
    margin-bottom: 2rem;
}

.hospital-detail-header h1 {
    font-size: 2.5rem;
    color: #01411C;
    margin: 0 0 1rem 0;
    font-weight: 800;
}

.hospital-location {
    font-size: 1.3rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

.hospital-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 2px solid rgba(1,65,28,0.1);
    margin-bottom: 2rem;
}

.hospital-info-card h2 {
    font-size: 2rem;
    color: #01411C;
    margin: 0 0 2rem 0;
    font-weight: 800;
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-section h3 {
    font-size: 1.3rem;
    color: #01411C;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.info-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.facilities-grid,
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
}

.facility-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid #a5d6a7;
}

.specialty-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid #90caf9;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.service-label {
    font-weight: 600;
    color: #333;
}

.service-value {
    font-weight: 600;
}

.service-value.yes {
    color: #2e7d32;
}

.service-value.no {
    color: #d32f2f;
}

/* Sidebar */
.hospital-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.contact-card,
.quick-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 2px solid rgba(1,65,28,0.1);
    margin-bottom: 2rem;
}

.contact-card h3,
.quick-info-card h3 {
    font-size: 1.3rem;
    color: #01411C;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.contact-btn:last-child {
    margin-bottom: 0;
}

.phone-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-color: #388e3c;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: white;
    border-color: #128c7e;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ebe57 0%, #17a84a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.email-btn {
    background: linear-gradient(135deg, #EA4335 0%, #d33426 100%);
    color: white;
    border-color: #a52714;
}

.email-btn:hover {
    background: linear-gradient(135deg, #d33426 0%, #b82818 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234,67,53,0.3);
}

.website-btn {
    background: linear-gradient(135deg, #1877F2 0%, #0e5fc7 100%);
    color: white;
    border-color: #0c4a8f;
}

.website-btn:hover {
    background: linear-gradient(135deg, #0e5fc7 0%, #0a4fa1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24,119,242,0.3);
}

.quick-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 600;
    color: #333;
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .hospital-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .hospital-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hospital-detail-header h1 {
        font-size: 2rem;
    }
    
    .hospital-info-card {
        padding: 2rem;
    }
    
    .facilities-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hospital-detail-header {
        padding: 2rem 1.5rem;
    }
    
    .hospital-detail-header h1 {
        font-size: 1.75rem;
    }
    
    .hospital-location {
        font-size: 1.1rem;
    }
}

/* ============================================
   CONTACT BUTTONS SECTION
   ============================================ */

.contact-buttons-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.1),
        0 4px 12px rgba(1,65,28,0.08);
    border: 3px solid rgba(1,65,28,0.15);
    position: relative;
    overflow: hidden;
}

.contact-buttons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4CAF50 0%, #25D366 50%, #4CAF50 100%);
}

.contact-buttons-section h3 {
    font-size: 1.8rem;
    color: #01411C;
    margin: 0 0 1.5rem 0;
    font-weight: 800;
    text-align: center;
}

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

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.contact-btn svg {
    flex-shrink: 0;
}

.contact-btn.call-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #3d8b40 100%);
    color: white;
    border-color: #388e3c;
}

.contact-btn.call-btn:hover {
    box-shadow: 0 12px 35px rgba(76,175,80,0.4);
}

.contact-btn.whatsapp-contact-btn {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 50%, #17a84a 100%);
    color: white;
    border-color: #128c7e;
}

.contact-btn.whatsapp-contact-btn:hover {
    box-shadow: 0 12px 35px rgba(37,211,102,0.4);
}

/* ============================================
   SHARE BUTTONS SECTION
   ============================================ */

.share-buttons-section {
    margin-top: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.1),
        0 4px 12px rgba(0,0,0,0.05);
    border: 2px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.share-buttons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        #1877F2 0%, 
        #25D366 25%, 
        #000000 50%, 
        #E60023 75%,
        #1877F2 100%);
    background-size: 200% 100%;
    animation: shareGradient 4s linear infinite;
}

@keyframes shareGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.share-buttons-section h3 {
    font-size: 1.6rem;
    color: #333;
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    text-align: center;
}

.share-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin: 0 0 2rem 0;
}

.share-buttons-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2.5px solid;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    min-width: 100px;
}

.share-btn::before {
    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.5s ease;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.share-btn:hover svg {
    transform: scale(1.15);
}

.share-btn svg {
    transition: transform 0.3s ease;
}

/* Facebook Share */
.facebook-share-btn {
    background: linear-gradient(135deg, #1877F2 0%, #0d65d9 100%);
    color: white;
    border-color: #1565c0;
}

.facebook-share-btn:hover {
    box-shadow: 0 10px 30px rgba(24,119,242,0.4);
}

/* WhatsApp Share */
.whatsapp-share-btn {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: white;
    border-color: #128c7e;
}

.whatsapp-share-btn:hover {
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* X (Twitter) Share */
.x-share-btn {
    background: linear-gradient(135deg, #000000 0%, #14171a 100%);
    color: white;
    border-color: #333;
}

.x-share-btn:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Pinterest Share */
.pinterest-share-btn {
    background: linear-gradient(135deg, #E60023 0%, #c8102e 100%);
    color: white;
    border-color: #ad081b;
}

.pinterest-share-btn:hover {
    box-shadow: 0 10px 30px rgba(230,0,35,0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-buttons-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-buttons-section h3 {
        font-size: 1.5rem;
    }
    
    .contact-buttons-grid {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        padding: 1.1rem 2rem;
    }
    
    .share-buttons-section {
        padding: 2rem 1.5rem;
    }
    
    .share-buttons-section h3 {
        font-size: 1.4rem;
    }
    
    .share-buttons-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .share-btn {
        padding: 1rem;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .contact-btn {
        font-size: 1.05rem;
        padding: 1rem 1.5rem;
    }
    
    .share-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-btn {
        padding: 0.9rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .share-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* High DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-buttons-section {
        box-shadow: 
            0 12px 45px rgba(0,0,0,0.12),
            0 5px 15px rgba(1,65,28,0.1);
    }
    
    .share-buttons-section {
        box-shadow: 
            0 12px 45px rgba(0,0,0,0.12),
            0 5px 15px rgba(0,0,0,0.08);
    }
}

/* ============================================
   HOSPITALS LISTING PAGE
   ============================================ */

.hospitals-section { padding: 3rem 0; }
.page-main-title { text-align: center; font-size: 2.2rem; color: #01411C; margin-bottom: 2rem; font-weight: 800; }

.hospital-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.5rem 1.2rem; border-radius: 20px; text-decoration: none; font-weight: 600; font-size: 0.9rem; background: #f0f0f0; color: #555; transition: all 0.3s; border: 2px solid transparent; }
.filter-btn:hover { background: #e0e0e0; }
.filter-btn.active { background: #01411C; color: white; border-color: #01411C; }

.hospitals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }

.hospital-card { background: white; border-radius: 16px; padding: 1.8rem; border: 2px solid #e0e0e0; box-shadow: 0 4px 15px rgba(0,0,0,0.06); transition: all 0.3s; position: relative; overflow: hidden; }
.hospital-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #01411C, #0A5C2C, #14a64f); }
.hospital-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); border-color: #01411C; }

.hospital-card-header { margin-bottom: 0.8rem; }
.hospital-card-header h3 { font-size: 1.3rem; color: #01411C; margin: 0 0 0.4rem 0; font-weight: 800; }
.hospital-city-badge { color: #666; font-size: 0.95rem; }
.hospital-address { color: #777; font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }

.hospital-card-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.h-badge { padding: 0.35rem 0.8rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; }
.h-badge-green { background: #e8f5e9; color: #2e7d32; }
.h-badge-blue { background: #e3f2fd; color: #1565c0; }
.h-badge-purple { background: #f3e5f5; color: #7b1fa2; }

.hospital-card-footer { display: flex; gap: 0.8rem; }
.btn-view-hospital { flex: 1; text-align: center; padding: 0.7rem; background: linear-gradient(135deg, #01411C, #0A5C2C); color: white; text-decoration: none; border-radius: 10px; font-weight: 700; transition: all 0.3s; }
.btn-view-hospital:hover { background: linear-gradient(135deg, #0A5C2C, #14a64f); }
.btn-call-hospital { padding: 0.7rem 1.2rem; background: #4CAF50; color: white; text-decoration: none; border-radius: 10px; font-weight: 700; transition: all 0.3s; }
.btn-call-hospital:hover { background: #45a049; }

/* Hospital Doctors List on Detail Page */
.hospital-doctors-list { margin-top: 2rem; padding: 2.5rem; background: white; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border: 2px solid rgba(1,65,28,0.1); }
.hospital-doctors-list h2 { font-size: 1.8rem; color: #01411C; margin: 0 0 2rem 0; font-weight: 800; }

.btn-view-doctor { display: block; text-align: center; margin-top: 0.8rem; padding: 0.6rem; background: linear-gradient(135deg, #01411C, #0A5C2C); color: white; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.btn-view-doctor:hover { background: linear-gradient(135deg, #0A5C2C, #14a64f); }

@media (max-width: 768px) {
    .hospitals-grid { grid-template-columns: 1fr; }
    .hospital-card-footer { flex-direction: column; }
    .page-main-title { font-size: 1.8rem; }
}

/* ============================================
   HOMEPAGE HOSPITALS SECTION
   ============================================ */

.home-hospitals-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #f8fff8 0%, #ffffff 100%);
    border-top: 3px solid rgba(1,65,28,0.1);
}

.home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-section-header h2 {
    font-size: 2rem;
    color: #01411C;
    margin: 0;
    font-weight: 800;
}

.home-section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin: 0.3rem 0 0 0;
}

.home-section-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-view-all {
    padding: 0.7rem 1.5rem;
    background: white;
    color: #01411C;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    border: 2px solid #01411C;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-view-all:hover {
    background: #01411C;
    color: white;
}

.btn-add-new {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #01411C, #0A5C2C);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    border: 2px solid #01411C;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-add-new:hover {
    background: linear-gradient(135deg, #0A5C2C, #14a64f);
    border-color: #0A5C2C;
}

.btn-view-all-bottom {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, #01411C, #0A5C2C);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(1,65,28,0.25);
}

.btn-view-all-bottom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1,65,28,0.35);
}

@media (max-width: 768px) {
    .home-section-header {
        flex-direction: column;
        text-align: center;
    }

    .home-section-header h2 {
        font-size: 1.6rem;
    }

    .home-section-actions {
        justify-content: center;
    }

    .btn-view-all, .btn-add-new {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* ============================================
   HOSPITAL IMAGES
   ============================================ */

/* Hospital Card Image (Listing + Homepage) */
.hospital-card-image {
    width: 100%;
    height: 180px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    margin: -1.8rem -1.8rem 1.2rem -1.8rem;
    width: calc(100% + 3.6rem);
}

.hospital-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hospital-card:hover .hospital-card-image img {
    transform: scale(1.05);
}

.hospital-card-icon {
    width: calc(100% + 3.6rem);
    height: 120px;
    margin: -1.8rem -1.8rem 1.2rem -1.8rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 12px 12px 0 0;
}

/* Hospital Detail Page Image */
.hospital-detail-header {
    margin-bottom: 2rem;
}

.hospital-detail-image {
    width: 100%;
    max-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hospital-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hospital-card-image {
        height: 150px;
    }
    
    .hospital-card-icon {
        height: 100px;
        font-size: 2.5rem;
    }
    
    .hospital-detail-image {
        max-height: 250px;
        border-radius: 14px;
    }
    
    .hospital-detail-image img {
        max-height: 250px;
    }
}

/* ============================================
   HOSPITAL DOCTORS SECTION - PROFILE GRID
   ============================================ */

.hospital-doctors-section {
    background: white;
    border-radius: 24px;
    padding: 2.2rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.hospital-doctors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01411C 0%, #14a64f 50%, #01411C 100%);
}

.hds-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hds-header h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 800;
}

.hds-count {
    background: linear-gradient(135deg, #01411C, #0A5C2C);
    color: white;
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Profile Grid - 3 per row */
.doc-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

/* Profile Card */
.doc-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fafcfb;
    border: 1.5px solid #eef0f2;
    border-radius: 20px;
    padding: 1.8rem 1.2rem 1.4rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    position: relative;
}

.doc-profile-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #01411C, #14a64f);
    border-radius: 3px 3px 0 0;
    transition: width 0.35s ease;
}

.doc-profile-card:hover {
    border-color: #c8e6c9;
    background: white;
    box-shadow: 0 14px 40px rgba(1,65,28,0.1);
    transform: translateY(-5px);
}

.doc-profile-card:hover::after {
    width: 60%;
}

/* Avatar */
.doc-profile-top {
    margin-bottom: 1rem;
}

.doc-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    border: 3px solid #e0e0e0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.doc-profile-card:hover .doc-profile-avatar {
    border-color: #01411C;
    box-shadow: 0 8px 25px rgba(1,65,28,0.15);
    transform: scale(1.05);
}

.doc-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.doc-profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    flex: 1;
}

.doc-profile-info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
}

.doc-profile-spec {
    margin: 0;
    display: inline-block;
    background: #eef6ff;
    color: #2563eb;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
}

.doc-profile-time {
    margin: 0;
    display: inline-block;
    background: #fef9ee;
    color: #b45309;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
}

/* Button */
.doc-profile-action {
    width: 100%;
}

.doc-profile-btn {
    display: block;
    padding: 0.55rem 1rem;
    background: white;
    color: #01411C;
    border: 1.5px solid #01411C;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    text-align: center;
}

.doc-profile-card:hover .doc-profile-btn {
    background: linear-gradient(135deg, #01411C, #0A5C2C);
    color: white;
    border-color: #01411C;
    box-shadow: 0 4px 14px rgba(1,65,28,0.2);
}

/* Empty */
.hds-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #bbb;
}

.hds-empty-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.6rem;
}

.hds-empty p {
    font-size: 1rem;
    margin: 0;
}

/* Tablet */
@media (max-width: 900px) {
    .doc-profile-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .doc-profile-avatar {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .doc-profile-card {
        padding: 1.4rem 0.8rem 1.2rem;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .hospital-doctors-section {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }

    .hds-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }

    .hds-header h2 {
        font-size: 1.25rem;
    }

    .doc-profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .doc-profile-card {
        padding: 1.2rem 0.7rem 1rem;
        border-radius: 16px;
    }

    .doc-profile-avatar {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        border-width: 2px;
    }

    .doc-profile-info h3 {
        font-size: 0.88rem;
    }

    .doc-profile-spec,
    .doc-profile-time {
        font-size: 0.68rem;
        padding: 0.2rem 0.6rem;
    }

    .doc-profile-btn {
        font-size: 0.75rem;
        padding: 0.45rem 0.6rem;
    }
}

@media (max-width: 400px) {
    .doc-profile-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .doc-profile-info h3 {
        font-size: 0.82rem;
    }
}

/* ============================================
   CLINIC BOXES - DOCTOR DETAIL PAGE
   ============================================ */

.clinic-box {
    background: linear-gradient(135deg, #f8faf8, #ffffff);
    border: 2px solid #e8f5e9;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.clinic-box.clinic-2 {
    background: linear-gradient(135deg, #fff9f0, #ffffff);
    border-color: #ffe0b2;
}

.clinic-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.clinic-number {
    background: linear-gradient(135deg, #01411C, #0A5C2C);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.clinic-box.clinic-2 .clinic-number {
    background: linear-gradient(135deg, #e65100, #ff8f00);
}

.clinic-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #01411C;
    font-weight: 700;
}

.clinic-box.clinic-2 .clinic-header h3 {
    color: #e65100;
}

.clinic-address {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.clinic-timing {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.clinic-contacts {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn-clinic {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-clinic.btn-call {
    background: #01411C;
    color: white;
}

.btn-clinic.btn-call:hover {
    background: #0A5C2C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 65, 28, 0.3);
}

.btn-clinic.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-clinic.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .clinic-box {
        padding: 1.2rem;
        border-radius: 14px;
    }
    
    .clinic-header h3 {
        font-size: 1.05rem;
    }
    
    .clinic-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .clinic-timing {
        font-size: 1rem;
    }
    
    .clinic-contacts {
        flex-direction: column;
    }
    
    .btn-clinic {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }
}
