/* SMI Singapore Page Styles */

/* Mission Overview  */
.mission-overview {
    padding: 6rem 0;
    background: none;
}

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

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.mission-card.primary::before {
    background: linear-gradient(90deg, #E4A0B7);
}

.mission-card.secondary::before {
    background: linear-gradient(90deg, #E4A0B7);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.card-content p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: none;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
}

.mission-overview .section-header h2 {
    color: #fff;
}

/* Ensure all text outside white containers is white */
.mission-overview .section-header p,
.church-planting-stages .section-header p,
.zone-section .zone-subtitle,
.zone-section .zone-description {
    color: #fff;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e9ecef;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.member-role {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

/* SMI Info Section */
.smi-info {
    padding: 2rem 0;
    background: none;
}

/* Incorporation Information Section - REMOVED */

/* Church Planting Stages Section */
.church-planting-stages {
    padding: 4rem 0;
    background: none;
}

.section-subtitle {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin: 0.5rem 0 0 0;
    font-weight: 400;
    opacity: 0.9;
}

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

.stage-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border-left: 4px solid #e9ecef;
}

.stage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stage-card.mop-stage {
    border-left-color: #E4A0B7;
    background: #E4A0B7;
    color: white;
}

.stage-card.mop-stage .stage-content h3,
.stage-card.mop-stage .stage-content p {
    color: white;
}

.stage-card.ps-stage {
    border-left-color: #006400;
    background: #006400;
    color: white;
}

.stage-card.ps-stage .stage-content h3,
.stage-card.ps-stage .stage-content p {
    color: white;
}

.stage-card.church-stage {
    border-left-color: #714423;
    background: #714423;
    color: white;
}

.stage-card.church-stage .stage-content h3,
.stage-card.church-stage .stage-content p {
    color: white;
}

.stage-card.mop-stage .stage-number,
.stage-card.ps-stage .stage-number,
.stage-card.church-stage .stage-number {
    color: white;
}

.stage-number {
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.stage-content {
    flex: 1;
}

.stage-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.stage-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.stage-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.3rem;
}

.stage-badge.mop {
    background: #E4A0B7;
    color: white;
}

.stage-badge.ps {
    background: #006400;
    color: white;
}

.stage-badge.church {
    background: #714423;
    color: white;
}

.org-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.stage-legend {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stage-legend h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legend-item span {
    color: #495057;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-card {
        padding: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stage-card {
        padding: 1.5rem;
    }
    
    .stage-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .legend-items {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mission-overview {
        padding: 4rem 0;
    }

    .mission-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card {
        padding: 2rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

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

    .team-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .team-member {
        padding: 1rem;
    }

    .member-photo {
        width: 100px;
        height: 100px;
    }

    /* Incorporation info styles removed */
}

@media (max-width: 480px) {
    .mission-overview {
        padding: 3rem 0;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-member {
        max-width: 100%;
    }

    .member-photo {
        width: 90px;
        height: 90px;
    }

    .team-member h3 {
        font-size: 1rem;
    }

    .member-role {
        font-size: 0.85rem;
    }
    
    .church-planting-stages {
        padding: 3rem 0;
    }
    
    .stages-grid {
        gap: 1rem;
    }
    
    .stage-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stage-number {
        align-self: center;
    }
    
    .stage-legend {
        padding: 1.5rem;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Zones Section Styles - Imported from zones.css */

/* Zone section styling */
.zone-section {
    padding: 4rem 0;
    background: none;
}

.zone-title-header {
    text-align: center;
    margin-bottom: 2rem;
}

.zone-title-header h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.zone-title-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transform: translateX(-50%);
}

.zone-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.zone-description {
    font-size: 1rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.zone-1 .zone-title-header h2::after {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.zone-2 .zone-title-header h2::after {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.zone-3 .zone-title-header h2::after {
    background: linear-gradient(90deg, #27ae60, #229954);
}

/* Mission overview section */
.mission-overview-section {
    padding: 4rem 0;
    background: none;
}

.mission-overview-section .section-header h2,
.mission-overview-section .section-header p {
    color: #fff;
}

.mission-maps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-map-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.mission-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.mission-map-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.mission-map-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.mission-map-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Zone overview section */
.zone-overview-section {
    padding: 2rem 0;
    background: none;
}

.zone-2-overview {
    background: none;
}

.zone-3-overview {
    background: none;
}

.zone-maps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.zone-map-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.zone-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.zone-map-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.zone-map-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.zone-map-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Churches section */
.churches-section {
    padding: 4rem 0;
    background: none;
}

.zone-2-churches {
    background: none;
}

.zone-3-churches {
    background: none;
}

/* Future Expansion Section */
.future-expansion-section {
    padding: 4rem 0;
    background: none;
}

/* Ensure all section headers are white */
.churches-section .section-header h2,
.churches-section .section-header p,
.zone-overview-section .section-header h2,
.zone-overview-section .section-header p,
.future-expansion-section .section-header h2,
.future-expansion-section .section-header p {
    color: #fff;
}

.churches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.church-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.church-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.church-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.church-type-badge.church {
    background: #714423;
    color: white;
}

.church-type-badge.station {
    background: #006400;
    color: white;
}

.church-type-badge.mop {
    background: #E4A0B7;
    color: white;
}

.pastor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #e9ecef;
}

.pastor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.church-card:hover .pastor-photo img {
    transform: scale(1.05);
}

.church-info {
    text-align: center;
}

.church-info h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.location-subtitle {
    font-size: 1rem;
    color: #e67e22;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pastor-names {
    margin-bottom: 1rem;
}

.pastor-name {
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.pastor-nickname {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin: 0;
    font-style: italic;
}

.church-details {
    text-align: left;
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-item strong {
    display: block;
    color: #34495e;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.pioneer-section {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.pioneer-label {
    font-size: 0.8rem;
    color: #34495e;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pioneer-name {
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
}

.mop-section {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mop-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e9ecef;
    flex-shrink: 0;
}

.mop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mop-info {
    flex: 1;
}

.mop-label {
    font-size: 0.8rem;
    color: #34495e;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mop-name {
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Call to action section */
.zone-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #3498db;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Additional responsive styles for zones content */
@media (max-width: 1200px) {
    .churches-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
        gap: 1.25rem;
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .mission-maps {
        grid-template-columns: 1fr;
    }
    
    .zone-maps {
        grid-template-columns: 1fr;
    }
    
    .churches-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
        gap: 1rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .zone-title-header h2 {
        font-size: 2rem;
    }
    
    .zone-subtitle {
        font-size: 1.1rem;
    }
    
    .zone-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .mission-maps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-map-card {
        padding: 1.5rem;
    }
    
    .churches-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .church-card {
        padding: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .zone-title-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-map-card {
        padding: 1rem;
    }
    
    .mission-map-card h3 {
        font-size: 1.2rem;
    }
    
    .mission-map-card p {
        font-size: 0.9rem;
    }
    
    .church-info h3 {
        font-size: 1.1rem;
    }
    
    .mop-section {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .pioneer-section {
        padding: 0.8rem;
    }
    
    .mop-photo {
        width: 50px;
        height: 50px;
    }

    /* Incorporation info styles removed */
} 

/* Current Presence Plan Table Styles */
.current-presence-plan-section {
  background: transparent;
}

.current-presence-plan-section .section-header {
  text-align: center;
}

.current-presence-plan-section .section-header h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}

.presence-plan-table {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.zones-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  table-layout: fixed;
}

.zones-table thead {
  background: #6c757d;
  color: white;
}

.zones-table th {
  padding: 0.4rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  border-right: 1px solid #dee2e6;
  line-height: 1.2;
}

.zones-table th:last-child {
  border-right: none;
}

.zone-header {
  width: 12%;
  background: #6c757d;
}

.presence-header {
  width: 44%;
  background: #6c757d;
}

.plans-header {
  width: 44%;
  background: #6c757d;
}

.zones-table tbody tr {
  border-bottom: 1px solid #dee2e6;
}

.zones-table tbody tr:last-child {
  border-bottom: none;
}

.zones-table td {
  padding: 0;
  margin: 0;
}

.zone-cell {
  width: 12%;
  padding: 0;
  text-align: center;
}

.zone-label {
  padding: 0.5rem 0.3rem;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100;
}

.vertical-text {
  height: 10%;
  color: black;
  text-orientation: mixed;
  text-align: center;
  white-space: nowrap;
}


.presence-cell,
.plans-cell {
  padding: 0.6rem;
  vertical-align: top;
  border-right: 1px solid #dee2e6;
  width: 44%;
  height: 50px;
}

.plans-cell {
  border-right: none;
}

.presence-cell ol,
.plans-cell ul {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.3;
}

.presence-cell li,
.plans-cell li {
  margin-bottom: 0.15rem;
  color: #2c3e50;
}

.presence-cell li:last-child,
.plans-cell li:last-child {
  margin-bottom: 0;
}

.plans-cell ul ul {
  margin-top: 0.1rem;
  margin-bottom: 0;
}

.plans-cell ul ul li {
  margin-bottom: 0.1rem;
}

.plans-cell ul ul li:last-child {
  margin-bottom: 0;
}

.zones-table strong {
  font-weight: 700;
}

/* Specific colors for MOP, PS, and C */
.zones-table strong.mop-color,
.presence-cell strong.mop-color,
.plans-cell strong.mop-color {
  color: #E4A0B7;
}

.zones-table strong.ps-color,
.presence-cell strong.ps-color, 
.plans-cell strong.ps-color {
  color: #006400;
}

.zones-table strong.c-color,
.presence-cell strong.c-color,
.plans-cell strong.c-color {
  color: #714423;
}

/* Responsive Design for Table */
@media (max-width: 1200px) {
  .presence-plan-table {
    margin: 0 1rem;
  }
  
  .zones-table {
    font-size: 0.85rem;
  }
  
  .presence-cell,
  .plans-cell {
    padding: 0.5rem;
  }
  
  .zone-label {
    padding: 0.4rem 0.25rem;
  }
}

@media (max-width: 992px) {
  .zones-table {
    font-size: 0.8rem;
  }
  
  .zone-label {
    font-size: 0.8rem;
    padding: 0.4rem 0.25rem;
  }
  
  .presence-cell,
  .plans-cell {
    padding: 0.45rem;
  }
}

@media (max-width: 768px) {
  .current-presence-plan-section {
    padding: 1.5rem 0;
  }
  
  .current-presence-plan-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .zones-table {
    font-size: 0.75rem;
  }
  
  .zones-table th {
    padding: 0.3rem;
    font-size: 0.8rem;
  }
  
  .zone-label {
    font-size: 0.75rem;
    padding: 0.35rem 0.2rem;
  }
  
  .presence-cell,
  .plans-cell {
    padding: 0.4rem;
  }
}

@media (max-width: 576px) {
  .presence-plan-table {
    margin: 0 0.5rem;
  }
  
  .zones-table {
    font-size: 0.7rem;
  }
  
  .zones-table th {
    padding: 0.25rem;
    font-size: 0.75rem;
  }
  
  .zone-label {
    font-size: 0.7rem;
    padding: 0.3rem 0.15rem;
  }
  
  .presence-cell,
  .plans-cell {
    padding: 0.35rem;
  }
  
  .presence-cell ol,
  .plans-cell ul {
    padding-left: 0.8rem;
  }
}

/* Involvement Section Styles */
.involvement-section {
  padding: 5rem 0;
  background: transparent;
  text-align: center;
}

.involvement-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.involvement-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scripture-verse {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.scripture-verse p {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.scripture-verse blockquote {
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
}

.scripture-verse blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-size: 4rem;
  color: #3498db;
  opacity: 0.3;
  font-family: serif;
}

.scripture-verse blockquote p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #2c3e50;
  font-style: italic;
  margin: 0;
  text-align: left;
  padding-left: 1.5rem;
}

.verse-number {
  font-weight: 700;
  color: #3498db;
  font-style: normal;
}

/* Responsive Design for Involvement Section */
@media (max-width: 768px) {
  .involvement-section {
    padding: 3rem 0;
  }
  
  .involvement-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .scripture-verse {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .scripture-verse p {
    font-size: 1.1rem;
  }
  
  .scripture-verse blockquote p {
    font-size: 1.2rem;
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .involvement-content h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .scripture-verse {
    padding: 1.5rem 1rem;
  }
  
  .scripture-verse p {
    font-size: 1rem;
  }
  
  .scripture-verse blockquote p {
    font-size: 1.1rem;
    padding-left: 0.5rem;
  }
  
  .scripture-verse blockquote::before {
    font-size: 3rem;
    left: -0.5rem;
    top: -0.5rem;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 5rem 0;
  background: transparent;
}

.contact-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-intro h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-intro p {
  font-size: 1.2rem;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  margin-bottom: 2rem;
  text-align: center;
}

.card-header h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-header p {
  color: #6c757d;
  font-size: 1rem;
}

.contact-info-header {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  text-align: left;
}

.contact-info-header p {
  color: #2c3e50;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info-header p:last-child {
  margin-bottom: 0;
}

.card-header h4 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

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

.form-group {
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-icon {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  fill: #3498db;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  background: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.contact-form .btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 50%;
  margin: 1rem auto 0;
  max-width: 280px;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Vision Events Section */
.vision-events-section {
  padding: 4rem 0;
  background: none;
}

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

.vision-events-card {
  background: transparent;
  text-align: center;
}

.vision-events-card .card-header {
  padding: 2rem;
}

.action-cta {
  margin-top: 2rem;
}

.action-cta .btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 50%;
  max-width: 280px;
  text-decoration: none;
}

.action-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.support-options {
  text-align: left;
  color: #fff !important;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.support-options p {
  color: #fff !important;
  margin-bottom: 0.5rem;
}

/* Commitment Section */
.commitment-section {
  padding: 4rem 0;
  background: none;
}

.commitment-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.commitment-content p {
  margin-bottom: 1rem;
}

/* Responsive Design for Vision Events Section */
@media (max-width: 768px) {
  .vision-events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .vision-events-card .card-header {
    padding: 1.5rem;
  }
  
  .action-cta .btn-primary {
    width: 80%;
    max-width: 320px;
  }

  .commitment-section {
    padding: 3rem 0;
  }
  
  .commitment-content {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .vision-events-card .card-header {
    padding: 1rem;
  }
  
  .action-cta .btn-primary {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
  
  .contact-form .btn-primary {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  .commitment-section {
    padding: 2rem 0;
  }
  
  .commitment-content p {
    font-size: 1rem;
  }
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.5;
}

.privacy-icon {
  width: 16px;
  height: 16px;
  fill: #27ae60;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.lowered-photo {

  object-position: center 20%;
}


/* Contact Responsive Design */
@media (max-width: 992px) {
  .contact-grid {
    padding: 0 2rem;
  }
  
  .contact-form-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-intro h2 {
    font-size: 2rem;
  }
  
  .contact-intro p {
    font-size: 1.1rem;
  }
  
  .contact-grid {
    padding: 0 1rem;
  }
  
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .card-header h3 {
    font-size: 1.5rem;
  }
  
  .contact-info-header {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-intro h2 {
    font-size: 1.8rem;
  }
  
  .contact-form-card {
    padding: 1.25rem;
  }
  
  .card-header h3 {
    font-size: 1.3rem;
  }
  
  .contact-form .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .contact-info-header {
    padding: 1rem;
  }
  
  .contact-info-header p {
    font-size: 0.9rem;
  }
}

/* Contact Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-card {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
} 