/* ===========================
   FINANCIAL SERVICES PAGE STYLES
   =========================== */

:root {
  --color-primary-dark: #18265d;
  --color-primary-light: #2d5f8d;
  --color-secondary-teal: #1ea7b5;
  --color-secondary-light: #3dbbc9;
  --color-accent-gold: #d4a574;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-bg-light: #f8f9fa;
  --navy: #18265d;
  --spacing-unit: 4px;
}

/* Hero Banner Section */
.financial-banner {
  background: linear-gradient(135deg, #1a3a52 0%, #22384d 100%);
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 550px;
}

.financial-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.banner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  min-height: 550px;
}

.banner-image {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  min-height: 550px;
  order: -1;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 60px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #1a3a52 0%, #22384d 100%);
}

.financial-banner h1 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 5vw, 3rem);
   font-weight: 600;
    line-height: 0.94;
    letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  max-width: 90%;
}

.financial-banner p {
  margin: 0 0 40px;
  font-size: 1rem;
  line-height: 1.7;
      text-align: left;
  max-width: 90%;
  opacity: 0.98;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

/* .banner-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
} */

/* Financial Intro Section */
.financial-intro {
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  padding: 120px 0px;
  background: linear-gradient(135deg, rgba(var(--color-primary-500-rgb), 0.08) 0%, rgba(var(--color-primary-600-rgb), 0.06) 100%);
  /* border-radius: 24px; */
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-label {
  display: inline-block;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.1) 0%, rgba(26, 58, 82, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(26, 58, 82, 0.2);
}

.intro-content h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .2px;
}

.intro-content p {
  margin: 0 0 20px;
  color: #130101;
  font-size: 17px;
  line-height: 1.8;
  max-width: 70ch;
}

.intro-content p:last-of-type {
  margin-bottom: 28px;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
  font-size: 20px;

  padding: 12px 0;
  position: relative;
  padding-left: 0;
}

.highlight-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 100%);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  margin-right: 8px;
}

.highlight-item::after {
  content: attr(data-text);
}

/* Highlights Grid */
.intro-highlights {
      border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 42px rgba(var(--shadow-soft-rgb), 0.06);
    padding: clamp(28px, 3vw, 44px);
    background: linear-gradient(180deg, rgba(var(--color-white-rgb), 1), rgba(var(--color-white-rgb), 0.98)), var(--color-white);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: 100%;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(var(--color-primary-800-rgb), 0.08);
  box-shadow: 0 20px 50px rgba(var(--color-black-rgb), 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* .highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, currentColor 0%, transparent 100%);
  opacity: 0.6;
} */

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 58, 82, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* .highlight-card--primary {
  border-top: 3px solid var(--navy);
  color: var(--navy);
} */

.highlight-card--primary:hover {
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.03) 0%, rgba(26, 58, 82, 0.01) 100%);
}

/* .highlight-card--secondary {
  border-top: 3px solid var(--navy);
  color: var(--navy);
} */

.highlight-card--secondary:hover {
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.03) 0%, rgba(26, 58, 82, 0.01) 100%);
}

/* .highlight-card--accent {
  border-top: 3px solid var(--navy);
  color: var(--navy);
} */

.highlight-card--accent:hover {
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.03) 0%, rgba(26, 58, 82, 0.01) 100%);
}

.highlight-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.1) 0%, rgba(26, 58, 82, 0.1) 100%);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.15) 0%, rgba(26, 58, 82, 0.15) 100%);
  transform: scale(1.08);
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.highlight-number {
    color: #18265d;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    /* letter-spacing: 0.5px; */
}

.highlight-label {
     font-size: 24px;
    color: var(--color-text-secondary);
    font-weight: 600;
    letter-spacing: .2px;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

/* Services Grid Section */
.financial-services {
  margin-top: 0px;
  padding: 120px 0 ;
  background: radial-gradient(circle at top left, rgba(var(--color-primary-500-rgb), 0.08) 0%, transparent 34%), radial-gradient(circle at bottom right, rgba(var(--color-secondary-400-rgb), 0.06) 0%, transparent 26%), linear-gradient(180deg, #ffffff 0%, #f7faff 58%, #eef4ff 100%);
}

.services-header {
  text-align: left;
  margin-bottom: 48px;
  /* max-width: 800px; */
  /* margin-left: auto;
  margin-right: auto; */
}

.services-header h2 {
     margin: 0 0 24px;
    color: var(--navy);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .2px;
}

.services-header p {
  margin: 0;
      /* max-width: 100%; */
  color: #210002;
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  /* max-width: 1200px;
  margin: 0 auto; */
}

.service-box {
  background: #fff;
  border: 1px solid rgba(var(--color-primary-800-rgb), 0.08);
  border-radius: 18px;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-secondary-light) 100%);
  opacity: 0;
  transition: left 0.3s ease, opacity 0.3s ease;
  z-index: -1;
}

