/* =========================================
   STYLE.CSS (FULL — CLEANED + CONFLICT-FREE)
   Theme: Dark Navy & Gold
   NOTE: Mobile/menu responsiveness is handled in responsive.css ONLY.
   THIS VERSION ALSO FIXES: tablet/mobile alignment for headings + icons + text
   ========================================= */

/* =========================================
   1. VARIABLES
   ========================================= */
:root {
  --navy-dark: #050811;
  --navy-main: #0f1a36;
  --gold: #c5a059;
  --gold-hover: #e5c585;
  --white: #ffffff;
  --text-grey: #b0b0b0;
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
}

/* =========================================
   2. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background-color: var(--navy-dark);
  color: var(--text-grey);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}
a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }

.text-gold { color: var(--gold); }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
}

.section-padding { padding: 100px 0; }

.section-subtitle {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.center-text { text-align: center; }

.center-divider {
  height: 2px;
  width: 60px;
  background: var(--gold);
  margin: 20px auto;
}

.divider {
  height: 2px;
  width: 60px;
  background: var(--gold);
  margin: 20px 0;
}

.body-text {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* =========================================
   3. HEADER & NAVIGATION (DESKTOP ONLY)
   ========================================= */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: linear-gradient(to bottom, rgba(5, 8, 17, 0.95), rgba(5, 8, 17, 0.8));
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  transition: 0.4s;
}
.main-header.sticky {
  padding: 10px 0;
  background: rgba(5, 8, 17, 0.98);
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo a {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.navbar ul { display: flex; align-items: center; margin: 0; padding: 0; }
.navbar ul li { margin-left: 20px; position: relative; list-style: none; }

.navbar ul li a {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 0;
  display: block;
  white-space: nowrap;
}
.navbar ul li a:hover { color: var(--gold); }

.btn-nav {
  border: 1px solid var(--gold);
  padding: 8px 18px;
  color: var(--gold) !important;
  white-space: nowrap;
  font-size: 0.75rem !important;
  display: inline-block;
}
.btn-nav:hover { background: var(--gold); color: var(--navy-dark) !important; }

.mobile-menu-icon { display: none; font-size: 1.5rem; cursor: pointer; color: var(--white); }

/* =========================================
   3B. DESKTOP DROPDOWN (Hover)
   ========================================= */
@media (min-width: 769px) {
  .navbar ul.dropdown-content {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background-color: var(--navy-dark);
    padding: 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 3px solid var(--gold);
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 2000;
  }
  .dropdown:hover .dropdown-content { visibility: visible; opacity: 1; transform: translateY(0); }
  .dropdown-content li {
    display: block;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .dropdown-content li:last-child { border-bottom: none; }
  .dropdown-content li a {
    display: block;
    padding: 15px 20px;
    font-size: 0.85rem;
    color: #ccc;
    text-align: left;
    white-space: normal;
    text-transform: none;
  }
  .dropdown-content li a:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    padding-left: 25px;
  }
}

/* =========================================
   4. RESPONSIVENESS (DESKTOP FONT SCALING)
   ========================================= */
@media (max-width: 1200px) {
  .container { width: 95%; }
  .logo a { font-size: 1.1rem; }
  .navbar ul li { margin-left: 15px; }
  .navbar ul li a { font-size: 0.75rem; }
  .btn-nav { padding: 6px 15px; }
}

/* =========================================
   5. BUTTONS
   ========================================= */
.btn-premium {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 15px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.btn-premium:hover { background: var(--gold); color: var(--navy-dark); }

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 33px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 10px;
}
.btn-secondary:hover { background: #fff; color: var(--navy-dark); }

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-wrapper-responsive {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  background: #000;
  margin-top: 80px;
}
.video-responsive { width: 100%; height: auto; display: block; }

.hero-overlay-responsive {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 8, 17, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay-responsive h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* =========================================
   7. QUOTE SECTION
   ========================================= */
.philosophy-section {
  padding: 100px 0;
  background: var(--navy-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.centered-quote { text-align: center; max-width: 900px; margin: 0 auto; }
.quote-box { border-left: 4px solid var(--gold); padding: 20px 0 20px 40px; margin: 0 auto; }
.centered-quote.quote-box { border-left: none; padding: 0; }

.quote-text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
}
.quote-author {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* =========================================
   8. ABOUT SECTION
   ========================================= */
.row-flex { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.col-half { flex: 1; min-width: 300px; }

.about-image-wrapper {
  position: relative;
  padding: 20px;
  border: 1px solid var(--gold);
  border-radius: 4px;
}
.about-img { width: 100%; height: auto; display: block; filter: grayscale(20%); border-radius: 2px; }

.exp-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 25px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================================
   9. SERVICES GRID
   ========================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
}
.service-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: #aaa; }

.read-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   10. WHY CHOOSE US
   ========================================= */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.why-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-left: 3px solid var(--gold);
  transition: 0.3s;
}
.why-card:hover { background: rgba(255, 255, 255, 0.05); transform: translateX(10px); }
.why-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--white); }
.why-card p { color: #bbb; font-size: 0.95rem; line-height: 1.7; }

/* =========================================
   11. WORKFLOW DIAGRAM
   ========================================= */
.workflow-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  position: relative;
}
.work-step { text-align: center; flex: 1; padding: 0 10px; position: relative; z-index: 2; }

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--navy-main);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: 0.3s;
}
.work-step:hover .step-icon { background: var(--gold); color: var(--navy-dark); }

.work-step h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.step-arrow { padding-top: 25px; color: rgba(255, 255, 255, 0.1); font-size: 1.5rem; }

/* =========================================
   12. TESTIMONIALS & PARTNERS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 35px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  position: relative;
  transition: 0.3s;
}
.testi-card:hover { background: rgba(255, 255, 255, 0.06); transform: translateY(-5px); border-color: var(--gold); }
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 5rem;
  color: rgba(197, 160, 89, 0.1);
  font-family: serif;
  line-height: 1;
}
.testi-card .stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 15px; }
.testi-card p { position: relative; z-index: 1; font-style: italic; font-size: 0.95rem; margin-bottom: 20px; color: #ddd; }
.testi-card h5 { position: relative; z-index: 1; color: var(--gold); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

.partners-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; opacity: 0.7; }
.partner-logo { text-align: center; font-size: 3rem; color: #ccc; transition: 0.3s; }
.partner-logo span { display: block; font-size: 0.8rem; margin-top: 10px; font-weight: bold; }
.partner-logo:hover { color: var(--navy-dark); opacity: 1; }

/* =========================================
   13. SIDE PANEL MODAL
   ========================================= */
.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background: var(--navy-dark);
  z-index: 2000;
  padding: 50px;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
  border-left: 2px solid var(--gold);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
}
.side-panel.active { transform: translateX(0); }

