/* ===== AFRICA CONTINENTAL MAP - HOME PAGE ===== */
.africa-map-section {
    padding: 100px 0 5px;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        #1e3a5f 50%,
        var(--primary-blue) 100%
    );
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.africa-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-header > p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 15px;
    opacity: 0.9;
    color: var(--white);
}

.map-instruction {
    color: var(--secondary-gold) !important;
    font-weight: 600;
    font-size: 1.1rem !important;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Map Container */
.map-container {
    position: relative;
    margin: 40px auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    max-width: 1200px;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

#africa-map {
    height: 600px;
    width: 100%;
    border-radius: 18px;
    background: #a3d9ff;
    z-index: 1;
}

/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-width: 250px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-legend h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-legend ul {
    list-style: none;
}

.map-legend li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.legend-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.legend-icon.gold { background-color: var(--secondary-gold); }
.legend-icon.green { background-color: var(--accent-green); }
.legend-icon.blue { background-color: #3498db; }

/* Country Modal */
.country-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.country-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.country-modal .modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 700px; /* Increased from 500px */
    max-height: 85vh; /* Limit height for scrolling */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.country-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-modal .modal-close:hover {
    background: var(--accent-green);
    transform: rotate(90deg);
}

.country-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5282 100%);
    color: white;
    padding: 40px 40px 30px;
    position: relative;
	flex-shrink: 0;
}

.country-modal .modal-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.country-modal .modal-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-modal .modal-body {
    padding: 30px 40px;
    overflow-y: auto; /* Make it scrollable */
    flex: 1; /* Take available space */
    max-height: calc(85vh - 150px); /* Reserve space for header and actions */
}

.country-summary {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start; /* Changed from center to flex-start */
    min-height: 140px; /* Ensure enough height */
}

.country-flag-large {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #e6c130 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.country-info {
    flex: 1;
}

.country-info p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.country-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.country-stats .stat {
    text-align: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
}

.country-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.country-stats .stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
	flex-shrink: 0; /* Prevent actions from shrinking */
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.modal-actions .btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-align: center;
}

/* Custom scrollbar for modal */
.country-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.country-modal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.country-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.country-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* Stats Section */
.globe-stats-section {
    background-color: var(--primary-blue);
    padding: 30px 0;
    color: white;
	margin-bottom: -20px;
}

.globe-stats-section .globe-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.globe-stats-section .stat {
    text-align: center;
}

.globe-stats-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-gold);
    display: block;
    margin-bottom: 10px;
}

