.navbar.sticky-top {
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand:hover .brand-text {
            color: #F5D547 !important;
            transition: color 0.3s ease;
        }

        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #F5D547 !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: #F5D547;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-warning {
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-warning:hover {
            background-color: #E6C440 !important;
            border-color: #E6C440 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(245, 213, 71, 0.3);
        }

        .dropdown-menu {
            background-color: #2c2c2c;
            border: 1px solid #444;
        }

        .dropdown-item {
            color: #fff;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: #444;
            color: #F5D547;
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: #2c2c2c;
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

/* Additional Info Sections Styling */
.additional-info-section, .address-details-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #F5D547;
}

.additional-info-section h2, .address-details-section h2 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.additional-info-section h2::before {
    content: "ℹ️";
    font-size: 1.2rem;
}

.address-details-section h2::before {
    content: "📍";
    font-size: 1.2rem;
}

.info-grid, .address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-item, .address-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-item:hover, .address-item:hover {
    border-color: #F5D547;
    box-shadow: 0 2px 8px rgba(245, 213, 71, 0.2);
    transform: translateY(-2px);
}

.info-item strong, .address-item strong {
    color: #2c2c2c;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.info-item code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: #495057;
}

.address-source {
    margin-bottom: 30px;
}

.address-source:last-child {
    margin-bottom: 0;
}

.address-source h3 {
    color: #2c2c2c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #F5D547;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item a, .address-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover, .address-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design for Additional Info */
@media (max-width: 768px) {
    .info-grid, .address-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .additional-info-section, .address-details-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .info-item, .address-item {
        padding: 12px;
    }
    
    .address-source h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .additional-info-section h2, .address-details-section h2 {
        font-size: 1.3rem;
    }
    
    .address-source h3 {
        font-size: 1rem;
    }
    
    .info-item, .address-item {
        padding: 10px;
    }
}

/* Church Map Styling */
.church-map-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #F5D547;
}

.church-map-section h2 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.church-map-container {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e9ecef;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-coordinates {
    text-align: center;
    color: #6c757d;
    margin-top: 10px;
}

.external-map-link {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.external-map-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Custom Church Marker Styling */
.church-marker {
    background: transparent;
    border: none;
}

.marker-icon {
    background: #F5D547;
    color: #2c2c2c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.marker-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Map Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-popup {
    text-align: center;
    padding: 5px;
    min-width: 200px;
}

.map-popup strong {
    color: #2c2c2c;
    font-size: 1.1rem;
}

/* Responsive Map */
@media (max-width: 768px) {
    .church-map-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .church-map-container {
        height: 300px;
    }
    
    .church-map-section h2 {
        font-size: 1.3rem;
    }
    
    .external-map-link {
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .church-map-container {
        height: 250px;
    }
    
    .church-map-section {
        padding: 15px 10px;
    }
}

/* Location Description Sections */
.location-short-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #F5D547;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-short-description .lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: #495057;
}

.location-long-description {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.location-long-description h2,
.location-long-description h3,
.location-long-description h4 {
    color: #2c2c2c;
    margin-top: 25px;
    margin-bottom: 15px;
}

.location-long-description h2 {
    border-bottom: 2px solid #F5D547;
    padding-bottom: 8px;
}

.location-long-description p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #495057;
}

.location-long-description ul,
.location-long-description ol {
    margin: 15px 0;
    padding-left: 25px;
}

.location-long-description li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.location-long-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Location Descriptions */
@media (max-width: 768px) {
    .location-short-description {
        padding: 15px 20px;
        margin: 15px 0;
    }
    
    .location-short-description .lead {
        font-size: 1.05rem;
    }
    
    .location-long-description {
        padding: 20px 15px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .location-short-description {
        padding: 12px 15px;
        border-left-width: 3px;
    }
    
    .location-short-description .lead {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .location-long-description {
        padding: 15px 12px;
        border-radius: 8px;
    }
}

/* Church Single Page Styles */
.church-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.church-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
}

.church-title {
    color: #d2691e;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.church-address {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 15px;
}

.church-contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.map-button-container {
    flex-shrink: 0;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.map-button:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

.map-icon {
    font-size: 1.2rem;
}

.error-report {
    text-align: right;
}

.error-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
}

.error-link:hover {
    color: #495057;
    text-decoration: underline;
}

/* Masses Section */
.masses-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #d2691e;
}

.masses-title {
    color: #d2691e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.masses-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mass-schedule {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.mass-type {
    color: #495057;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.mass-times {
    font-size: 1.1rem;
    color: #212529;
    line-height: 1.6;
}

.mass-times strong {
    color: #d2691e;
    font-weight: 600;
}

.mass-note {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

/* Map Section */
.map-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #dee2e6;
}

.map-title {
    color: #d2691e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.church-map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.external-map-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.external-map-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Church Description */
.church-description {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #dee2e6;
}

.church-description h2 {
    color: #d2691e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.description-content {
    line-height: 1.7;
    color: #495057;
}

/* Patrons Section */
.patrons-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.patrons-section h2 {
    color: #d2691e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.patrons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.patrons-list li {
    margin-bottom: 10px;
}

.patrons-list a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.patrons-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Priest Section */
.priest-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #dee2e6;
}

.priest-section h2 {
    color: #d2691e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.priests-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.priest-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d2691e;
}

.priest-name {
    color: #495057;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.priest-title {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 15px;
}

.priest-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.priest-contact a {
    color: #007bff;
    text-decoration: none;
}

.priest-contact a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Edit Form Section */
.church-edit-form-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.church-edit-form-section h2 {
    color: #856404;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.church-edit-form-section p {
    color: #856404;
    margin-bottom: 20px;
}

.edit-button {
    background: #ffc107;
    border: none;
    color: #212529;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.edit-button:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* Modal Styles */
.edit-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #dee2e6;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    color: #495057;
    margin: 0;
    font-size: 1.3rem;
}

.close-modal {
    font-size: 24px;
    font-weight: bold;
    color: #adb5bd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #495057;
}

.modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #495057;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group small {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 20px 25px;
    border-top: 1px solid #dee2e6;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.submit-proposal {
    background: #28a745;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-proposal:hover {
    background: #218838;
    transform: translateY(-1px);
}

.cancel-edit {
    background: #6c757d;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-edit:hover {
    background: #5a6268;
}

.edit-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.edit-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.edit-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .church-single {
        padding: 15px;
    }
    
    .church-title {
        font-size: 1.6rem;
    }
    
    .church-contact {
        flex-direction: column;
        align-items: stretch;
    }
    
    .map-button {
        align-self: center;
        margin-top: 15px;
    }
    
    .masses-content {
        gap: 15px;
    }
    
    .mass-schedule {
        padding: 15px;
    }
    
    .church-map-container {
        height: 300px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .church-single {
        padding: 10px;
    }
    
    .church-title {
        font-size: 1.4rem;
    }
    
    .masses-title {
        font-size: 1.3rem;
    }
    
    .map-title {
        font-size: 1.3rem;
    }
    
    .church-map-container {
        height: 250px;
    }
    
    .map-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}