/* location-pages.css - Common styles for location detail pages */

.location-hero {
    position: relative;
    padding: 80px 0;
    color: #fff;
}

.location-hero h1 {
    font-size: 48px;
    font-weight: 800;
}

.location-hero h1 span {
    color: #f4c542;
}

.location-badge {
    display: inline-block;
    background: #f4c542;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stat-box {
    background: #f8f9fc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-box .number {
    font-size: 32px;
    font-weight: 800;
}

.stat-box .label {
    font-size: 14px;
    color: #555;
}

.invest-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
    margin-bottom: 25px;
}

.invest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.invest-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.invest-card h4 {
    font-size: 20px;
    color: #0b1a33;
    margin-bottom: 12px;
}

.invest-card p {
    color: #555;
    font-size: 15px;
}

.option-card {
    background: #f8f9fc;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eef1f7;
    height: 100%;
    margin-bottom: 25px;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.option-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.option-card .card-body {
    padding: 25px;
}

.option-card .card-body h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0b1a33;
}

.option-card .card-body p {
    color: #555;
    font-size: 15px;
}

.option-card .btn-outline {
    display: inline-block;
    border: 2px solid;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    background: transparent;
}

.option-card .btn-outline:hover {
    color: #fff;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fc;
    border-radius: 14px;
    transition: 0.3s;
    height: 100%;
    margin-bottom: 25px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-step .step-num {
    display: inline-block;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0b1a33;
}

.process-step p {
    color: #666;
    font-size: 14px;
}

.faq-item {
    background: #f8f9fc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.faq-item h4 {
    color: #0b1a33;
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-item p {
    color: #555;
    font-size: 15px;
    margin-bottom: 0;
}

.testimonial-card {
    background: #f8f9fc;
    padding: 30px;
    border-radius: 14px;
    border-left: 4px solid;
    height: 100%;
    margin-bottom: 25px;
}

.testimonial-card .stars {
    color: #f4c542;
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card .client {
    font-weight: 700;
    color: #0b1a33;
}

.cta-box {
    color: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
}

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn-cta {
    color: #fff;
    padding: 14px 45px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
    display: inline-block;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    color: #fff;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1a33;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 4px;
}

.section-title p {
    color: #666;
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 17px;
}

.img-fluid-shadow {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 32px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .stat-box .number {
        font-size: 24px;
    }
    .cta-box {
        padding: 40px 20px;
    }
    .cta-box h2 {
        font-size: 28px;
    }
}