:root {
  --red:    #C8312B;
  --navy:   #1E2A6E;
  --silver: #A8ABAE;
  --light:  #F5F6FA;
  --white:  #FFFFFF;
  --dark:   #111827;
  --text:   #374151;
  --border: #E5E7EB;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: 'Poppins', sans-serif;
}

/* ── NAVBAR ── */
.navbar {
  background: #666d95;
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(30,42,110,0.18);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white) !important;
}
.navbar-brand img { height: 44px; width: auto; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.9rem !important;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white) !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.4); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-nav-cta {
  background: var(--red);
  color: #fff !important;
  border-radius: 4px;
  padding: 0.42rem 1.2rem !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav-cta:hover { background: #a8241f; transform: translateY(-1px); }

/* ── NAV DROPDOWN ── */
.navbar .dropdown-menu {
  border: none;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 0.35rem 0;
  min-width: 300px;
  margin-top: 0.5rem;
}
.navbar .dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.7rem 1.25rem;
  border-bottom: 1px solid var(--border);
  white-space: normal;
  line-height: 1.4;
}
.navbar .dropdown-item:last-child { border-bottom: none; }
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: var(--light);
  color: var(--red);
}
.navbar .dropdown-toggle::after { margin-left: 0.4em; vertical-align: 0.15em; }
.nav-dropdown-split {
  display: flex;
  align-items: center;
}
.navbar .nav-dropdown-split > .nav-link:first-child {
  padding-right: 0.2rem !important;
}
.navbar .nav-dropdown-caret {
  padding: 0.4rem 0.45rem 0.4rem 0.15rem !important;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.82);
  line-height: 1;
}
.navbar .nav-dropdown-caret::after {
  margin-left: 0;
  vertical-align: 0.15em;
}
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover .dropdown-menu { display: block; }
}
@media (max-width: 991.98px) {
  .navbar-nav .nav-item.dropdown {
    width: 100%;
  }
  .navbar-nav .nav-link.dropdown-toggle.d-lg-none {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.65rem 0.9rem !important;
  }
  .navbar-nav .nav-link.dropdown-toggle.d-lg-none::after {
    margin-left: auto;
  }
  .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    inset: auto !important;
    float: none;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0.25rem 0 0.75rem;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.12);
  }
  .navbar-nav .dropdown-menu.show {
    display: block;
  }
  .navbar-nav .dropdown-item {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.08);
    padding: 0.65rem 1.25rem 0.65rem 1.5rem;
  }
  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
  .navbar-nav .dropdown-item.fw-semibold {
    color: #fff;
  }
}

/* ── SLASH DIVIDER ── */
.slash-divider {
  width: 56px;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 40%, var(--navy) 40%);
  border-radius: 3px;
  margin-bottom: 1rem;
}
.slash-divider.center { margin-left: auto; margin-right: auto; }

/* ── SECTION COMMON ── */
section { padding: 80px 0; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0;
}
.section-subtitle {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-top: 0.85rem;
  max-width: 560px;
}

/* ── BUTTONS ── */
.btn-primary-red {
  background: var(--red);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.78rem 1.8rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-red:hover {
  background: #a8241f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,49,43,0.35);
  color: #fff;
}

/* ── ABOUT HERO ── */
.about-hero {
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center center / cover no-repeat;
  position: relative;
  padding: 100px 0 80px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,22,64,0.92) 0%, rgba(22,32,90,0.85) 55%, rgba(30,42,110,0.72) 100%);
  z-index: 0;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.about-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── WELCOME SECTION ── */
.welcome-section { background: var(--white); }
.welcome-section .welcome-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.welcome-section .welcome-text p:last-child { margin-bottom: 0; }

