/* ===========================
   FAQ PAGE STYLES
   =========================== */

.accordion-button {
    background: #f7f7f7;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    background: #e5e5e5;
}

.accordion-body {
    font-size: 16px;
    line-height: 1.7;
    background: #ffffff;
}

/* Hover effect */
.accordion-button:hover {
    background-color: #000 !important;
    color: #fff !important;
}

/* Active (when opened) */
.accordion-button:not(.collapsed) {
    background-color: #000 !important;
    color: #fff !important;
}

/* Icon color when collapsed */
.accordion-button::after {
    filter: invert(0.5);
}

/* Icon when active (open) */
.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.faq-hero {
    background: #000;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
}

.faq-disclaimer {
    font-size: 15px;
    color: #444;
    margin-top: 20px;
    line-height: 1.6;
}




/* ===========================
   SERVICES PAGE STYLES
   =========================== */
.services-hero {
    position: relative;
    width: 100%;
    height: 380px;
    background: url("../images/city.jpeg") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 8%;
}

.services-hero-title {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0;
}


.services-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
}

.visa-list {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.visa-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.visa-list li strong {
    font-size: 0.95rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.2rem;
}

.services-list strong {
    font-size: 1.05rem;
}

.services-form-box {
    background: #eeeeee;
    padding: 2.2rem;
}


.service-content h3 { margin-top: 18px; font-weight: 800; }
.service-content ul, .service-content ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.service-content li { margin-bottom: 0.4rem; }



/* ===========================
   LOCATION PAGE STYLES
   =========================== */
.hero-banner{
    position: relative;
    background: url("../images/bridge.jpeg") center/cover no-repeat;
    min-height: clamp(220px, 32vw, 460px); /* responsive height similar to your screenshot */
    overflow: hidden;
  }

  .hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* dark overlay for readability */
  }

  .hero-title{
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
    font-size: clamp(1.6rem, 4vw, 3.0rem); /* responsive big title */
    line-height: 1.1;
  }

 :root{
    --brand-purple:#8a00b5;
  }
  .service-title{
    color: var(--brand-purple);
    font-weight: 700;
    font-size: 20px;
  }
  .phone-link{
    color: var(--brand-purple);
    text-decoration: none;
    font-size: 20px;
  }
  .phone-link:hover{
    color: var(--brand-purple);
    text-decoration: underline;
  }