* {
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

:root {
    --bg-color: #ffffff;
    --text-color: #111827;
    --border-color: #e5e7eb;
    --card-bg: #f9fafb;
    --accent-color: #172554;
}

/* ===== Shared ===== */
.section-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.btn-primary-custom {
    background: var(--accent-color);
    color: #fff;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 800;
    border: none;
}

.btn-primary-custom:hover {
    background: #0f1f4d;
    color: #fff;
}

/* ===== HERO ===== */
.about-hero {
    background-image: url('/assets/image/card-images/whychooseus.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-pill {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.534);
    color: var(--accent-color);
    font-weight: 900;
    font-size: 21px;
    margin-bottom: 14px;
}

.page-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-color);
    margin-bottom: 14px;
}

.page-title span {
    color: var(--accent-color);
}

.page-desc {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.page-hero-img {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.page-hero-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 90px 0;
    background: var(--card-bg);
}

.about-img {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.about-img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.about-highlights {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

.highlight {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.highlight i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 2px;
}

.highlight h6 {
    margin: 0 0 4px;
    font-weight: 900;
}

.highlight p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

/* ===== WHY ===== */
.why-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-card {
    height: 100%;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
}

.why-card i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 14px;
}

.why-card h5 {
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 8px;
}

.why-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.why-closing {
    font-weight: 800;
    color: var(--accent-color);
    margin-top: 18px;
}

/* ===== TEAM ===== */
.team-section {
    padding: 90px 0;
    background: var(--card-bg);
}

.team-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
}

.team-card h6 {
    margin: 0 0 4px;
    font-weight: 900;
}

.team-card span {
    color: #6b7280;
    font-size: 15px;
    font-weight: 700;
}


/* ===== SERVICES DETAILS ===== */
/* Shared */
.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

/* Buttons */
.btn-primary-custom {
    background: var(--accent-color);
    color: #fff;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 900;
    border: none;
}

.btn-primary-custom:hover {
    background: #0f1f4d;
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 10px 24px;
    border-radius: 14px;
    font-weight: 900;
}

.btn-outline-custom:hover {
    background: var(--accent-color);
    color: #fff;
}

/* ================= SERVICE DETAILS ================= */
.service-details-hero {
    background: #ffffff;
    padding-top: 110px;
}

/* left image */
.service-image-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.service-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* overlay box on image */
.service-overlay-box {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-overlay-box h6 {
    margin: 0 0 6px;
    font-weight: 900;
}

.service-overlay-box p {
    margin: 0;
    opacity: 0.92;
    line-height: 1.6;
    font-size: 15px;
}

.overlay-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 800;
    opacity: 0.9;
}

.overlay-meta i {
    margin-right: 6px;
}

/* right content */
.service-pill {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(23, 37, 84, 0.08);
    color: var(--accent-color);
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 12px;
}

.service-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-color);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-points {
    display: grid;
    gap: 12px;
}

.point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.point i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 2px;
}

.point span {
    color: #374151;
    font-weight: 700;
    line-height: 1.5;
}

/* ================= RELATED SERVICES ================= */
.related-services {
    background: var(--card-bg);
}

.related-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-body {
    padding: 18px;
}

.related-body h6 {
    margin: 0 0 6px;
    font-weight: 900;
}

.related-body p {
    margin: 0 0 12px;
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
}

.read-more {
    text-decoration: none;
    font-weight: 900;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-image-wrap img {
        height: 380px;
    }

    .service-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .service-details-hero {
        padding-top: 90px;
    }

    .service-title {
        font-size: 28px;
    }

    .btn-outline-custom {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
    }

    .btn-primary-custom {
        width: 100%;
    }
}


/* PRICING PAGE */
/* ================= PRICING SECTION ================= */

.pricing-section {
    padding: 90px 0;
    background: var(--card-bg);
}

.pricing-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--text-color);
}

.pricing-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-top: 10px;
}

/* Card */
.pricing-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 26px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* Featured card */
.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.04);
}

/* Tag */
.plan-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(23, 37, 84, 0.08);
    color: var(--accent-color);
    margin-bottom: 12px;
}

.plan-tag.highlight {
    background: var(--accent-color);
    color: #fff;
}

/* Price */
.price {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 8px;
}

/* Description */
.plan-desc {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 18px;
}

/* Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #374151;
    position: relative;
    padding-left: 22px;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 900;
}

/* Button */
.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    transition: all .3s ease;
}

.pricing-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

.pricing-btn.solid {
    background: var(--accent-color);
    color: #fff;
}

/* whole section background */
.contact-wrap {
    padding: 90px 0;
    background: radial-gradient(900px 400px at 20% 10%, rgba(14, 165, 164, 0.18), transparent 60%),
        linear-gradient(180deg, var(--mint-bg), #f5fbfb);
}

/* outer shell (rounded big container like screenshot) */
.contact-shell {
    border-radius: 26px;
    padding: 42px 26px;
}

/* header */
.contact-header {
    margin-bottom: 34px;
}

.contact-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
}

.contact-subtitle {
    max-width: 720px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

/* main card */
.contact-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 22px;
    padding: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

/* left info */
.info-panel {
    background: linear-gradient(180deg, var(--teal), var(--teal-dark));
    color: #fff;
    border-radius: 18px;
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.info-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.info-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 18px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.info-list li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.info-list .icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 15px;
}

.info-list .text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* decorative circles (like screenshot) */
.blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.blob-1 {
    width: 140px;
    height: 140px;
    left: -40px;
    bottom: -45px;
}

.blob-2 {
    width: 90px;
    height: 90px;
    right: -30px;
    bottom: 35px;
    background: rgba(255, 255, 255, 0.10);
}

/* right form */
.form-panel {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(229, 231, 235, 0.85);
}

.form-label {
    font-size: 16px;
    font-weight: 900;
    color: #374151;
    margin-bottom: 6px;
}

.custom-input,
.custom-textarea {
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 12px 14px;
    font-weight: 600;
    color: var(--text);
}

.custom-textarea {
    resize: none;
}

.custom-input:focus,
.custom-textarea:focus {
    border-color: rgba(14, 165, 164, 0.55);
    box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.14);
}

/* send button */
.send-btn {
    background: var(--teal);
    color: #fff;
    font-weight: 900;
    padding: 12px 22px;
    border-radius: 12px;
    border: none;
    transition: transform .2s ease, background .2s ease;
}

.send-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    color: #fff;
}

.mini-note {
    font-size: 16px;
    color: var(--muted);
}

/* responsive */
@media (max-width: 768px) {
    .contact-wrap {
        padding: 70px 0;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-card {
        padding: 14px;
    }

    .form-panel {
        padding: 18px;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 28px;
    }

    .price {
        font-size: 34px;
    }

    .pricing-card.featured {
        transform: none;
    }
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-hero-img img {
        height: 300px;
    }

    .about-img img {
        height: 300px;
    }
}

/* ===== FOOTER ===== */

.site-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 60px 0 20px;
    font-family: "Inter", sans-serif;
}

.footer-brand img {
    width: 160px;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-title {
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.85;
}

.footer-links a {
    text-decoration: none;
    color: #e5e7eb;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-contact i {
    margin-right: 8px;
    color: #93c5fd;
}

.footer-social {
    margin-top: 12px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #1f2937;
    text-align: center;
    line-height: 36px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #172554;
}

.footer-bottom {
    border-top: 1px solid white;
    text-align: center;
    margin-top: 30px;
    padding-top: 14px;
    font-size: 16px;
    opacity: 0.7;
}