/* ── IMAGE GALLERY ── */
.gallery-section { background: var(--white); padding-top: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ── TESTIMONIAL CAROUSEL ── */
.testimonial-section { background: var(--light); }
.testimonial-wrap {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-wrap .carousel-control-prev,
.testimonial-wrap .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.testimonial-wrap .carousel-control-prev { left: -60px; }
.testimonial-wrap .carousel-control-next { right: -60px; }
.testimonial-wrap .carousel-control-prev-icon,
.testimonial-wrap .carousel-control-next-icon {
  filter: invert(18%) sepia(40%) saturate(1200%) hue-rotate(210deg);
  width: 1.2rem;
  height: 1.2rem;
}
.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.5;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── EXPERTS SECTION ── */
.experts-section { background: var(--white); }
.experts-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.experts-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.experts-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.experts-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

/* ── MEET ACCOUNTANT ── */
.accountant-section { background: var(--light); }
.accountant-card {
  text-align: center;
  max-width: 280px;
  margin: 0 auto 2.5rem;
}
.accountant-card .photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 4px solid var(--white);
  box-shadow: 0 8px 32px rgba(30,42,110,0.15);
}
.accountant-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accountant-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.accountant-card .role {
  font-size: 0.88rem;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.accountant-card .linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(30,42,110,0.08);
  border-radius: 6px;
  color: var(--navy);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.accountant-card .linkedin-link:hover {
  background: var(--navy);
  color: #fff;
}
.accountant-bio {
  max-width: 820px;
  margin: 0 auto;
}
.accountant-bio p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.accountant-bio p:last-child { margin-bottom: 0; }

/* ── CONTACT CTA ── */
.contact-cta-section {
  position: relative;
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1600&q=80') center center / cover no-repeat;
}
.contact-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,22,64,0.55);
  z-index: 0;
}
.contact-cta-section .container { position: relative; z-index: 1; }
.contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2.4rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  max-width: 640px;
}
.contact-form-wrap h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.contact-form-wrap .form-intro {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-control {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  padding: 0.65rem 0.9rem;
  color: var(--text);
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,42,110,0.1);
}
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  padding: 0.65rem 0.9rem;
  color: var(--text);
}
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,42,110,0.1);
}

/* ── FOOTER ── */
footer {
  background: #0b1030;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}
footer .footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-brand img { height: 44px; width: auto; }
footer p { font-size: 0.83rem; line-height: 1.7; max-width: 260px; }
footer h6 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  margin-top: 2.5rem;
}
.footer-bottom p { font-size: 0.78rem; margin: 0; }
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-links a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--red); color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.84rem;
}
.footer-contact-item i { color: var(--red); font-size: 0.9rem; margin-top: 2px; }

/* ── SERVICES PAGE ── */
.services-hero {
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center center / cover no-repeat;
  position: relative;
  padding: 100px 0 80px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,22,64,0.92) 0%, rgba(22,32,90,0.85) 55%, rgba(30,42,110,0.72) 100%);
  z-index: 0;
}
.services-hero .container { position: relative; z-index: 1; }
.services-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.services-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.service-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-of-type { border-bottom: none; }
.service-block:nth-child(even) { background: var(--light); }
.service-block-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.service-block-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.service-block-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-block-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.btn-read-more {
  background: var(--navy);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.72rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-read-more:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* ── SERVICES CONTACT ── */
.services-contact-section {
  background: var(--light);
  padding: 80px 0;
}
.services-contact-section .contact-form-wrap {
  max-width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.services-contact-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  height: 100%;
  min-height: 420px;
}
.services-contact-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* ── INDUSTRIES PAGE ── */
.industries-hero {
  background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80') center center / cover no-repeat;
  position: relative;
  padding: 100px 0 80px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.industries-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,22,64,0.92) 0%, rgba(22,32,90,0.85) 55%, rgba(30,42,110,0.72) 100%);
  z-index: 0;
}
.industries-hero .container { position: relative; z-index: 1; }
.industries-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.industries-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center center / cover no-repeat;
  position: relative;
  padding: 110px 0 90px;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,22,64,0.92) 0%, rgba(22,32,90,0.85) 55%, rgba(30,42,110,0.72) 100%);
  z-index: 0;
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.touch-cards-section {
  padding: 72px 0;
  background: var(--white);
}
.touch-heading {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.touch-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.touch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(30,42,110,0.12);
}
.touch-icon {
  width: 52px;
  height: 52px;
  background: rgba(30,42,110,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.touch-icon i { font-size: 1.3rem; color: var(--navy); }
.touch-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.touch-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.map-form-section {
  padding: 0 0 80px;
  background: var(--white);
}
.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  min-height: 420px;
  height: 100%;
}
.map-wrap iframe { min-height: 420px; display: block; }
.map-form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  height: 100%;
}
.map-form-intro {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.btn-send {
  background: var(--navy);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.78rem 1.8rem;
  border-radius: 4px;
  text-transform: lowercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-send:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 999;
  transition: background 0.2s, color 0.2s;
}
.back-to-top:hover {
  background: var(--navy);
  color: #fff;
}

/* ── SERVICE DETAIL PAGE ── */
.service-detail-hero {
  background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600&q=80') center center / cover no-repeat;
  position: relative;
  padding: 100px 0 80px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.service-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14,22,64,0.92) 0%, rgba(22,32,90,0.85) 55%, rgba(30,42,110,0.72) 100%);
  z-index: 0;
}
.service-detail-hero .container { position: relative; z-index: 1; }
.service-detail-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 720px;
}
.service-detail-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

