	@charset "utf-8";
/* =========================================
MISSIONS HERO
========================================= */

.missions-hero{

padding:180px 0 120px;

background:
linear-gradient(
rgba(15,35,55,.82),
rgba(15,35,55,.82)
),
url('../images/missions-hero.jpg');

background-size:cover;
background-position:center;

text-align:center;

}

.missions-hero-content{

max-width:900px;
margin:auto;

}

.missions-hero h1{

font-size:4.5rem;
color:#fff;
line-height:1.2;
margin-bottom:20px;

}

.missions-hero p{

max-width:750px;
margin:auto;

font-size:1.15rem;
line-height:1.8;

color:#fff;

}
.hero-subtitle{

display:inline-block;

color:var(--gold);

font-weight:700;

letter-spacing:4px;

text-transform:uppercase;

margin-bottom:20px;

}

/* =========================================
MISSION INTRO
========================================= */

.mission-intro{

padding:100px 0;
background:#fff;

}

.mission-intro-content{

max-width:950px;
margin:auto;
text-align:center;

}

.mission-intro-content p{

font-size:1.15rem;
line-height:2;

}

.church-highlight{

background:#f8fafc;

padding:50px;

border-radius:24px;

border-left:6px solid #d4a017;

display:flex;

flex-direction:column;

justify-content:center;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

}

.church-highlight h3{

font-size:2rem;

line-height:1.6;

color:#143a52;

margin-bottom:20px;

}

.church-highlight p{

line-height:1.9;

color:#555;

}

@media(max-width:768px){

.church-highlight{

padding:35px;

}

.church-highlight h3{

font-size:1.5rem;

}

}
/* =========================================
COUNTRY GRID
========================================= */

/* =========================================
COUNTRIES SECTION
========================================= */

.countries-section{

padding:100px 0;

background:#f8fafc;

}

.countries-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.country-card{

background:#ffffff;

padding:40px 30px;

border-radius:24px;

text-align:center;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

border:2px solid transparent;

transition:.35s ease;

position:relative;

overflow:hidden;

}

.country-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:5px;

background:#d4a017;

transform:scaleX(0);

transition:.35s;

}

.country-card:hover::before{

transform:scaleX(1);

}

.country-card:hover{

transform:translateY(-10px);

border-color:#d4a017;

box-shadow:
0 20px 45px rgba(0,0,0,.12);

}

.country-card h3{

font-size:1.5rem;

margin-bottom:15px;

color:#143a52;

}

.country-card p{

line-height:1.8;

color:#555;

}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

.countries-grid{

grid-template-columns:
repeat(2,1fr);

}

}

@media(max-width:768px){

.countries-grid{

grid-template-columns:1fr;

}

.country-card{

padding:35px 25px;

}

}
/* =========================================
MINISTRY SECTION
========================================= */

.ministry-highlight{

padding:100px 0;

background:#fff;

}

.ministry-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.ministry-image img{

border-radius:20px;

box-shadow:var(--shadow-lg);

}

.ministry-content h2{

margin-bottom:20px;

}

.ministry-content p{

line-height:1.9;

margin-bottom:20px;

}
.mission-quote{

background:#143a52;

padding:50px;

border-radius:24px;

display:flex;

flex-direction:column;

justify-content:center;

box-shadow:
0 10px 30px rgba(0,0,0,.1);

}

.mission-quote h3{

font-size:2rem;

line-height:1.6;

color:#ffffff;

margin-bottom:20px;

}

.mission-quote p{

color:#dbe4ef;

line-height:1.9;

}

@media(max-width:768px){

.mission-quote{

padding:35px;

}

.mission-quote h3{

font-size:1.5rem;

}

}

/* =========================================
IMPACT
========================================= */

.mission-impact{

padding:100px 0;

background:var(--primary);

}

.mission-impact-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;

}

.mission-impact-card{

background:
rgba(255,255,255,.06);

padding:40px;

border-radius:20px;

text-align:center;

}

.mission-impact-card h3{

font-size:3rem;

color:var(--gold);

margin-bottom:10px;

}

.mission-impact-card p{

color:#dbe4ef;

}

/* =========================================
CTA
========================================= */

.mission-cta{

padding:100px 0;

background:#f8fafc;

text-align:center;

}

.mission-cta p{

max-width:800px;

margin:auto;

}

.mission-buttons{

margin-top:30px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

@media(max-width:991px){

.country-grid{

grid-template-columns:1fr 1fr;

}

.ministry-grid{

grid-template-columns:1fr;

}

.mission-impact-grid{

grid-template-columns:1fr 1fr;

}

.missions-hero h1{

font-size:3.5rem;

}

}

@media(max-width:768px){

.country-grid{

grid-template-columns:1fr;

}

.mission-impact-grid{

grid-template-columns:1fr;

}

.missions-hero{

padding:150px 0 90px;

}

.missions-hero h1{

font-size:2.6rem;

}

}