/* ===== CONTACT HERO BANNER ===== */
.contact-hero-banner {
    position: relative;
    overflow: hidden;
}

/* Background image */
.contact-hero-bg-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay - dark navy on left, lighter teal/green visible on right */
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(5, 15, 35, 0.97) 0%,
            rgba(5, 15, 35, 0.88) 35%,
            rgba(5, 15, 35, 0.45) 60%,
            rgba(5, 15, 35, 0.08) 100%);
    z-index: 1;
}

/* Content above overlay */
.contact-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 40px 50px;
}

/* Label pill */
.contact-hero-label {
    display: inline-block;
    background: transparent;
    color: #f5a623;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 1.5px solid #f5a623;
    border-radius: 6px;
    margin-bottom: 24px;
}

/* Title */
.contact-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 22px;
}

.contact-hero-title-gold {
    color: #f5a623;
}

/* Para */
.contact-hero-para {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== RESPONSIVE: CONTACT HERO BANNER ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .contact-hero-bg-img {
        height: 520px;
    }

    .contact-hero-content {
        padding: 36px 30px;
    }

    .contact-hero-label {
        font-size: 13px;
        padding: 7px 16px;
    }

    .contact-hero-title {
        font-size: 40px;
    }

    .contact-hero-para {
        font-size: 15px;
        max-width: 600px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .contact-hero-bg-img {
        height: 460px;
    }

    .contact-hero-content {
        padding: 32px 24px;
    }

    .contact-hero-label {
        font-size: 12px;
        padding: 7px 14px;
        margin-bottom: 20px;
    }

    .contact-hero-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .contact-hero-para {
        font-size: 14.5px;
        max-width: 100%;
    }

    .contact-hero-para br {
        display: none;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .contact-hero-bg-img {
        height: 480px;
    }

    .contact-hero-content {
        padding: 28px 18px;
    }

    .contact-hero-label {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .contact-hero-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .contact-hero-para {
        font-size: 13.5px;
        line-height: 1.6;
        max-width: 100%;
    }

    .contact-hero-para br {
        display: none;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .contact-hero-bg-img {
        height: 440px;
    }

    .contact-hero-content {
        padding: 24px 14px;
    }

    .contact-hero-label {
        font-size: 10.5px;
        padding: 6px 11px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .contact-hero-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .contact-hero-para {
        font-size: 14px;
        line-height: 1.55;
        max-width: 100%;
    }

    .contact-hero-para br {
        display: none;
    }
}


/* ===== CONTACT MAIN SECTION ===== */
.contact-main-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* ---- YELLOW STRATEGY CARD ---- */
.contact-yellow-card {
    background: #f5a623;
    border-radius: 30px;
    padding: 36px 32px;
}

.cyc-title {
    color: #0b1a2e;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 14px;
}

.cyc-para {
    color: #0b1a2e;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.cyc-points {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cyc-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0b1a2e;
    font-size: 18px;
    font-weight: 500;
}

.cyc-points li i {
    font-size: 20px;
    color: #0b1a2e;
    flex-shrink: 0;
}

.cyc-link {
    display: inline-block;
    color: #0b1a2e;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.cyc-link:hover {
    text-decoration: underline;
    color: #0b1a2e;
}

/* ---- CONTACT INFO CARDS ---- */
.contact-info-card {
    background: #112240;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.3s ease;
}

.contact-info-card:hover {
    border-color: #25D366;
}

.cic-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cic-icon-wrap i {
    font-size: 22px;
    color: #25D366;
}

.cic-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cic-label {
    color: #6b7f9e;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cic-value {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.cic-sub {
    color: #8fa0b8;
    font-size: 18px;
}

.contact-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-card-link .contact-info-card {
    cursor: pointer;
}

/* ---- Card 2: Rating Card ---- */
.cbc-rating-card {
    background: #112240;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cbc-stars {
    display: flex;
    gap: 6px;
}

.cbc-stars i {
    color: #f5a623;
    font-size: 24px;
}

.cbc-rating-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* ---- Card 3: Business Hours Card ---- */
.cbc-hours-card {
    background: #112240;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cbc-hours-line {
    color: #f5a623;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.cbc-sunday-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cbc-sunday-text {
    color: #8fa0b8;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.cbc-sunday-line {
    flex: 1;
    height: 1.5px;
    background: #f5a623;
}

/* ---- FORM CARD ---- */
.contact-form-card {
    background: #112240;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 38px;
    height: 100%;
}

/* ---- Person Intro Row (above form title) ---- */
.cfc-person-intro {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.cfc-person-img {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5a623;
}

.cfc-person-text {
    color: #c8d6e8;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.cfc-person-text strong {
    color: #ffffff;
    font-weight: 700;
}

.cfc-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cfc-para {
    color: #8fa0b8;
    font-size: 17px;
    margin-bottom: 28px;
}

.cfc-label {
    display: block;
    color: #6b7f9e;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cfc-input {
    width: 100%;
    background: #0b1a2e;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form-card::placeholder {
    color: #4a5e78;
    font-size: 16px;
}

.cfc-input::placeholder {
    color: #4a5e78;
    font-size: 16px;
}

.cfc-input:focus {
    border-color: #f5a623;
}

.cfc-textarea {
    height: 140px;
    resize: none;
}

.cfc-select-wrap {
    position: relative;
}

.cfc-select {
    width: 100%;
    background: #0b1a2e;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #4a5e78;
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

.cfc-select:focus {
    border-color: #f5a623;
    color: #ffffff;
}

.cfc-select option {
    background: #112240;
    color: #ffffff;
}

.cfc-select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7f9e;
    font-size: 13px;
    pointer-events: none;
}

.btn-cfc-submit {
    width: 100%;
    background: #f5a623;
    color: #0b1a2e;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cfc-submit:hover {
    background: #e09510;
}

.cfc-privacy {
    color: #6b7f9e;
    font-size: 16px;
    margin: 0;
}

/* ===== RESPONSIVE: CONTACT MAIN SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .contact-main-section {
        padding: 36px 30px;
    }

    .contact-yellow-card {
        padding: 30px 26px;
    }

    .cyc-title {
        font-size: 22px;
    }

    .cyc-para {
        font-size: 15.5px;
    }

    .cyc-points li {
        font-size: 15.5px;
    }

    .cyc-points li i {
        font-size: 17px;
    }

    .cyc-link {
        font-size: 15.5px;
    }

    .contact-info-card {
        padding: 18px 22px;
        gap: 16px;
    }

    .cic-icon-wrap {
        width: 42px;
        height: 42px;
    }

    .cic-icon-wrap i {
        font-size: 19px;
    }

    .cic-label {
        font-size: 14px;
    }

    .cic-value {
        font-size: 16px;
    }

    .cic-sub {
        font-size: 15px;
    }

    .cbc-rating-card,
    .cbc-hours-card {
        padding: 18px 22px;
    }

    .cbc-stars i {
        font-size: 18px;
    }

    .cbc-rating-text,
    .cbc-hours-line {
        font-size: 15.5px;
    }

    .cbc-sunday-text {
        font-size: 13.5px;
    }

    .contact-form-card {
        padding: 32px 28px;
    }

    .cfc-title {
        font-size: 25px;
    }

    .cfc-para {
        font-size: 15px;
    }

    .cfc-input,
    .cfc-select {
        font-size: 14.5px;
    }

    .btn-cfc-submit {
        font-size: 17px;
        padding: 14px 18px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .contact-main-section {
        padding: 32px 20px;
    }

    .contact-yellow-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .cyc-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cyc-para {
        font-size: 14.5px;
        margin-bottom: 18px;
    }

    .cyc-points {
        gap: 11px;
        margin-bottom: 20px;
    }

    .cyc-points li {
        font-size: 14.5px;
        gap: 10px;
    }

    .cyc-points li i {
        font-size: 16px;
    }

    .cyc-link {
        font-size: 14.5px;
    }

    .contact-info-card {
        padding: 16px 18px;
        gap: 14px;
        border-radius: 12px;
    }

    .cic-icon-wrap {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .cic-icon-wrap i {
        font-size: 18px;
    }

    .cic-label {
        font-size: 12.5px;
    }

    .cic-value {
        font-size: 14.5px;
    }

    .cic-sub {
        font-size: 13.5px;
    }

    .cbc-rating-card,
    .cbc-hours-card {
        padding: 16px 18px;
        border-radius: 12px;
    }

    .cbc-stars i {
        font-size: 17px;
    }

    .cbc-rating-text,
    .cbc-hours-line {
        font-size: 14.5px;
    }

    .cbc-sunday-text {
        font-size: 13px;
    }

    .contact-form-card {
        padding: 28px 22px;
        border-radius: 14px;
    }

    .cfc-title {
        font-size: 22px;
    }

    .cfc-para {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .cfc-label {
        font-size: 12.5px;
    }

    .cfc-input,
    .cfc-select {
        font-size: 14px;
        padding: 11px 14px;
    }

    .cfc-textarea {
        height: 120px;
    }

    .btn-cfc-submit {
        font-size: 16px;
        padding: 13px 16px;
        border-radius: 12px;
    }

    .cfc-privacy {
        font-size: 13.5px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .contact-main-section {
        padding: 28px 16px;
    }

    .contact-yellow-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .cyc-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cyc-para {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .cyc-points {
        gap: 10px;
        margin-bottom: 18px;
    }

    .cyc-points li {
        font-size: 13.5px;
        gap: 8px;
        align-items: flex-start;
    }

    .cyc-points li i {
        font-size: 15px;
        margin-top: 1px;
    }

    .cyc-link {
        font-size: 13.5px;
    }

    .contact-info-card {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 12px;
    }

    .cic-icon-wrap {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .cic-icon-wrap i {
        font-size: 16px;
    }

    .cic-label {
        font-size: 11.5px;
    }

    .cic-value {
        font-size: 13.5px;
    }

    .cic-sub {
        font-size: 12.5px;
    }

    .cbc-rating-card,
    .cbc-hours-card {
        padding: 14px 16px;
        border-radius: 12px;
        gap: 8px;
    }

    .cbc-stars i {
        font-size: 16px;
    }

    .cbc-rating-text,
    .cbc-hours-line {
        font-size: 13.5px;
    }

    .cbc-sunday-text {
        font-size: 12.5px;
    }

    .contact-form-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .cfc-title {
        font-size: 19px;
    }

    .cfc-para {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .cfc-label {
        font-size: 11.5px;
        margin-bottom: 6px;
    }

    .cfc-input,
    .cfc-select {
        font-size: 13px;
        padding: 11px 13px;
    }

    .cfc-textarea {
        height: 110px;
    }

    .btn-cfc-submit {
        font-size: 14.5px;
        padding: 13px 14px;
        border-radius: 10px;
    }

    .cfc-privacy {
        font-size: 12.5px;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .contact-main-section {
        padding: 24px 14px;
    }

    .contact-yellow-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .cyc-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .cyc-para {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    .cyc-points {
        gap: 9px;
        margin-bottom: 16px;
    }

    .cyc-points li {
        font-size: 14px;
        gap: 8px;
        align-items: flex-start;
        line-height: 1.45;
    }

    .cyc-points li i {
        font-size: 14px;
        margin-top: 1px;
    }

    .cyc-link {
        font-size: 12.5px;
    }

    .contact-info-card {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 10px;
    }

    .cic-icon-wrap {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .cic-icon-wrap i {
        font-size: 14px;
    }

    .cic-text {
        gap: 3px;
    }

    .cic-label {
        font-size: 10.5px;
        letter-spacing: 1px;
    }

    .cic-value {
        font-size: 12.5px;
    }

    .cic-sub {
        font-size: 11px;
    }

    .cbc-rating-card,
    .cbc-hours-card {
        padding: 12px 14px;
        border-radius: 10px;
        gap: 8px;
    }

    .cbc-stars {
        gap: 4px;
    }

    .cbc-stars i {
        font-size: 14px;
    }

    .cbc-rating-text,
    .cbc-hours-line {
        font-size: 12.5px;
    }

    .cbc-sunday-wrap {
        gap: 10px;
    }

    .cbc-sunday-text {
        font-size: 11.5px;
    }

    .contact-form-card {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .cfc-title {
        font-size: 16px;
    }

    .cfc-para {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .cfc-label {
        font-size: 10.5px;
        margin-bottom: 6px;
    }

    .cfc-input,
    .cfc-select {
        font-size: 12.5px;
        padding: 10px 12px;
        border-radius: 6px;
    }

    .cfc-textarea {
        height: 100px;
    }

    .cfc-select-icon {
        right: 12px;
        font-size: 11px;
    }

    .btn-cfc-submit {
        font-size: 13px;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .cfc-privacy {
        font-size: 11px;
    }
}


/* ===== CONSULTATION CTA SECTION ===== */
.consultation-cta-section {
    background-color: #0b1220;
    padding: 40px 50px;
}

/* Title */
.cta-consult-title {
    color: #ffffff;
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-consult-gold {
    color: #f5a623;
}

/* Sub para */
.cta-consult-para {
    color: #8fa0b8;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Individual point box */
.cta-point-box {
    background: #161f33;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c8d2e0;
    font-size: 18px;
    font-weight: 500;
    height: 100%;
}

/* Bullet icon */
.cta-bullet {
    color: #f5a623;
    font-size: 9px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.cta-bullet i {
    font-size: 9px;
}

/* Button */
.cta-consult-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-cta-consult {
    display: inline-block;
    background: #f5a623;
    color: #0b1220;
    font-size: 20px;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-cta-consult:hover {
    background: #e09510;
    color: #0b1220;
}

/* ===== RESPONSIVE: CONSULTATION CTA SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
  .consultation-cta-section {
    padding: 36px 30px;
  }

  .cta-consult-title {
    font-size: 36px;
  }

  .cta-consult-para {
    font-size: 17px;
  }

  .cta-point-box {
    font-size: 16px;
    padding: 16px 20px;
  }

  .btn-cta-consult {
    font-size: 17px;
    padding: 14px 32px;
  }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
  .consultation-cta-section {
    padding: 32px 20px;
  }

  .cta-consult-title {
    font-size: 28px;
  }

  .cta-consult-para {
    font-size: 15px;
  }

  .row.g-3.justify-content-center.mt-4 {
    margin-top: 20px !important;
  }

  .cta-point-box {
    font-size: 14.5px;
    padding: 15px 18px;
    border-radius: 8px;
  }

  .cta-consult-btn-wrap {
    margin-top: 30px;
  }

  .btn-cta-consult {
    font-size: 16px;
    padding: 13px 28px;
  }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
  .consultation-cta-section {
    padding: 28px 16px;
  }

  .cta-consult-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .cta-consult-para {
    font-size: 13.5px;
  }

  .row.g-3.justify-content-center.mt-4 {
    margin-top: 16px !important;
  }

  .cta-point-box {
    font-size: 13.5px;
    padding: 14px 16px;
    border-radius: 8px;
    gap: 10px;
  }

  .cta-consult-btn-wrap {
    margin-top: 24px;
  }

  .btn-cta-consult {
    font-size: 14.5px;
    padding: 12px 26px;
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
  .consultation-cta-section {
    padding: 24px 14px;
  }

  .cta-consult-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .cta-consult-para {
    font-size: 14px;
  }

  .row.g-3.justify-content-center.mt-4 {
    margin-top: 14px !important;
    --bs-gutter-y: 0.7rem;
  }

  .cta-point-box {
    font-size: 12.5px;
    padding: 13px 14px;
    border-radius: 8px;
    gap: 8px;
  }

  .cta-bullet,
  .cta-bullet i {
    font-size: 8px;
  }

  .cta-consult-btn-wrap {
    margin-top: 20px;
  }

  .btn-cta-consult {
    font-size: 13px;
    padding: 12px 20px;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 6px;
  }
}

@media (max-width: 575px) {
    .deosweb {
        padding: 20px 0;
    }
}