/* Premium hero – taller, left-aligned, lifestyle imagery */
.service-hero-premium {
  min-height: 520px;
  padding: 140px 0 100px;
  align-items: flex-end;
}
.service-hero-premium::before {
  background: linear-gradient(105deg, rgba(8,12,40,0.88) 0%, rgba(14,22,64,0.75) 45%, rgba(30,42,110,0.45) 100%);
}
.service-hero-premium .container {
  text-align: left;
}
.service-hero-premium h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 680px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.service-hero-premium p {
  font-size: 1.08rem;
  max-width: 560px;
  line-height: 1.75;
}
.service-hero-premium .hero-service-tag {
  margin-bottom: 1.25rem;
}

.service-detail-section {
  padding: 80px 0;
  background: var(--white);
}
.service-detail-section.bg-light-section { background: var(--light); }
.service-detail-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-detail-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.service-detail-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}
.detail-feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.detail-feature-list li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0.85rem;
  padding-left: 1.2rem;
  position: relative;
}
.detail-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.detail-feature-list li strong { color: var(--navy); }

.service-cards-section {
  padding: 80px 0;
  background: var(--light);
}
.detail-service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem 1.4rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.detail-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(30,42,110,0.12);
}
.detail-service-icon {
  width: 48px;
  height: 48px;
  background: rgba(30,42,110,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.detail-service-icon i { font-size: 1.3rem; color: var(--navy); }
.detail-service-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.detail-service-card p {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

/* Service detail – enhanced design */
.service-detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 40%, var(--navy) 40%);
  z-index: 2;
}
.hero-service-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.service-detail-img-wrap {
  position: relative;
}
.service-detail-img-wrap::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 70%;
  height: 70%;
  background: rgba(30,42,110,0.08);
  border-radius: 10px;
  z-index: 0;
}
.service-detail-img-wrap .service-block-img {
  position: relative;
  z-index: 1;
}
.detail-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.detail-section-header .slash-divider { margin-left: auto; margin-right: auto; }
.detail-service-card {
  border-top: 3px solid transparent;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.detail-service-card:hover {
  border-top-color: var(--red);
}
.detail-service-icon {
  background: rgba(200,49,43,0.1);
}
.detail-service-icon i { color: var(--red); }

.business-advisory-hero {
  background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?w=1600&q=80');
}
.business-structuring-hero {
  background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1600&q=80');
}
.cashflow-forecasting-hero {
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&q=80');
}
.financial-statements-hero {
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&q=80');
}
.smsf-hero {
  background-image: url('https://images.unsplash.com/photo-1609220136736-443577a438d5?w=1600&q=80');
  background-position: center center;
}
.succession-planning-hero {
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80');
  background-position: center center;
}
.tax-planning-hero {
  background-image: url('https://images.unsplash.com/photo-1554224154-26032ffc0a47?w=1600&q=80');
  background-position: center center;
}
.building-construction-hero {
  background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80');
  background-position: center center;
}
.hospitality-hero {
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80');
  background-position: center center;
}
.manufacturing-engineering-hero {
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&q=80');
  background-position: center center;
}
.property-development-hero {
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80');
  background-position: center center;
}
.construction-trade-services-hero {
  background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80');
  background-position: center center;
}
.not-for-profits-hero {
  background-image: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1600&q=80');
  background-position: center center;
}
.industry-numbered-card h5 {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}
.industry-numbered-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.service-sub-topic {
  margin-bottom: 1.35rem;
}
.service-sub-topic:last-child { margin-bottom: 0; }
.service-sub-topic h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-sub-topic h4::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.service-sub-topic p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  padding-left: 1.15rem;
}

