/* =========================
   KSA ABOUT PAGE
========================= */

.ksa-about-hero{
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://pinoytourism.com/ksa/wp-content/uploads/sites/2/2026/04/bannermain-1-1.png');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    color: #fff;
    position: relative;
}

.hero-content{
    max-width: 750px;
}

.hero-badge{
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.ksa-about-hero h1{
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.ksa-about-hero h1 span{
    color: #ff7a00;
}

.ksa-about-hero p{
    font-size: 18px;
    line-height: 1.8;
    color: #eee;
}

.hero-buttons{
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.primary-btn2,
.secondary-btn2{
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn2{
    background: #ff7a00;
    color: #fff;
}

.primary-btn2:hover{
    background: #e66d00;
    color: #fff;
}

.secondary-btn2{
    background: #fff;
    color: #111;
}

.secondary-btn2:hover{
    background: #f2f2f2;
    color: #111;
}

/* Sections */

.about-intro-section,
.who-we-are-section,
.why-choose-section,
.mission-vision-section,
.visit-section{
    padding: 50px 0;
}
.who-we-are-section{
    background:#f5f7fb
}
.section-badge{
    background: #e6edf7;
    color: #3b5b8a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-heading{
    max-width: 800px;
    margin: auto;
}

.section-heading h2{
    font-size: 42px;
    font-weight: 700;
}

.about-image-wrap img{
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}

.about-content h2{
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.license-box{
    background: #fff7f1;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ff7a00;
}

.license-box h5{
    font-weight: 700;
    margin-bottom: 10px;
}

/* Cards */

.info-card,
.why-card,
.mission-box{
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
    transition: 0.3s ease;
}

.info-card:hover,
.why-card:hover,
.mission-box:hover{
    transform: translateY(-5px);
}

.info-card .icon-box,
.why-card i{
    width: 70px;
    height: 70px;
    background: #fff3e8;
    color: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.info-card h4,
.why-card h5,
.mission-box h3{
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p,
.why-card p,
.mission-box p,
.about-description p{
    color: #666;
    line-height: 1.9;
}

/* Visit Box */

.visit-box{
    background: #3697ca;
    padding: 60px;
    border-radius: 25px;
    color: #fff;
}

.visit-box h2{
    font-size: 42px;
    font-weight: 700;
}
.contact-item{
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    position: relative;
}

.contact-icon{
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,0.12);
    color: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-item h5{
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-item p{
    color: #d9d9d9;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-item p i{
    color: #ff7a00;
    margin-right: 10px;
    width: 20px;
}

.contact-item a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-item a:hover{
    color: #ff7a00;
}

.social-links{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #333;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.social-links a i{
    font-size: 18px;
}

.social-links a:hover{
    background: #ff7a00;
    color: #fff;
    transform: translateY(-3px);
}
/* Responsive */

@media(max-width:991px){

    .ksa-about-hero{
        padding: 100px 0;
    }

    .ksa-about-hero h1{
        font-size: 42px;
    }

    .about-content h2,
    .section-heading h2,
    .visit-box h2{
        font-size: 32px;
    }

    .visit-box{
        padding: 40px 25px;
    }
}

@media(max-width:767px){

    .ksa-about-hero h1{
        font-size: 34px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .primary-btn2,
    .secondary-btn2{
        width: 100%;
        text-align: center;
    }
}

.offer-card{
    color:#fff !important
}