.globe-stats-section .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* ===== LEAFLET MAP STYLING ===== */
.leaflet-control-zoom {
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.leaflet-control-zoom a {
    background: var(--primary-blue);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.leaflet-control-zoom a:hover {
    background: var(--secondary-gold);
    color: var(--primary-blue);
}

.leaflet-control-zoom-in {
    border-radius: 8px 8px 0 0;
}

.leaflet-control-zoom-out {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

/* Ensure proper stacking */
header {
    z-index: 1000;
}

/* Country highlight and label */
.country-label {
    background: transparent !important;
    border: none !important;
}

.country-label-text {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--secondary-gold);
    animation: pulseLabel 2s infinite;
	display: inline-block;
    white-space: nowrap;
}

@keyframes pulseLabel {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== CHAMBER MARKER STYLING ===== */

/* White info block for chamber markers */
.chamber-info-popup .leaflet-popup-content-wrapper {
    background: white !important;
    border: 2px solid var(--secondary-gold) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
    min-width: 200px !important;
    text-align: center !important;
}

.chamber-info-popup .leaflet-popup-tip {
    background: white !important;
    border: 1px solid var(--secondary-gold) !important;
}

.chamber-info-block h6 {
    color: var(--primary-blue);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chamber-info-block .chamber-location {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.95rem;
}

.chamber-info-block .chamber-status {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.status-active {
    color: #2ecc71;
    font-weight: 600;
}

.status-developing {
    color: #f39c12;
    font-weight: 600;
}

.status-developing {
    color: #f39c12;
    font-weight: 600;
}
.chamber-marker.planning { background: #3498db; }

.chamber-details-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-weight: 600;
}

.chamber-details-btn:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

/* Back to Africa Map Button - Now inside Leaflet controls */
.back-to-africa-btn {
    display: none;
    margin-bottom: 10px !important;
}

.btn-back {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-gold);
    width: 100%;
    white-space: nowrap;
}

.btn-back:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-back i {
    font-size: 1rem;
}

/* Remove the old animation since we're not sliding from right */
@keyframes slideInRight {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    #africa-map {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .africa-map-section {
        padding: 80px 0 50px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    #africa-map {
        height: 500px;
    }
    
    .country-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .globe-stats-section .globe-stats {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .africa-map-section {
        padding: 60px 0 40px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header > p {
        font-size: 1.1rem;
    }
	
	.country-modal .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 20px auto;
        max-height: 90vh;
    }
	
	.country-modal .modal-body {
        padding: 20px;
        max-height: calc(90vh - 140px);
    }
    
    .country-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .country-flag-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .country-modal .modal-header {
        padding: 30px 20px 20px;
    }
    
    .country-modal .modal-header h2 {
        font-size: 1.8rem;
    }

    
    #africa-map {
        height: 400px;
    }
    
    .map-legend {
        position: absolute;
        top: 20px;
        left: 20px;
        max-width: calc(100% - 40px);
        margin: 0;
        width: auto;
    }
    
    .country-stats {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .globe-stats-section .globe-stats {
        gap: 30px;
        flex-direction: column;
    }
    
    .globe-stats-section .stat-number {
        font-size: 2.5rem;
    }
    
    .back-to-africa-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-back {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* ===== NEW CHAMBER MODAL STYLES ===== */
.chamber-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.chamber-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chamber-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.chamber-modal .modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 950px;  /* Changed from 800px to 950px - WIDER */
    max-height: 85vh;  /* Changed from 90vh to 85vh - slightly taller feel */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    animation: modalSlideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

.chamber-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.chamber-modal .modal-close:hover {
    background: var(--accent-green);
    transform: rotate(90deg) scale(1.1);
}

.chamber-modal .modal-header h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.chamber-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
    color: white;
    padding: 25px 40px 20px;  /* Reduced from 40px 50px 30px */
    position: relative;
    flex-shrink: 0;
}

.chamber-modal .modal-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.chamber-modal .modal-body {
    padding: 25px 40px;  /* Reduced from 35px 50px */
    overflow-y: auto;
    flex: 1;
}

/* Leader Info */
.leader-info {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;  /* Reduced from 40px */
    padding-bottom: 20px;  /* Reduced from 30px */
    border-bottom: 1px solid var(--light-gray);  /* Thinner border */
    align-items: flex-start;
}

.leader-photo-placeholder {
    flex-shrink: 0;
    width: 70px;  /* Reduced from 100px */
    height: 70px;  /* Reduced from 100px */
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #e6c130 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;  /* Reduced from 4rem */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.leader-details h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;  /* Reduced from 1.8rem */
    margin-bottom: 5px;
}

.leader-details {
    flex: 1;
}

.leader-details p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

#modalLeaderTitle {
    color: var(--secondary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

#modalLeaderBio {
    font-size: 1.05rem;
    margin-top: 15px;
}

/* Chamber Details Grid */
.chamber-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.detail-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.detail-content h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-content p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
}

/* Contact Section */
.contact-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.contact-section h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-method {
    background: var(--light-gray);
    border: none;
    border-radius: 10px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.contact-method:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-method i {
    font-size: 1.2rem;
}

/* Chamber Description */
.chamber-description h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chamber-description p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.1rem;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-gold);
}

/* Modal Footer */
.modal-footer {
    padding: 15px 40px;  /* Reduced from 25px 50px */
    background: #f8f9fa;
    border-top: 1px solid var(--light-gray);  /* Thinner border */
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-join {
    background: linear-gradient(135deg, var(--accent-green) 0%, #27ae60 100%);
    color: white;
    border: none;
    padding: 10px 20px;  /* Reduced from 16px 30px */
    border-radius: 8px;  /* Slightly smaller radius */
    font-size: 0.9rem;  /* Reduced from 1.1rem */
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-footer .btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 20px;  /* Reduced from 16px 30px */
    border-radius: 8px;  /* Slightly smaller radius */
    font-size: 0.9rem;  /* Reduced from 1.1rem */
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
}

.btn-initiatives {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-initiatives:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.modal-footer .btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* Scrollbar styling for modal */
.chamber-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.chamber-modal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.chamber-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.chamber-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .chamber-modal .modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
    }
    
    .chamber-modal .modal-header {
        padding: 30px 25px 20px;
    }
    
    .chamber-modal .modal-header h2 {
        font-size: 1.9rem;
    }
    
    .chamber-modal .modal-body {
        padding: 25px;
    }
    
    .leader-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .leader-photo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 3rem;
        margin: 0 auto;
    }
    
    .chamber-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .modal-footer {
        padding: 20px 25px;
        flex-direction: column;
    }
    
    .chamber-description p {
        padding: 20px;
        font-size: 1rem;
    }
}