.panel-body { flex: 1; overflow-y: auto; padding-right: 10px; }

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}
.close-btn:hover { color: var(--gold); transform: rotate(90deg); }

.panel-body h2 { font-size: 2rem; margin-bottom: 20px; color: var(--white); }
.panel-body p { font-size: 1.1rem; color: #ccc; line-height: 1.8; margin-bottom: 40px; white-space: pre-line; }

.panel-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}
.panel-overlay.active { opacity: 1; visibility: visible; }

/* =========================================
   14. FOOTER
   ========================================= */
.main-footer {
  background-color: var(--navy-main);
  color: #b0b0b0;
  padding: 60px 0 20px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }

.footer-col h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 5px;
}
.footer-logo { max-width: 180px; margin-bottom: 15px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }

.contact-detail { display: flex; margin-bottom: 15px; }
.contact-detail i { color: var(--gold); margin-right: 12px; margin-top: 5px; }
.branch-block { background: rgba(255, 255, 255, 0.05); padding: 10px; border-radius: 4px; }

.social-links a {
  display: inline-block;
  height: 40px; width: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.social-links a:hover { background-color: var(--gold); color: var(--navy-dark); }

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}
.copyright a { color: var(--gold); }

/* =========================================
   15. PAGE HERO
   ========================================= */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  text-align: center;
}
.page-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 8, 17, 0.7);
  z-index: 1;
}
.hero-text { position: relative; z-index: 2; max-width: 800px; }
.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.breadcrumb { display: flex; justify-content: center; list-style: none; padding: 0; margin: 0; }
.breadcrumb li { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: #ccc; }
.breadcrumb li a { color: #fff; font-weight: 600; transition: 0.3s; }
.breadcrumb li a:hover { color: var(--gold); }
.breadcrumb .separator { margin: 0 15px; color: var(--gold); }
.breadcrumb .current { color: var(--gold); font-weight: 700; }

/* =========================================
   16. CORE VALUES (GLOBAL)
   ========================================= */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }

.value-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  text-align: center;
  transition: 0.3s;
}
.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}
.value-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}
.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--white);
  font-family: var(--font-heading);
}
.value-card p { font-size: 0.95rem; color: #b0b0b0; line-height: 1.6; }

/* =========================================
   17. CONTACT PAGE
   ========================================= */
.contact-info-box { margin-top: 30px; }

.c-item {
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.c-item:last-child { border-bottom: none; }

.c-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-right: 20px;
  margin-top: 5px;
  width: 30px;
  text-align: center;
}
.c-item h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 5px; }
.c-item p, .c-item a { color: #ccc; font-size: 0.95rem; line-height: 1.6; }
.c-item a:hover { color: var(--gold); }

.contact-form-wrapper {
  background: var(--navy-main);
  padding: 40px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--white); font-size: 0.9rem; font-weight: 600; }

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 4px;
  transition: 0.3s;
}
.form-control:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, 0.1); }
textarea.form-control { resize: vertical; }