.service-box:hover {
  /* border-color: var(--color-accent-gold); */
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(58, 119, 153, 0.15);
}

.service-box:hover::before {
  left: 0;
  opacity: 0.08;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.service-box h3 {
  margin: 0 0 12px;
  color: #2d0000;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-box p {
  margin: 0;
  color: #180101;
  font-size:17px;
  line-height: 1.8;
  flex-grow: 1;
  letter-spacing: -.2px;
    font-weight: 300;
}

/* Why Choose Us Section */
.financial-why-us {
  background: #fff;
  margin-top: 0px;
  padding: 120px 0px 0px;
  position: relative;
}

.why-us-wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-left h2 {
     margin: 0 0 ;
    /* max-width: 460px; */
    font-family: var(--font-heading);
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .2px;
    color: #18265d;
  text-align: left;
}

.why-us-left p {
  margin: 0;
  color: #180101;
  font-size: 17px;
  line-height: 1.8;
  max-width: 100%;
  /*letter-spacing: 0.3px;*/
}

.btn--why-us-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 40px;
     background: linear-gradient(135deg, rgba(var(--color-primary-100-rgb), 0.95), rgba(var(--color-secondary-100-rgb), 0.72)), rgba(var(--color-white-rgb), 0.92);
    color: var(--navy);
  border: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  /* box-shadow: 0 6px 20px rgba(26, 58, 82, 0.25); */
}

.btn--why-us-contact:hover {
  background: #0f2540;
  color: white;
  transform: translateY(-3px);
  /* box-shadow: 0 12px 32px rgba(26, 58, 82, 0.4); */
}

.why-us-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us-image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-image-container::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.25) 0%, rgba(26, 58, 82, 0.15) 100%);
  border-radius: 24px;
  z-index: -1;
  transition: inset 0.3s ease;
}

.why-us-image-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.2);
}

.why-us-image-container:hover::before {
  inset: -20px;
}

.why-us-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 9px;
}

/* FAQ Section */


/* CTA Section */

.pro-cta {
    margin: 120px 5% ;
}


