

/* why choose us page */

/* ================= HERO SECTION ================= */
.page-hero {
    position: relative;
    height: 320px;
    background: url("images/why-choose-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.55));
}

/* CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 15px;
    opacity: 0.9;
}

.hero-content a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.hero-content a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-hero {
        height: 240px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }
}


/* ================= WHY US SECTION ================= */
.why-us-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.why-us-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.why-us-content {
    flex: 1;
}

.why-us-content .tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #7b001c;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-us-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.why-us-content p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* BUTTON */
.why-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 32px;
    background: linear-gradient(90deg, #5b0014, #7b001c);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.why-btn:hover {
    opacity: 0.9;
}

/* RIGHT IMAGE */
.why-us-image {
    flex: 1;
    text-align: center;
}

.why-us-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-us-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .why-us-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .why-us-section {
        padding: 70px 0;
    }

    .why-us-content h2 {
        font-size: 28px;
    }
}

/* ================= OUR EXPERTISE ================= */
.expertise-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.expertise-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.expertise-image {
    flex: 1;
    text-align: center;
}

.expertise-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #222;
}

.expertise-content h2 span {
    color: #7b001c;
}

.expertise-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .expertise-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .expertise-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .expertise-section {
        padding: 70px 0;
    }

    .expertise-content h2 {
        font-size: 28px;
    }
}


/* ================= WHY CHOOSE US CARDS ================= */
.why-cards-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */
.why-icon {
    width: 70px;
    height: 70px;
    background: #7b001c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

/* TITLE */
.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* TEXT */
.why-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .why-card {
        padding: 30px 20px;
    }
}


/* ================= TEAM SECTION ================= */
.team-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #5b0014, #7b001c);
}

/* Heading */
.team-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.team-heading h2 {
    font-size: 42px;
    font-weight: 800;
}

.team-heading h2 span {
    color: #ffc107;
}

.team-heading p {
    font-size: 15px;
    opacity: 0.9;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.team-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    transition: 0.35s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* Image */
.team-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: #ffc107;
}

.team-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

/* Text */
.team-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #5b0014;
    margin-bottom: 5px;
}

.team-card h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 576px) {
    .team-heading h2 {
        font-size: 32px;
    }

    .team-card {
        padding: 30px 20px;
    }
}


/* ================= CONTACT CTA ================= */
.contact-cta {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.cta-content {
    flex: 1;
}

.cta-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #7b001c;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #222;
    margin-bottom: 35px;
}

.cta-content h2 span {
    color: #7b001c;
}

.cta-content h2 .bold {
    font-weight: 900;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    gap: 18px;
}

.btn-contact,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Contact Button */
.btn-contact {
    background: #ffc107;
    color: #000;
}

.btn-contact:hover {
    background: #ffb300;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebc5a;
}

/* RIGHT IMAGE */
.cta-image {
    flex: 1;
    text-align: right;
}

.cta-image img {
    max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-image {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .contact-cta {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}