/*
The Hurt Boss WordPress Theme Styles
Based on original design but adapted for WordPress structure
*/

/* CSS Variables from original design - UPDATED TO MATCH EXACT COLORS */
:root {
  --color_1: rgba(157, 207, 185, 1);  /* Mint green */
  --color_2: rgba(37, 56, 113, 1);     /* Navy blue */
  --color_3: rgba(247, 237, 80, 1);    /* Yellow */
  --color_4: rgba(250, 250, 250, 1);   /* Light gray */
  --color_5: rgba(189, 195, 199, 1);   /* Medium gray */
  --color_6: rgba(0, 0, 0, 0);         /* Transparent */
  --color_7: rgba(0, 0, 0, 1);         /* Black */
  --color_8: rgba(255, 255, 255, 1);   /* White */
  
  /* Legacy variables for compatibility */
  --primary-color: var(--color_2);
  --secondary-color: var(--color_1);
  --accent-color: var(--color_3);
  --text-dark: var(--color_7);
  --text-light: var(--color_5);
  --background-light: var(--color_4);
  --white: var(--color_8);
  --border-color: var(--color_5);
}

/* Font Face Declarations - Match original */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;700&display=swap');
}

/* Base Typography */
body {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Typography utilities matching original */
.font-size-60, .size-60 { font-size: 60px !important; }
.font-size-36, .size-36 { font-size: 36px !important; }
.font-size-24, .size-24 { font-size: 24px !important; }
.font-size-22, .size-22 { font-size: 22px !important; }
.font-size-20, .size-20 { font-size: 20px !important; }
.font-size-18, .size-18 { font-size: 18px !important; }

/* Layout System - Match original dmRespRow/dmRespCol */
.container {
/*   max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative; */
}

/* Large screen container - matches original 1200px constraint */
@media screen and (min-width: 1200px) {
  .container.rows-1200 {
    max-width: 1200px;
  }
}

/* Responsive row and column system - Match original desktop.css */
.dmRespRow {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  position: relative;
  margin: 0 auto;
}

.dmRespRow .dmRespColsWrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  max-width: 960px;
  position: relative;
  margin: 0 auto;
}

/* Large screen row system - matches original 1200px constraint */
@media screen and (min-width: 1200px) {
  .rows-1200 .dmRespRow:not(.fullBleedMode) .dmRespColsWrapper {
    max-width: 1200px;
  }
  
  .rows-1200 .dmRespRow {
    max-width: 1200px;
  }
}

.dmRespCol {
  flex: 1;
  padding: 0 15px;
}

/* Responsive breakpoints */
@media (max-width: 767px) {
  .dmRespRow .dmRespColsWrapper {
    flex-direction: column;
  }
}

/* Utility classes */
.text-align-center { text-align: center; }
.align-center { margin-left: auto; margin-right: auto; }
.fullBleedMode { padding-left: 0 !important; padding-right: 0 !important; }
.noPaddingRight { padding-right: 0 !important; }
.noPaddingLeft { padding-left: 0 !important; }
.overflow-hidden { overflow: hidden !important; }

/* Header Styles - Match original dmHeader */
.site-header,
#masthead,
header.site-header {
  background: var(--color_2) !important; /* Navy blue background */
  background-color: var(--color_2) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: height 0.2s ease, background-color 0.2s ease, padding 0.2s ease;
}

.site-header.dmHeader {
  /* Additional header styling for compatibility */
  text-align: left;
  background: var(--color_2); /* Navy blue background */
  color: var(--color_8); /* White text */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-branding img {
  max-height: 60px;
  width: auto;
}

.site-title {
  margin: 0;
  font-size: 1.8rem;
  color: var(--color_8); /* White text on blue background */
}

.site-title a {
  text-decoration: none;
  color: inherit;
}

/* Sticky header behavior */
.site-header[data-scrollable-target] {
  transition: height 0.2s ease, background-color 0.2s ease, padding 0.2s ease, width 0.2s ease, margin 0.2s ease, top 0.2s ease, transform 0.2s ease;
}

.site-header[data-scrollable-target].scroll-responder_set {
  height: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  min-height: auto !important;
}

/* Navigation Styles - Match original unifiednav */
.main-navigation {
  position: relative;
}

.main-navigation.unifiednav {
  /* Main navigation wrapper */
}

.unifiednav__container {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--color_8); /* White hamburger lines on blue background */
  transition: all 0.3s ease;
}

