/* ==========================================
RED CASTLE REALTY CITY GUIDE
city-guide.css
========================================== */

:root{
--red:#c8102e;
--red-dark:#a10c24;
--black:#111111;
--dark:#222222;
--white:#ffffff;
--light:#f5f5f5;
--border:#e7e7e7;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f4f4f4;
color:#333;
line-height:1.6;
}

img{
max-width:100%;
display:block;
}

.city-guide{
max-width:1400px;
margin:30px auto;
display:grid;
grid-template-columns:3fr 1fr;
gap:20px;
padding:0 15px;
}

/* ==========================================
HERO
========================================== */

.hero-banner{
display:grid;
grid-template-columns:42% 58%;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.hero-text{
padding:50px;
}

.hero-text h1{
font-size:72px;
font-weight:800;
color:#081525;
line-height:1;
}

.hero-text h2{
color:var(--red);
font-size:42px;
margin:10px 0 20px;
}

.hero-text p{
margin-bottom:18px;
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* ==========================================
STATS BAR
========================================== */

.stats-bar{
display:grid;
grid-template-columns:repeat(4,1fr);
background:linear-gradient(
90deg,
#a10c24,
#c8102e
);
color:white;
margin-top:15px;
border-radius:10px;
overflow:hidden;
}

.stat-box{
padding:25px;
text-align:center;
border-right:1px solid rgba(255,255,255,.25);
}

.stat-box:last-child{
border-right:none;
}

.stat-box span{
display:block;
font-size:15px;
}

.stat-box strong{
display:block;
font-size:32px;
margin-top:8px;
}

/* ==========================================
CARD GRID
========================================== */

.card-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:20px;
}

.info-card{
background:white;
border-radius:10px;
border:1px solid var(--border);
padding:20px;
box-shadow:0 1px 6px rgba(0,0,0,.05);
}

.info-card h3{
color:#111;
font-size:26px;
margin-bottom:15px;
}

.info-card ul{
padding-left:18px;
}

.info-card li{
margin-bottom:8px;
}

.image-card img{
border-radius:8px;
margin-top:15px;
height:180px;
object-fit:cover;
width:100%;
}

/* ==========================================
FAQ
========================================== */

.faq-section{
background:#fff;
margin-top:20px;
padding:25px;
border-radius:10px;
}

.faq-section h2{
margin-bottom:20px;
}

details{
border:1px solid #ddd;
margin-bottom:10px;
border-radius:5px;
}

summary{
cursor:pointer;
padding:15px;
font-weight:bold;
}

details p{
padding:0 15px 15px;
}

/* ==========================================
CONTACT CARD
========================================== */

.contact-card{
background:#fff;
border-radius:10px;
padding:25px;
margin-top:20px;
display:flex;
gap:25px;
align-items:center;
}

.contact-card img{
width:130px;
height:160px;
object-fit:cover;
border-radius:8px;
}

.contact-card h3{
margin-bottom:10px;
}

.cta-btn{
display:inline-block;
background:var(--red);
color:white;
padding:14px 28px;
text-decoration:none;
border-radius:5px;
margin-top:15px;
font-weight:bold;
}

.cta-btn:hover{
background:var(--red-dark);
}

/* ==========================================
SIDEBAR
========================================== */

.sidebar{
display:flex;
flex-direction:column;
gap:20px;
}

.sidebar-box,
.market-widget{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.sidebar-box h3,
.market-widget h3{
background:var(--red);
color:white;
padding:18px;
font-size:20px;
}

.sidebar-box ul{
list-style:none;
}

.sidebar-box li{
border-bottom:1px solid #eee;
}

.sidebar-box a{
display:block;
padding:16px 18px;
text-decoration:none;
color:#222;
transition:.3s;
}

.sidebar-box a:hover{
background:#fafafa;
color:var(--red);
}

.market-widget{
padding-bottom:20px;
}

.market-widget img{
padding:15px;
}

.market-widget a{
display:block;
width:90%;
margin:15px auto;
text-align:center;
background:white;
color:var(--red);
border:2px solid var(--red);
padding:14px;
text-decoration:none;
font-weight:bold;
}

.market-widget a:hover{
background:var(--red);
color:white;
}

/* ==========================================
MOBILE
========================================== */

@media(max-width:992px){

.city-guide{
grid-template-columns:1fr;
}

.hero-banner{
grid-template-columns:1fr;
}

.hero-text h1{
font-size:50px;
}

.hero-text h2{
font-size:30px;
}

.card-grid{
grid-template-columns:1fr;
}

.stats-bar{
grid-template-columns:repeat(2,1fr);
}

.contact-card{
flex-direction:column;
text-align:center;
}

}

@media(max-width:600px){

.stats-bar{
grid-template-columns:1fr;
}

.hero-text{
padding:30px;
}

.hero-text h1{
font-size:42px;
}

.hero-text h2{
font-size:26px;
}

}
.rcr-footer{
    background:#111;
    color:white;
    padding:50px 20px;
    margin-top:50px;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    padding:60px 40px;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:80px;
    align-items:start;
}

.rcr-footer h3{
    color:#c8102e;
    margin-bottom:15px;
}

.rcr-footer a{
    color:white;
    text-decoration:none;
}/* FOOTER LOGO */

.footer-logo{
    width:180px;
    height:auto;
    display:block;
    margin-bottom:20px;
}