.alert { padding: 15px; margin-bottom: 20px; border-radius: 4px; font-size: 0.9rem; border-left: 5px solid; }
.alert-success { background-color: #d4edda; color: #155724; border-color: #28a745; }
.alert-danger { background-color: #f8d7da; color: #721c24; border-color: #dc3545; }

.map-section { width: 100%; line-height: 0; filter: grayscale(80%); transition: 0.5s; }
.map-section:hover { filter: grayscale(0%); }

/* =========================================
   18. SERVICES PAGE LAYOUT
   ========================================= */
.services-layout { display: flex; gap: 60px; align-items: flex-start; position: relative; }

.service-sidebar { width: 300px; flex-shrink: 0; position: sticky; top: 100px; align-self: flex-start; }

.sidebar-box {
  background: var(--navy-main);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 4px;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.sidebar-box h3 {
  font-size: 1.2rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.sidebar-box ul li { margin-bottom: 10px; }
.sidebar-box ul li a {
  display: block;
  color: #ccc;
  font-size: 0.95rem;
  padding: 10px;
  border-radius: 4px;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.sidebar-box ul li a i { width: 25px; color: var(--gold); }
.sidebar-box ul li a:hover { background: rgba(197, 160, 89, 0.1); color: var(--white); padding-left: 15px; }

.sidebar-cta {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-content { flex: 1; }
.service-block { padding: 20px 0; scroll-margin-top: 120px; }

.icon-header { display: flex; align-items: center; margin-bottom: 25px; }
.icon-header i { font-size: 2.5rem; color: var(--gold); margin-right: 20px; }
.icon-header h2 { font-size: 2rem; margin: 0; line-height: 1; }

.service-block h4 { margin-top: 25px; margin-bottom: 15px; font-size: 1.1rem; font-weight: 700; }
.service-divider { border: 0; height: 1px; background: rgba(255, 255, 255, 0.1); margin: 50px 0; }

/* =========================================
   19. ABOUT PAGE ELEMENTS
   ========================================= */
.stats-row { display: flex; gap: 30px; margin-top: 30px; }
.stat-item { text-align: center; border-left: 2px solid var(--gold); padding-left: 15px; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; color: #ccc; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.mv-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  text-align: center;
  transition: 0.3s;
}
.mv-card:hover { background: rgba(255, 255, 255, 0.08); }
.mv-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.mv-card h3 { margin-bottom: 15px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.team-card { background: var(--navy-main); border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s; }
.team-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.team-img-holder { width: 100%; height: 300px; overflow: hidden; }
.team-img-holder img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.team-card:hover img { transform: scale(1.05); }
.team-info { padding: 20px; text-align: center; }
.team-role { display: block; color: var(--gold); font-size: 0.85rem; text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }

.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.check-list li { font-size: 1rem; color: #ccc; display: flex; align-items: center; }
.check-list li i { color: var(--gold); margin-right: 10px; font-size: 0.9rem; }

.process-list { margin-top: 30px; }

.proc-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.proc-num { font-size: 2.5rem; font-weight: 700; color: rgba(197, 160, 89, 0.5); line-height: 1; min-width: 60px; }
.proc-content h4 { color: var(--gold); font-size: 1.2rem; margin-bottom: 10px; }
.proc-content p { color: #ccc; font-size: 0.95rem; line-height: 1.6; }

.why-box { background: rgba(255, 255, 255, 0.05); padding: 40px; border: 1px solid var(--gold); }
.why-list li { margin-bottom: 15px; display: flex; align-items: start; gap: 10px; }
.why-list li i { color: var(--gold); margin-top: 5px; }

/* =========================================
   EXECUTIVE TEAM STYLING (2 PARTNERS)
   ========================================= */
.executive-layout {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.executive-layout .team-card {
  flex: 0 1 450px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.executive-layout .team-img-holder { height: 400px; border-bottom: 2px solid var(--gold); }
.executive-layout .team-info { padding: 35px; }
.executive-layout .team-info h3 { font-size: 1.6rem; margin-bottom: 5px; letter-spacing: 1px; }
.executive-layout .small-divider { width: 50px; height: 2px; background: var(--gold); margin: 15px auto; }
.executive-layout .team-role { font-size: 0.9rem; letter-spacing: 2px; }
.executive-layout .team-info p { color: #b0b0b0; font-size: 0.95rem; line-height: 1.7; margin-top: 15px; }

/* =========================================
   20. TEAM PAGE (profile rows)
   ========================================= */
.profile-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
  transition: 0.3s;
}
.profile-row:hover { border-color: var(--gold); background: rgba(255, 255, 255, 0.04); }
.profile-row:last-child { margin-bottom: 0; }

.profile-img-col { flex: 0 0 35%; max-width: 35%; }
.profile-info-col { flex: 1; }

.profile-frame { position: relative; border: 1px solid var(--gold); padding: 15px; border-radius: 4px; }
.profile-frame img { width: 100%; height: auto; display: block; object-fit: cover; border-radius: 2px; filter: grayscale(10%); transition: 0.5s; }
.profile-row:hover .profile-frame img { filter: grayscale(0%); }

.role-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.2);
  color: var(--gold);
  padding: 5px 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 15px;
}
.profile-info-col h3 { font-size: 2rem; color: var(--white); margin-bottom: 10px; }
.reverse-layout { flex-direction: row-reverse; }

/* =========================================
   21. PRELOADER
   ========================================= */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: var(--navy-dark);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.loader-content { text-align: center; max-width: 600px; padding: 20px; }
.loader-logo { width: 120px; margin-bottom: 20px; animation: logoPulse 2s infinite ease-in-out; }

@keyframes logoPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 10px var(--gold)); }
  100% { transform: scale(1); opacity: 0.8; }
}

.loader-text {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeUp 1s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes textFadeUp { to { opacity: 1; transform: translateY(0); } }

.loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  margin: 30px auto 0;
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill { width: 0%; height: 100%; background: var(--gold); animation: loadProgress 2.5s ease-in-out forwards; }
@keyframes loadProgress { 0% { width: 0%; } 100% { width: 100%; } }

.preloader-hidden { opacity: 0; visibility: hidden; }

/* =========================================
   22. FLOATING SUPPORT WIDGET
   ========================================= */
.support-widget { position: fixed; bottom: 30px; right: 30px; z-index: 10000; font-family: var(--font-body); }

.main-support-btn {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  animation: pulseGold 2s infinite;
}
.main-support-btn:hover { transform: scale(1.1); }

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.support-options {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.support-options.active { opacity: 1; visibility: visible; transform: translateY(0); }

.s-opt {
  background: #fff;
  padding: 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.s-opt:hover { transform: translateX(-5px); }

.s-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.s-opt.whatsapp .s-icon { background: #25d366; }
.s-opt.email .s-icon { background: var(--navy-dark); }
.s-opt.call .s-icon { background: var(--gold); color: var(--navy-dark); }

.s-text { display: flex; flex-direction: column; }
.s-text strong { color: var(--navy-dark); font-size: 0.95rem; line-height: 1.2; }
.s-text span { color: #888; font-size: 0.75rem; }

/* =========================================
   23. PRACTICE AREA STYLES (CLEANED)
   ========================================= */

/* --- A. CIVIL LITIGATION (Roadmap) --- */
.roadmap-container { margin-top: 50px; position: relative; padding-left: 20px; }
.roadmap-container::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 45px;
  width: 2px;
  background: rgba(197, 160, 89, 0.3);
}
.roadmap-item { display: flex; gap: 30px; margin-bottom: 40px; position: relative; }

.r-number {
  width: 50px; height: 50px;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  z-index: 2;
}
.r-content h4 { color: var(--gold); margin-bottom: 10px; font-size: 1.2rem; }
.r-content p { color: #ccc; font-size: 0.95rem; }

/* --- B. FAQ Accordion (white background support) --- */
.faq-accordion { width: 100%; }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.1); }

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
}
.faq-btn i { color: var(--gold); transition: 0.3s; }
.faq-btn.active i { transform: rotate(180deg); }

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-content p { padding-bottom: 20px; color: #555; line-height: 1.6; }

/* --- Commercial Law Layout (Premium Grid) --- */
.commercial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 20px; }

.premium-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.premium-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--gold); }

.card-img-top { position: relative; height: 220px; overflow: hidden; }
.card-img-top img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.premium-card:hover .card-img-top img { transform: scale(1.1); }

.card-icon {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 50px; height: 50px;
  background: var(--navy-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 2;
  border: 2px solid #fff;
}

.card-body { padding: 40px 30px; flex: 1; }
.card-body h3 { font-size: 1.3rem; color: var(--navy-dark); margin-bottom: 10px; font-family: var(--font-heading); }
.card-body p { font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 20px; }

.premium-list { list-style: none; padding: 0; margin: 0; }
.premium-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #444;
  font-size: 0.9rem;
  border-bottom: 1px dashed #eee;
  padding-bottom: 8px;
}
.premium-list li:last-child { border-bottom: none; }
.premium-list li::before {
  content: "•";
  color: var(--gold);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
  line-height: 1;
}

/* --- ADR Comparison (Litigation vs Mediation) --- */
.comparison-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 50px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 26, 54, 0.95);
  border-radius: 8px;
  overflow: visible;
}
.comp-col { flex: 1; padding: 40px; text-align: left; }
.comp-col.litigation { border-right: 1px solid rgba(255, 255, 255, 0.1); }

.comp-col h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center; /* desktop look */
}
.comp-col ul li {
  margin-bottom: 15px;
  color: #ccc;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.comp-col ul li i { margin-right: 15px; width: 20px; text-align: center; }

.litigation ul li i { color: #ff6b6b; }
.adr ul li i { color: #51cf66; }

.comp-divider {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--navy-dark);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 4px solid var(--navy-main);
  z-index: 2;
}

/* --- Icon + content alignment blocks (desktop baseline) --- */
.cl-item, .proc-item, .roadmap-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.cl-icon, .proc-num, .r-number {
  width: 60px;
  height: 60px;
  background: var(--navy-main);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.cl-content, .proc-content, .r-content { flex: 1; }

/* Headings in light sections support */
section[style*="background: #fff"] h3,
section[style*="background: #f9f9f9"] h3,
section[style*="background: #fff"] h4,
section[style*="background: #f9f9f9"] h4 {
  color: var(--navy-dark) !important;
}

/* =========================================
   24. BANKING & FINANCE STYLES
   ========================================= */
.vault-intro { display: flex; gap: 50px; align-items: center; color: var(--white); }
.vault-text { flex: 1; }
.vault-text h2 { color: var(--white) !important; }

.vault-stats { flex: 0 0 300px; display: grid; grid-template-columns: 1fr; gap: 20px; }
.v-stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
}
.v-stat-item h3 { font-size: 2.2rem; color: var(--gold) !important; margin-bottom: 5px; }
.v-stat-item span { font-size: 0.85rem; text-transform: uppercase; color: #ccc; letter-spacing: 1px; }

.banking-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 50px; }
.banking-card {
  background: #0a1122;
  padding: 40px 30px;
  border-bottom: 3px solid var(--gold);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: 0.3s;
  height: 100%;
}
.banking-card:hover { transform: translateY(-10px); background: #0d1730; }
.banking-card .b-content h3 { color: var(--white) !important; margin-bottom: 15px; font-size: 1.2rem; }
.banking-card .b-content p { color: #b0b0b0; font-size: 0.95rem; line-height: 1.7; }

.client-list { margin-top: 30px; padding: 0; }
.client-list li { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.client-list .cl-text strong { color: var(--navy-dark); font-size: 1.1rem; display: block; margin-bottom: 5px; }

/* =========================================
   25. EMPLOYMENT & LABOR LAW STYLES
   ========================================= */
.stat-badge-row { display: flex; gap: 15px; margin-top: 30px; flex-wrap: wrap; }

.sb-item {
  background: #f9f9f9;
  padding: 15px 20px;
  border-left: 4px solid var(--navy-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.sb-item strong { display: block; font-size: 1.3rem; color: var(--navy-dark); margin-bottom: 5px; }
.sb-item span { font-size: 0.8rem; text-transform: uppercase; color: #666; letter-spacing: 1px; font-weight: 600; }

.dual-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.ds-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ds-header { padding: 40px 30px; text-align: center; color: #fff; }
.ds-header i { font-size: 2.5rem; margin-bottom: 15px; }
.ds-header h3 { font-size: 1.6rem; color: #fff !important; margin: 0; }

.ds-card.employer .ds-header { background: var(--navy-dark); }
.ds-card.employer ul li i { color: var(--navy-dark); }

.ds-card.employee .ds-header { background: var(--gold); }
.ds-card.employee .ds-header h3,
.ds-card.employee .ds-header i { color: var(--navy-dark) !important; }
.ds-card.employee ul li i { color: var(--gold); }

.ds-body { padding: 40px 30px; flex: 1; }
.ds-body p { font-weight: 600; color: #333; margin-bottom: 25px; text-align: center; }

.ds-body ul { padding: 0; }
.ds-body ul li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.ds-body ul li i { font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.ds-body .text-block { font-size: 0.95rem; color: #555; line-height: 1.5; }
.ds-body .text-block strong { color: #222; }

.checklist-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold);
  padding: 40px;
  border-radius: 8px;
}
.checklist-box h4 {
  color: var(--gold) !important;
  font-size: 1.3rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.checklist-box ul { padding: 0; }
.checklist-box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  color: #e0e0e0;
}
.checklist-box ul li:last-child { border-bottom: none; }
.checklist-box ul li i { color: #51cf66; font-size: 1.1rem; }

/* =========================================
   26. FIX FOR OVERSIZED IMAGES
   ========================================= */
.commercial-img-holder {
  width: 100%;
  height: 450px;
  max-width: 550px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
}
.commercial-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   FIXED: headings + icons + text align together
   ========================================================== */

/* --- Tablets (max-width: 991px) --- */
@media (max-width: 991px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { gap: 15px; }

  .commercial-grid { grid-template-columns: repeat(2, 1fr); }

  .vault-intro { flex-direction: column; text-align: center; }
  .vault-stats { width: 100%; grid-template-columns: repeat(3, 1fr); }

  .services-layout { flex-direction: column; gap: 35px; }
  .service-sidebar { width: 100%; position: relative; top: auto; }

  .footer-row { grid-template-columns: repeat(2, 1fr); }

  /* Tablet readability alignment (left align content blocks) */
  .service-card,
  .value-card,
  .why-card,
  .testi-card,
  .mv-card { text-align: left; }

  .icon-header { justify-content: flex-start; }
}

/* --- Mobile Devices (max-width: 768px) --- */
@media (max-width: 768px) {
  .mv-grid,
  .values-grid,
  .team-grid,
  .commercial-grid { grid-template-columns: 1fr !important; }

  .card-img-top { height: 200px; }

  .stats-row { flex-direction: column; gap: 20px; }
  .stat-item {
    border-left: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    padding-left: 0;
    text-align: left;
  }

  .check-list { grid-template-columns: 1fr; }

  /* ADR comparison stacking */
  .comparison-wrapper { flex-direction: column; }
  .comp-col.litigation { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; }
  .comp-col.adr { padding-top: 50px; }
  .comp-divider { position: relative; top: auto; left: auto; transform: none; margin: -25px auto; z-index: 10; }
  .comp-col h3 { justify-content: flex-start; }

  /* Executive layout */
  .executive-layout { flex-direction: column; align-items: center; }
  .executive-layout .team-card { width: 100%; max-width: 500px; }
  .executive-layout .team-img-holder { height: 320px; }

  /* Profile rows stack */
  .profile-row { flex-direction: column; gap: 25px; padding: 22px; }
  .profile-img-col { max-width: 100%; flex: 0 0 auto; }

  /* Vault + banking */
  .vault-stats { grid-template-columns: 1fr; }
  .banking-grid { grid-template-columns: 1fr; }

  /* Employment */
  .dual-service-grid { grid-template-columns: 1fr; }
  .stat-badge-row { flex-direction: column; }
  .sb-item { border-left: none; border-top: 4px solid var(--navy-dark); }

  /* Image fix */
  .commercial-img-holder { height: 300px; max-width: 100%; }

  /* Footer becomes single column */
  .footer-row { grid-template-columns: 1fr; }

  /* ======================================================
     CRITICAL MOBILE ALIGNMENT FIX
     icons + headings + text aligned left as one clean block
     Applies to: .cl-item .proc-item .roadmap-item and similar
     ====================================================== */
  .cl-item,
  .proc-item,
  .roadmap-item,
  .client-list li {
    display: grid !important;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
    row-gap: 6px;
    align-items: start !important;
    text-align: left !important;
  }

  .cl-icon,
  .proc-num,
  .r-number,
  .client-list li i {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.05rem !important;
    margin: 0 !important;
  }

  .cl-content h4,
  .proc-content h4,
  .r-content h4,
  .client-list .cl-text strong {
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
    text-align: left !important;
  }

  .cl-content p,
  .proc-content p,
  .r-content p,
  .client-list .cl-text {
    grid-column: 2;
    grid-row: 2;
    margin: 0 !important;
    text-align: left !important;
  }
}

/* --- Small phones (max-width: 420px) --- */
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .service-card, .value-card, .why-card, .testi-card, .mv-card { padding: 24px 18px; }
  .hero-text h1 { font-size: 2.1rem; }
}
/* =========================================
   PAGE HERO TYPOGRAPHY FIX (ALL INNER PAGES)
   Paste at the VERY BOTTOM of responsive.css
   Goal: Smaller, cleaner hero fonts so long titles fit
   ========================================= */

/* Base (desktop) – make hero text a bit more flexible */
.page-hero .hero-text{
  max-width: 900px;
  padding: 0 18px;
}

.page-hero .hero-text h1{
  /* prevents huge titles from breaking the layout */
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Hero description paragraph (the line under the title) */
.page-hero .hero-text p,
.page-hero .hero-text .hero-subtitle,
.page-hero .hero-text .lead{
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
  color: #e0e0e0;
}

/* Breadcrumb: keep it tidy and wrap nicely */
.page-hero .breadcrumb{
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 8px;
}

/* -------------------------------
   Tablet (<= 991px)
-------------------------------- */
@media (max-width: 991px){
  .page-hero{
    min-height: 320px;
    height: auto;
    padding: 90px 0 55px; /* gives room under the fixed header */
  }

  .page-hero .hero-text{
    max-width: 820px;
  }

  .page-hero .hero-text h1{
    font-size: clamp(1.9rem, 5vw, 2.6rem);
    line-height: 1.15;
  }

  .page-hero .hero-text p,
  .page-hero .hero-text .hero-subtitle,
  .page-hero .hero-text .lead{
    font-size: 1.03rem;
    line-height: 1.7;
  }
}

/* -------------------------------
   Mobile (<= 768px)
-------------------------------- */
@media (max-width: 768px){
  .page-hero{
    min-height: 280px;
    padding: 85px 0 45px;
    text-align: left;              /* reads better on mobile */
    align-items: flex-end;         /* keeps content away from top */
  }

  .page-hero .hero-text{
    max-width: 100%;
    padding: 0 16px;
  }

  .page-hero .hero-text h1{
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .page-hero .hero-text p,
  .page-hero .hero-text .hero-subtitle,
  .page-hero .hero-text .lead{
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;                     /* left aligned */
    max-width: 100%;
  }

  .page-hero .breadcrumb{
    justify-content: flex-start;
  }

  .page-hero .breadcrumb li{
    font-size: 0.82rem;
    letter-spacing: 0.8px;
  }

  .page-hero .breadcrumb .separator{
    margin: 0 6px;
  }
}

/* -------------------------------
   Small phones (<= 420px)
-------------------------------- */
@media (max-width: 420px){
  .page-hero .hero-text h1{
    font-size: 1.65rem;
  }
  .page-hero .hero-text p,
  .page-hero .hero-text .hero-subtitle,
  .page-hero .hero-text .lead{
    font-size: 0.95rem;
  }
}