/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
  .banner-wrapper {
    grid-template-columns: 1fr 1.2fr;
  }

  .banner-image {
    min-height: 450px;
  }

  .banner-content {
    padding: 60px 50px;
  }

  .financial-banner h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
  }

  .financial-banner p {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .financial-intro {
    /* margin-left: 20px;
    margin-right: 20px;*/
    padding: 120px 0px; 
  }

  .intro-wrapper {
    gap: 48px;
	        grid-template-columns: 1fr;
  }

  .intro-content h2 {
    font-size: 2rem;
  }
.services-header h2{
	font-size: 2rem;
}
  .highlight-card {
    padding: 30px 28px;
    gap: 22px;
  }

  .highlight-icon {
    width: 68px;
    height: 68px;
    font-size: 2.6rem;
  }

  .highlight-number {
    font-size: 1.6rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .financial-why-us {
    padding: 60px 20px;
  }

  .why-us-layout {
    gap: 60px;
  }

  .why-us-left h2 {
    font-size: 2rem;
  }

  .why-us-left p {
    font-size: 0.95rem;
  }

  .why-us-image-container {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .banner-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .banner-image {
    min-height: 300px;
    order: -1;
  }

  .banner-content {
    padding: 48px 32px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .financial-banner {
    min-height: auto;
  }

  .financial-banner h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    text-align: center;
  }

  .financial-banner p {
    font-size: 0.95rem;
    margin-bottom: 28px;
    text-align: center;
    max-width: 100%;
  }

  .banner-actions {
    gap: 12px;
    justify-content: flex-start;
  }

  .financial-intro {
        
        padding: 65px 0px;
    
    /* margin-top: 36px;
    margin-left: 16px;
    margin-right: 16px;
    padding: 40px 24px; */
  }

  .intro-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-content h2 {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }

  .intro-content p {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .intro-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    padding: 28px 24px;
    gap: 20px;
  }

  .highlight-icon {
    width: 65px;
    height: 65px;
    font-size: 2.4rem;
  }

  .highlight-number {
    font-size: 1.6rem;
  }

  .financial-services {
    margin-top: 0px;
    padding: 65px 0px;
  }

  .services-header {
    margin-bottom: 32px;
  }

  .services-header h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .services-header p {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-box {
    padding: 24px;
    min-height: auto;
  }

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .financial-why-us {
    margin-top: 0px;
    padding: 65px 0px;
  }

  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-us-left h2 {
    font-size: 1.6rem;
  }

  .why-us-left p {
    font-size: 0.95rem;
  }

  .why-us-image-container {
    max-width: 100%;
  }

  .financial-faq {
    margin-top: 48px;
    padding: 0 16px;
  }

  .faq-container h2 {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }

  .faq-item summary {
    padding: 16px;
  }

  .faq-item p {
    padding: 0 16px 16px;
  }

  .financial-cta {
    margin-top: 48px;
    padding: 40px 16px;
  }

  .financial-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .financial-cta p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .banner-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .banner-image {
    min-height: 220px;
    order: -1;
  }

  .banner-content {
    padding: 32px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .financial-banner {
    min-height: auto;
  }

  .financial-banner h1 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .financial-banner p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .banner-actions {
    gap: 10px;
    flex-direction: column;
    justify-content: center;
  }

  .banner-actions a {
    font-size: 0.85rem;
    padding: 10px 16px;
    width: 100%;
    text-align: center;
  }

  /* .financial-intro {
    margin-top: 28px;
    margin-left: 16px;
    margin-right: 16px;
    padding: 32px 20px;
  } */

  .intro-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-label {
    font-size: 0.8rem;
  }

  .intro-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .intro-content p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .highlight-list {
    gap: 10px;
  }

  .highlight-item {
    font-size: 0.9rem;
    gap: 8px;
  }

  .highlight-card {
    padding: 28px 24px;
    gap: 16px;
  }

  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
  }

  .highlight-number {
    font-size: 1.4rem;
  }

  .highlight-label {
    font-size: 0.82rem;
  }

  /* .financial-services {
    margin-top: 32px;
    padding: 0 16px;
  } */

  .services-header {
    margin-bottom: 24px;
  }

  .services-header h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .services-header p {
    font-size: 0.85rem;
  }

  .services-grid {
    gap: 16px;
  }

  .service-box {
    padding: 16px;
    min-height: auto;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .service-box h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .service-box p {
    font-size: 0.85rem;
  }

  .financial-why-us {
    margin-top: 32px;
    padding: 40px 16px;
  }

  .why-us-header {
    margin-bottom: 36px;
  }

  .why-us-header h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .why-us-header p {
    font-size: 0.9rem;
  }

  .why-us-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-us-left,
  .why-us-right {
    gap: 20px;
  }

  .why-us-image {
    max-width: 240px;
    margin: 0 auto;
  }

  .why-us-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    width: 70px;
    height: 70px;
  }

  .why-us-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .why-us-card p {
    font-size: 0.85rem;
  }

  .btn--why-us-cta {
    padding: 12px 32px;
    font-size: 0.9rem;
  }

  .reasons-grid {
    gap: 12px;
  }

  .reason-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .reason-card h3 {
    font-size: 0.95rem;
  }

  .reason-card p {
    font-size: 0.8rem;
  }

  .financial-faq {
    margin-top: 32px;
    padding: 0 16px;
  }

  .faq-container h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item summary {
    padding: 12px;
    font-size: 0.9rem;
  }

  .faq-item summary::after {
    font-size: 1.2rem;
    margin-left: 8px;
  }

  .faq-item p {
    padding: 0 12px 12px;
    font-size: 0.85rem;
  }

  .financial-cta {
    margin-top: 32px;
    padding: 32px 16px;
  }

  .financial-cta h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .financial-cta p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
}

/* Unified CTA Button Style */
/* :is(.btn--banner-primary, .btn--banner-secondary, .btn--why-us-contact, .btn--why-us-cta, .btn--cta-primary) {
  color: var(--navy-deep) !important;
  background: linear-gradient(135deg, var(--color-logo-gold-300), var(--color-logo-gold-500)) !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

:is(.btn--banner-primary, .btn--banner-secondary, .btn--why-us-contact, .btn--why-us-cta, .btn--cta-primary):hover,
:is(.btn--banner-primary, .btn--banner-secondary, .btn--why-us-contact, .btn--why-us-cta, .btn--cta-primary):focus-visible {
  color: var(--navy-deep) !important;
  background: linear-gradient(135deg, var(--color-logo-gold-400), var(--color-logo-gold-600)) !important;
  box-shadow: none !important;
} */

section.bank-why-us {
    padding: 0px 0 120px;
}