/* Desktop Menu */
.navigation-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.navigation-menu li {
  position: relative;
}

.navigation-menu a,
.unifiednav__container a,
.site-header .navigation-menu a,
.main-navigation a {
  text-decoration: none;
  color: var(--color_8) !important; /* White links */
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: block;
}

.navigation-menu a:hover,
.unifiednav__container a:hover,
.site-header .navigation-menu a:hover,
.main-navigation a:hover {
  color: var(--color_3) !important; /* Yellow on hover */
}

/* Active/Current menu item */
.navigation-menu .current-menu-item a,
.navigation-menu .current-menu-ancestor a {
  color: var(--color_3); /* Yellow for active items */
  font-weight: 700;
}

/* Dropdown menus */
.navigation-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color_8);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 200px;
}

.navigation-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navigation-menu .sub-menu a {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--color_4);
}

.navigation-menu .sub-menu a:last-child {
  border-bottom: none;
}

/* Hamburger drawer for mobile */
#hamburger-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color_8);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}

#hamburger-drawer.active {
  left: 0;
}

.hamburger-drawer-content {
  padding: 2rem 1rem;
}

.mobile-navigation-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-navigation-menu li {
  border-bottom: 1px solid var(--color_4);
}

.mobile-navigation-menu a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--color_7);
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-navigation-menu a:hover {
  color: var(--color_2);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .menu-container {
    display: none;
  }
  
  .navigation-menu {
    display: none;
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary {
  background: var(--accent-color);
  color: var(--text-dark);
  border-color: var(--accent-color);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Block Editor Content Styling */
.entry-content {
  margin-bottom: 2rem;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

/* Post/Page specific styling */
.entry-header {
  margin-bottom: 2rem;
}

.entry-title {
  color: var(--color_2);
  font-size: var(--wp--preset--font-size--extra-large);
  font-weight: 700;
  margin-bottom: 1rem;
}

.entry-meta {
  color: var(--color_5);
  font-size: 14px;
  margin-bottom: 1rem;
}

.entry-meta span {
  margin-right: 1rem;
}

.entry-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color_4);
}

/* Post navigation */
.post-navigation {
  margin-top: 2rem;
}

.post-navigation a {
  color: var(--color_2);
  text-decoration: none;
  font-weight: 600;
}

.post-navigation a:hover {
  color: var(--color_1);
}

/* Page content container */
.site-main {
  padding: 2rem 0;
}

.site-main .container {
/*   max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative; */
}

/* Large screen main content - matches original 1200px constraint */
@media screen and (min-width: 1200px) {
  .site-main .container.rows-1200 {
    max-width: 1200px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .site-main {
    padding: 1rem 0;
  }
  
  .entry-title {
    font-size: var(--wp--preset--font-size--large);
  }
}

@media (max-width: 767px) {
  .site-main .container {
    padding: 0 15px;
  }
  
  .entry-title {
    font-size: var(--wp--preset--font-size--medium);
  }
}

/* Button styling that matches original dmButtonLink */
.dmButtonLink,
.btn-original {
  display: inline-block;
  background: var(--color_1);
  color: var(--color_7);
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.dmButtonLink:hover,
.btn-original:hover {
  background: var(--color_2);
  color: var(--color_8);
  transform: translateY(-2px);
}

/* Full bleed sections - Match original desktop.css */
.fullBleedMode {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fullBleedMode > .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
}

.fullBleedMode > .dmRespColsWrapper {
  width: 100% !important;
  max-width: 100% !important;
}

/* Large screen full bleed container */
@media screen and (min-width: 1200px) {
  .fullBleedMode > .container.rows-1200 {
    max-width: 1200px;
  }
}

/* Global full bleed mode overrides */
.globalFullBleedMode .dmRespRow:not(.fullBleedChanged) .dmRespColsWrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.globalFullBleedMode .dmRespRow:not(.fullBleedChanged) {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Section Styles */
section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-intro-section {
  background: var(--background-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.highlight-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-title a {
  text-decoration: none;
  color: inherit;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.service-link:hover {
  text-decoration: underline;
}

.arrow {
  margin-left: 0.5rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-image {
  margin-bottom: 1.5rem;
}

.member-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.member-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
}

.member-name {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-name a {
  text-decoration: none;
  color: inherit;
}

.member-title {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Footer Styles - Match original dmFooter */
.site-footer {
  background: var(--color_2);
  color: var(--color_4);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.site-footer.dmFooter {
  /* Additional footer styling for compatibility */
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-widget-title {
  color: var(--color_1);
  font-size: 24px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-contact-info {
  color: var(--color_4);
  font-size: 18px;
  margin-bottom: 1rem;
}

.footer-contact-info a {
  color: var(--color_4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--color_3);
}

.footer-contact-info strong {
  color: var(--color_1);
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-navigation-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-navigation-menu li {
  margin-bottom: 0.5rem;
}

.footer-navigation-menu a {
  color: var(--color_4);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-navigation-menu a:hover {
  color: var(--color_3);
}

.footer-bottom {
  border-top: 1px solid rgba(189, 195, 199, 0.3);
  padding-top: 1rem;
  text-align: center;
}

.copyright {
  color: var(--color_4);
  font-size: 14px;
}

.copyright p {
  margin: 0;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-content .dmRespColsWrapper {
    flex-direction: column;
  }
  
  .footer-content .dmRespCol {
    margin-bottom: 2rem;
  }
  
  .footer-widget-title {
    font-size: 20px;
  }
  
  .footer-contact-info {
    font-size: 16px;
  }
}

/* CTA Section */
.cta-contact-section {
  background: var(--primary-color);
  color: var(--white);
  position: relative;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-features {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  color: var(--accent-color);
  font-weight: bold;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
}

.contact-method {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.contact-method h3 {
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Contact Form */
.contact-form-section {
  background: var(--background-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 14px;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: fit-content;
}

.info-section {
  margin-bottom: 2rem;
}

.info-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-item {
  margin-bottom: 1rem;
}

.info-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  #primary-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem;
    gap: 0;
  }
  
  #primary-menu.menu-open {
    display: flex;
  }
  
  #primary-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content,
  .cta-content {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons,
  .cta-buttons {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===== EXTRACTED ORIGINAL CSS STYLES ===== */

/* Responsive Grid System Extensions */
.dmRespRowsWrapper {
  max-width: 960px;
  margin: 0 auto;
}

.dmRespRow.dmRespRowNoPadding {
  padding: 0;
}

/* Grid System - Large Screen */
.dmRespCol.large-1 { flex: 0 0 8.333%; max-width: 8.333%; }
.dmRespCol.large-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.dmRespCol.large-3 { flex: 0 0 25%; max-width: 25%; }
.dmRespCol.large-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.dmRespCol.large-5 { flex: 0 0 41.666%; max-width: 41.666%; }
.dmRespCol.large-6 { flex: 0 0 50%; max-width: 50%; }
.dmRespCol.large-7 { flex: 0 0 58.333%; max-width: 58.333%; }
.dmRespCol.large-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.dmRespCol.large-9 { flex: 0 0 75%; max-width: 75%; }
.dmRespCol.large-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.dmRespCol.large-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.dmRespCol.large-12 { flex: 0 0 100%; max-width: 100%; }

/* Grid System - Medium Screen */
@media (max-width: 1024px) {
  .dmRespCol.medium-1 { flex: 0 0 8.333%; max-width: 8.333%; }
  .dmRespCol.medium-2 { flex: 0 0 16.666%; max-width: 16.666%; }
  .dmRespCol.medium-3 { flex: 0 0 25%; max-width: 25%; }
  .dmRespCol.medium-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .dmRespCol.medium-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .dmRespCol.medium-6 { flex: 0 0 50%; max-width: 50%; }
  .dmRespCol.medium-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .dmRespCol.medium-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .dmRespCol.medium-9 { flex: 0 0 75%; max-width: 75%; }
  .dmRespCol.medium-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .dmRespCol.medium-11 { flex: 0 0 91.666%; max-width: 91.666%; }
  .dmRespCol.medium-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Grid System - Small Screen */
@media (max-width: 767px) {
  .dmRespCol.small-1 { flex: 0 0 8.333%; max-width: 8.333%; }
  .dmRespCol.small-2 { flex: 0 0 16.666%; max-width: 16.666%; }
  .dmRespCol.small-3 { flex: 0 0 25%; max-width: 25%; }
  .dmRespCol.small-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .dmRespCol.small-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .dmRespCol.small-6 { flex: 0 0 50%; max-width: 50%; }
  .dmRespCol.small-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .dmRespCol.small-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .dmRespCol.small-9 { flex: 0 0 75%; max-width: 75%; }
  .dmRespCol.small-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .dmRespCol.small-11 { flex: 0 0 91.666%; max-width: 91.666%; }
  .dmRespCol.small-12 { flex: 0 0 100%; max-width: 100%; }
  
  .dmRespRow .dmRespColsWrapper {
    flex-direction: column;
  }
  
  .dmRespCol {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Responsive Header Visibility */
.showOnLarge {
  display: block;
}

.showOnMedium {
  display: none;
}

/* Tablet/Mobile responsive */
@media (max-width: 1024px) {
  .showOnLarge {
    display: none;
  }
  
  .showOnMedium {
    display: block;
  }
}

/* Font Size Classes from Original */
.font-size-24 {
  font-size: 24px !important;
}

.m-font-size-19 {
  font-size: 19px !important;
}

@media (max-width: 767px) {
  .m-font-size-19 {
    font-size: 19px !important;
  }
  
  .font-size-24 {
    font-size: 19px !important;
  }
}

/* Social Media Hub Styling */
.dmSocialHub {
  margin: 1rem 0;
}

.socialHubWrapper {
  display: inline-block;
}

.socialHubInnerDiv {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.socialHubIcon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--color_1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: var(--color_7);
  transition: all 0.3s ease;
  font-size: 20px;
}

.socialHubIcon:hover {
  background: var(--color_2);
  color: var(--color_8);
  transform: translateY(-2px);
}

/* Social Media Platform Icons */
.dmSocialFacebook::before {
  content: '\\f09a';
  font-family: 'FontAwesome', sans-serif;
}

.dmSocialInstagram::before {
  content: '\\f16d';
  font-family: 'FontAwesome', sans-serif;
}

.dmSocialLinkedin::before {
  content: '\\f0e1';
  font-family: 'FontAwesome', sans-serif;
}

/* Custom Logo Responsive Sizing */
.custom-logo {
  max-width: 266px;
  height: auto;
}

.mobile-logo {
  max-width: 200px;
  height: auto;
}

/* Call-to-Action Button Styling */
.cta-phone-button {
  display: inline-block;
  background: var(--color_3); /* Yellow background */
  color: var(--color_2); /* Blue text */
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px; /* More rounded */
  transition: all 0.3s ease;
  font-size: 16px;
  border: 2px solid var(--color_3);
}

.cta-phone-button:hover {
  background: var(--color_8); /* White on hover */
  color: var(--color_2); /* Keep blue text */
  border-color: var(--color_3); /* Keep yellow border */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Header CTA Styling */
.header-cta {
  text-align: right;
}

@media (max-width: 1024px) {
  .header-cta {
    text-align: center;
    margin-top: 1rem;
  }
}

/* ===== FORCE HEADER STYLING OVERRIDE ===== */
/* These rules use !important to override any conflicting styles */

/* Force blue header background */
body .site-header,
body #masthead,
body header.site-header,
body .dmHeader {
  background: #253871 !important;
  background-color: #253871 !important;
}

/* Force white navigation links */
body .site-header a,
body .main-navigation a,
body .navigation-menu a,
body .unifiednav__container a,
body .site-header .nav-item-text {
  color: #ffffff !important;
}

/* Force yellow hover state */
body .site-header a:hover,
body .main-navigation a:hover,
body .navigation-menu a:hover,
body .unifiednav__container a:hover,
body .site-header .nav-item-text:hover {
  color: #f7ed50 !important;
}

/* Force yellow active state */
body .site-header .current-menu-item a,
body .site-header .current-menu-ancestor a,
body .main-navigation .current-menu-item a,
body .navigation-menu .current-menu-item a {
  color: #f7ed50 !important;
}

/* Force yellow CTA button */
body .cta-phone-button {
  background: #f7ed50 !important;
  background-color: #f7ed50 !important;
  color: #253871 !important;
  border-radius: 25px !important;
  border: 2px solid #f7ed50 !important;
}

body .cta-phone-button:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #253871 !important;
  border-color: #f7ed50 !important;
}

/* Force white site title */
body .site-title,
body .site-title a {
  color: #ffffff !important;
}

/* Force white hamburger lines */
body .hamburger-line {
  background: #ffffff !important;
  background-color: #ffffff !important;
}