.detail-numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: detail-step;
}
.detail-numbered-list li {
  counter-increment: detail-step;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
}
.detail-numbered-list li::before {
  content: counter(detail-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-numbered-list li strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.detail-numbered-list li p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}
.service-task-block {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-task-block:last-child { border-bottom: none; }
.service-task-block:nth-child(even) { background: var(--light); }
.service-intro-center {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.service-intro-center p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text);
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  footer .col-lg-4 p { max-width: 100%; }
  .testimonial-wrap .carousel-control-prev { left: -10px; }
  .testimonial-wrap .carousel-control-next { right: -10px; }
}

@media (max-width: 767.98px) {
  section { padding: 56px 0; }
  .about-hero { padding: 72px 0 56px; min-height: auto; }
  .industries-hero { padding: 72px 0 56px; min-height: auto; }
  .service-detail-hero { padding: 72px 0 56px; min-height: auto; }
  .service-hero-premium { min-height: 380px; padding: 100px 0 72px; }
  .service-detail-section { padding: 56px 0; }
  .map-wrap iframe { min-height: 280px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
  .experts-img-wrap img { height: 280px; }
  .contact-form-wrap { padding: 1.5rem; max-width: 100%; }
  .testimonial-wrap .carousel-control-prev,
  .testimonial-wrap .carousel-control-next { display: none; }
  .service-block { padding: 48px 0; }
  .service-block-img img { height: 240px; }
  .services-contact-img { min-height: 280px; margin-top: 2rem; }
  .services-contact-img img { min-height: 280px; }
}

/* ── ARTICLES ── */
.btn-primary-navy {
  background: var(--navy);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-navy:hover { background: #141e55; transform: translateY(-2px); color: #fff; }

.articles-section { background: var(--light); }
.article-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.article-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card-link:hover .article-card {
  box-shadow: 0 12px 36px rgba(30,42,110,0.12);
  transform: translateY(-4px);
}
.article-img {
  height: 180px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.article-body { padding: 1.4rem; }
.article-tag {
  display: inline-block;
  background: rgba(200,49,43,0.1);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}
.article-card h6 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.article-card p { font-size: 0.8rem; color: var(--text); line-height: 1.55; margin-bottom: 0.8rem; }
.article-meta { font-size: 0.73rem; color: var(--silver); }

.articles-hero {
  background: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1600&q=80') center center / cover no-repeat;
}
.article-detail-hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.article-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,12,40,0.88) 0%, rgba(14,22,64,0.75) 45%, rgba(30,42,110,0.45) 100%);
  z-index: 0;
}
.article-detail-hero .container { position: relative; z-index: 1; }
.article-detail-hero .article-tag { margin-bottom: 1rem; }
.article-detail-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 800px;
  line-height: 1.25;
}
.article-detail-meta {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.article-detail-section { background: var(--white); padding: 60px 0 80px; }
.article-detail-content {
  max-width: 760px;
  margin: 0 auto;
}
.article-detail-content p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.article-detail-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.85rem;
}
.article-detail-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.4rem;
}
.article-detail-content li {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.article-back-link:hover { color: var(--red); }

.news-resource-callout {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.news-resource-callout p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  max-width: 720px;
  line-height: 1.5;
}
