/* ============================================
   FONT FACE DECLARATIONS
   ============================================ */

/* Cormorant Garamond Regular (H1) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}

/* Cormorant Garamond Bold (H1) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2');
}

/* Cormorant Garamond Italic (H2) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}

/* Noto Sans Bengali Regular (Body) */
@font-face {
  font-family: 'Noto Sans Bengali';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/noto-sans-bengali-v32-latin-regular.woff2') format('woff2');
}

/* Noto Sans Bengali 600 (H3/Subheaders) */
@font-face {
  font-family: 'Noto Sans Bengali';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/noto-sans-bengali-v32-latin-600.woff2') format('woff2');
}

/* Caveat Regular (Accent) */
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/caveat-v23-latin-regular.woff2') format('woff2');
}

/* Righteous Regular (H1/Headlines) */
@font-face {
  font-family: 'Righteous';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/righteous-v18-latin-regular.woff2') format('woff2');
}

/* Space Grotesk 600 (H2) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-v22-latin-600.woff2') format('woff2');
}

/* Space Grotesk 700 (H1/Headlines) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk-v22-latin-700.woff2') format('woff2');
}

/* Red Hat Display Regular (Body) */
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/red-hat-display-v21-latin-regular.woff2') format('woff2');
}

/* Red Hat Display Medium (500) */
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/red-hat-display-v21-latin-500.woff2') format('woff2');
}

/* Red Hat Text Semibold (600 - for H3) */
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/red-hat-text-v19-latin-600.woff2') format('woff2');
}

/* Red Hat Display Bold (Buttons/CTAs/H2) */
@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/red-hat-display-v21-latin-700.woff2') format('woff2');
}

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  --navy: #1B1F2F;
  --navy-light: #2A3142;
  --cream: #F4E7CE;
  --cream-light: #FAF6EE;
  --red: #A4342A;
  --red-dark: #8B2C23;
  --brass: #C99846;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --gray: #666666;
  --gray-light: #E8E8E8;
  --font-heading: 'Righteous', sans-serif;
  --font-body: 'Red Hat Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Caveat', cursive, sans-serif;
  --header-height: 80px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--navy); background: var(--white); overflow-x: hidden; width: 100%; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Global Typography */
h1 { font-family: var(--font-heading); font-weight: 400; font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1.2; }
h2 { font-family: var(--font-body); font-weight: 700; font-size: clamp(2rem, 3.5vw, 2.5rem); line-height: 1.3; }
h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.5rem; line-height: 1.4; }
p, li { font-family: var(--font-body); font-weight: 400; font-size: 1rem; line-height: 1.7; }
small { font-family: var(--font-body); font-weight: 400; font-size: 0.875rem; }

/* FORCE LEFT ALIGNMENT FOR ALL BANNERS */
.page-banner,
.page-banner *,
.page-banner .container,
.page-banner-content,
.page-banner-content *,
.page-banner h1,
.page-banner .page-banner-label,
.page-banner .breadcrumb,
.page-hero,
.page-hero *,
.page-hero .container,
.page-hero h1,
.page-hero .h2-section-title,
.page-hero .body-text-section,
.page-hero .breadcrumb,
.service-hero,
.service-hero *,
.service-hero .container,
.service-hero h1,
.service-hero h2,
.service-hero p,
.area-hero,
.area-hero *,
.area-hero .container,
.area-hero h1,
.area-hero .breadcrumb {
  text-align: left !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary { 
  background: var(--red); 
  color: var(--white); 
  box-shadow: 0 4px 20px rgba(180,36,48,0.4), 0 2px 8px rgba(0,0,0,0.3);
}
.btn-primary:hover { 
  background: var(--red-dark); 
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 30px rgba(180,36,48,0.6), 0 3px 12px rgba(0,0,0,0.4);
}
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-light); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* Hero Info Bar */
#top-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 15px;
}
.top-bar-item svg {
  width: 16px;
  height: 16px;
  color: var(--brass);
  flex-shrink: 0;
}
.top-bar-item:hover {
  color: var(--white);
}
.top-bar-separator {
  color: var(--brass);
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 768px) {
  .top-bar-item { font-size: 13px; }
  .top-bar-item svg { width: 14px; height: 14px; }
  .top-bar-inner { gap: 12px; padding: 0 16px; }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--navy);
  z-index: 1000;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-family: var(--font-heading); 
  font-size: 22px; 
  color: var(--white); 
}
.logo-img { 
  height: 65px; 
  width: auto; 
  filter: brightness(0) invert(1);
}
.logo-text { 
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  white-space: nowrap;
}
.logo-text span { color: var(--brass); }

@media (max-width: 600px) {
  .logo-img { height: 55px; }
  .logo-text { font-size: 20px; }
  .logo { gap: 10px; }
}

.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { 
  height: 80px; 
  width: auto; 
  filter: brightness(0) invert(1);
}
.nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 40px; }
.nav-link { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; transition: color 0.2s; letter-spacing: 0.3px; }
.nav-link:hover { color: var(--white); }
.nav-link:focus, .nav-link:active { color: var(--brass); outline: 2px solid var(--brass); outline-offset: 2px; }
a:focus { outline: 2px solid var(--brass); outline-offset: 2px; }
.dropdown-menu a:focus, .dropdown-menu a:active { background: var(--navy-light); color: var(--brass); outline: none; }
.header-cta { display: flex; align-items: center; }
.header-phone { color: var(--white); font-weight: 600; font-size: 15px; }
.header-phone:hover { color: var(--brass); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--cream);
    flex-direction: column;
    padding: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav.active { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 0; width: 100%; padding: 20px 0; }
  .nav-link { 
    font-size: 18px; 
    color: var(--navy); 
    display: block; 
    padding: 20px 30px; 
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-link:hover { color: var(--red); background: rgba(0,0,0,0.02); }
  .mobile-toggle { display: block; }
  .header-phone { display: none; }
  .header-cta { display: none; }
}

#hero {
  position: relative;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: calc(var(--header-height) + 40px) 0 60px;
  overflow: hidden;
}

@media (min-width: 481px) and (max-width: 768px) {
  #hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 50px) 0 70px;
  }
}

@media (min-width: 769px) {
  #hero {
    min-height: 85vh;
    padding: var(--header-height) 0 80px;
  }
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-bg.active { opacity: 1; }

@media (min-width: 769px) {
  .hero-bg[data-slide-text="Bulk Business Printing"],
  .hero-bg[data-slide-text="Screen Printing"],
  .hero-bg[data-slide-text="Custom Shirt Printing"] {
    display: none !important;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(27,31,47,0.85) 0%, rgba(27,31,47,0.70) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 60px 24px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--brass);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border-left: 3px solid var(--brass);
  padding-left: 12px;
  filter: brightness(1.3);
}
.h1-hero-title {
  font-family: 'Righteous', var(--font-heading);
  font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(255,255,255,0.4), 0 0 15px rgba(255,255,255,0.3), 0 4px 20px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
}
.h1-hero-title-line2 { color: var(--brass); display: block; }
.hero-tagline {
  font-family: 'Red Hat Display', var(--font-body);
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2rem);
  font-weight: 500;
  color: var(--white);
  margin-top: clamp(28px, 4vw, 48px);
  margin-bottom: 24px;
  display: block;
  width: 100%;
  white-space: nowrap;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
}
.hero-tagline-static { color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-typing { 
  border-right: 2px solid var(--brass); 
  padding-right: 4px; 
  color: var(--brass); 
  font-weight: 600; 
  display: inline;
  text-shadow: 0 0 20px rgba(201,152,70,0.6), 0 0 10px rgba(201,152,70,0.4), 0 2px 6px rgba(0,0,0,0.4);
}
.body-text-hero {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-address { 
  font-size: 14px; 
  color: rgba(255,255,255,0.6); 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  #hero {
    min-height: 85vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
  }
  .hero-content {
    padding: 20px 20px 40px;
    margin-top: 0;
  }
  .h1-hero-title {
    margin-bottom: 20px;
  }
  .hero-tagline {
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .body-text-hero {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
  .hero-address {
    font-size: 13px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 90vh;
    padding: calc(var(--header-height) + 30px) 0 50px;
    align-items: center;
  }
  .hero-content {
    padding: 30px 16px;
    margin-top: -60px;
  }
  .h1-hero-title {
    margin-bottom: 16px;
  }
  .hero-tagline {
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .body-text-hero {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-cta {
    margin-bottom: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    max-width: 700px;
    padding: 50px 32px;
  }
}

#stats {
  background: var(--navy);
  padding: 60px 0;
  border-bottom: none;
}
.stats-header {
  text-align: center;
  margin-bottom: 48px;
}
.stats-eyebrow {
  color: var(--brass);
  filter: brightness(1.3);
}
.stats-title {
  color: var(--white) !important;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-value {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: none;
  letter-spacing: 0px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-value { font-size: 32px; }
}
.stats-cta {
  text-align: center;
  margin-top: 48px;
}

#process {
  padding: 100px 0;
  background: var(--cream-light);
}
.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--brass);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  filter: brightness(1.3);
}
.h2-section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--black);
  margin-bottom: 16px;
  font-weight: 400;
}
.body-text-section {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.process-step {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  position: relative;
}
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy) !important;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 24px;
}
.process-step h3 {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.process-step p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
}

#catalog {
  padding: 100px 0;
  background: var(--white);
}
.catalog-header {
  text-align: center;
  margin-bottom: 60px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.shop-item {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
}
.shop-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
}
.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
  border-radius: 12px;
}
.shop-img .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.shop-item:hover .img-hover { opacity: 1; }
.shop-item:hover .img-primary { transform: scale(1.05); }

.shop-img-wrapper {
  position: relative;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.shop-item:hover .gallery-nav {
  opacity: 1;
}
.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--brass);
}
.gallery-prev {
  left: 8px;
}
.gallery-next {
  right: 8px;
}

.rotating-gallery .gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.rotating-gallery .gallery-img:first-child {
  position: relative;
}
.rotating-gallery .gallery-img.active {
  opacity: 1;
}
.shop-info {
  padding: 20px;
  text-align: center;
}
.shop-info h3 {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 600;
}
.shop-price {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  background: var(--brass);
  padding: 8px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 12px;
}
.shop-price:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

#about-section {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
}
.about-content .section-eyebrow { color: var(--brass); filter: brightness(1.3); }
.about-content .h2-section-title { color: var(--white); }
.about-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-list {
  margin: 30px 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  padding: 10px 0;
}
.about-list svg {
  width: 20px;
  height: 20px;
  color: var(--brass);
  flex-shrink: 0;
}
.about-content .btn {
  display: inline-block;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

#gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}
.gallery-item:hover img { transform: scale(1.1); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

#quote-form {
  padding: 100px 0;
  background: #f7f7f7;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.quote-info .section-eyebrow { color: var(--brass); filter: brightness(1.3); }
.quote-info .h2-section-title { margin-bottom: 20px; color: var(--navy); }
.quote-info > p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.8;
}
.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--black);
}
.quote-benefit svg {
  width: 20px;
  height: 20px;
  color: var(--brass);
  flex-shrink: 0;
}
.contact-info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-size: 15px;
  color: var(--black);
  transition: all 0.3s ease;
}
.contact-info-box:hover {
  background: var(--cream-light);
  border-color: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 152, 70, 0.2);
}
.contact-info-box svg {
  width: 24px;
  height: 24px;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-box strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--navy);
}
.contact-link {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}
.contact-link:hover {
  color: var(--brass);
  text-decoration: underline;
  transform: translateX(4px);
}
.quote-form-box {
  background: var(--navy);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.form-title {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}
.form-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700 !important;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 2px solid var(--white) !important;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brass) !important;
}
.form-textarea { min-height: 120px; resize: vertical; }
.submit-btn { width: 100%; margin-top: 8px; }
.form-email-link {
  color: var(--white);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.form-email-link:hover {
  color: var(--brass);
}
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-form-box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

.product-options { display: none; margin-bottom: 20px; padding: 20px; background: var(--cream-light); }
.product-options.active { display: block; }
.option-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.placement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.placement-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.placement-option:hover { border-color: var(--brass); }
.placement-option.selected { border-color: var(--navy); background: var(--cream); }
.placement-option svg { color: var(--navy); }
.placement-option span { font-size: 12px; color: var(--gray); }
.file-upload {
  border: 2px dashed var(--gray-light);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload:hover { border-color: var(--brass); }
.file-upload input { display: none; }
.file-upload-text { font-size: 14px; color: var(--gray); }
.file-upload-text strong { color: var(--navy); }

#areas {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
}
.areas-header {
  text-align: center;
  margin-bottom: 40px;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.area-link {
  padding: 12px 24px;
  background: var(--cream-light);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s;
  border: 2px solid var(--navy);
}
.area-link:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}
#cta .h2-section-title { color: var(--white); margin-bottom: 16px; }
#cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

#footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 16px; line-height: 1.7; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--brass);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.about-hero {
  background: linear-gradient(rgba(27, 31, 47, 0.7), rgba(27, 31, 47, 0.7)), url('/assets/images/484561249_667877709098382_900010667679803946_n.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 200px 0 100px;
  text-align: left !important;
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
.about-hero .container {
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
}
.about-hero .hero-label {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--brass);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  margin-bottom: 16px;
  align-self: flex-start !important;
}
.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: left !important;
  width: 100%;
}
.about-hero .body-text-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 0 24px 0;
  text-align: left !important;
}
.about-hero .breadcrumb {
  margin-top: 24px;
  margin-bottom: 0;
  justify-content: flex-start !important;
  text-align: left !important;
}
.about-story { padding: 80px 0; background: var(--white); }
.about-story .story-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about-story .story-content { text-align: left; }
.about-story h2 { font-family: var(--font-heading); font-style: normal; font-size: 32px; color: var(--black); margin-bottom: 24px; font-weight: 400; }
.about-story p { font-size: 17px; line-height: 1.8; color: var(--gray); margin-bottom: 20px; }
.about-story .story-image { display: none; }
.about-story .story-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
@media (min-width: 900px) {
  .about-story .story-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .about-story .story-image { display: block; height: 100%; }
}
.about-services { padding: 80px 0; background: var(--navy); }
.about-services h2 { font-family: var(--font-heading); font-style: normal; font-size: 32px; color: var(--white); text-align: center; margin-bottom: 48px; font-weight: 400; }
.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.service-item { 
  display: block;
  background: var(--white); 
  border: 2px solid rgba(27, 54, 93, 0.1);
  border-radius: 12px;
  padding: 32px; 
  text-align: center;
  transition: all 0.3s ease;
}
.service-item:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}
.service-item:hover .service-icon {
  transform: scale(1.1);
  background: var(--brass);
}
.service-item h3 { font-family: var(--font-body); font-size: 20px; color: var(--navy); margin-bottom: 12px; font-weight: 600; }
.service-item p { font-size: 15px; line-height: 1.7; color: var(--gray); margin: 0; }
.about-why { padding: 80px 0; background: var(--white); }
.about-why h2 { font-family: var(--font-heading); font-style: normal; font-size: 32px; color: var(--black); text-align: center; margin-bottom: 48px; font-weight: 400; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.why-item { 
  display: block;
  background: var(--white);
  border: 2px solid rgba(27, 54, 93, 0.1);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.why-item:hover {
  background: var(--white);
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.why-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}
.why-item:hover .why-icon {
  transform: scale(1.1);
  background: var(--brass);
}
.why-item h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

.product-hero { background: var(--navy); padding: 100px 0 40px; }
.breadcrumb { font-size: 14px; color: var(--brass); }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--brass); }
.product-page { padding: 60px 0 100px; background: var(--white); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-main-img { margin-bottom: 16px; background: var(--cream-light); border-radius: 12px; overflow: hidden; }
.product-main-img img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.thumb { aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; border: 2px solid transparent; }
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--navy); }
.product-category { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--brass); margin-bottom: 12px; }
.product-title { font-family: var(--font-heading); font-size: 36px; color: var(--navy); margin-bottom: 16px; font-weight: 400; }
.product-desc { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; padding: 24px; background: var(--cream-light); }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--navy); }
.feature-item svg { width: 18px; height: 18px; color: var(--brass); flex-shrink: 0; }
.product-order-form { background: var(--cream-light); padding: 32px; }
.product-order-form h3 { font-family: var(--font-body); font-size: 22px; color: var(--navy); margin-bottom: 24px; font-weight: 600; }
.btn-full { width: 100%; }
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
}

/* Dropdown Navigation */
.nav-dropdown { position: relative; }

/* Dropdown arrows - visible on all screen sizes */
.dropdown-arrow, .submenu-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { border-bottom: 1px solid var(--gray-light); }
.dropdown-menu li:last-child { border-bottom: none; }
.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--navy);
  transition: all 0.2s;
}
.dropdown-menu a:hover { background: var(--red); color: var(--white); }
.dropdown-wide { min-width: 200px; }
.dropdown-submenu { position: relative; }
.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--white);
  min-width: 200px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.dropdown-submenu:hover .submenu { opacity: 1; visibility: visible; }
@media (max-width: 900px) {
  .dropdown-menu, .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding-left: 20px;
  }
  .dropdown-menu a { padding: 12px 0; color: var(--navy); border-bottom: none; }
  
  /* Keep arrows visible on mobile and rotate when open */
  .nav-dropdown.open .dropdown-arrow,
  .dropdown-submenu.open .submenu-arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-submenu > a::after { display: none; }
}

/* Shop Item Descriptions */
.shop-desc {
  font-size: 13px;
  color: var(--gray);
  margin: 8px 0 4px;
  line-height: 1.4;
}

/* File Upload */
.file-upload {
  border: 2px dashed var(--gray-light);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.file-upload:hover { border-color: var(--brass); background: rgba(201,152,70,0.05); }
.file-upload-content { display: flex; flex-direction: column; align-items: center; }
.file-upload-text { font-weight: 500; margin: 0; }

/* Site Credit */
.site-credit { font-size: 13px; margin-top: 8px; opacity: 0.7; }
.site-credit a { color: var(--brass); text-decoration: none; filter: brightness(1.3); }
.site-credit a:hover { text-decoration: underline; }

/* Hero Info Container */
.hero-info-container {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-info-section {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 0;
}

.info-label {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--brass);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.info-text {
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  color: #ffffff;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.info-address {
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}

.info-address:hover .info-text {
  color: var(--brass);
}

@media (max-width: 768px) {
  .hero-info-container {
    gap: 20px;
    max-width: 500px;
  }
  .hero-info-section {
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .hero-info-container {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    width: 90%;
  }
  .hero-info-section {
    padding: 16px 20px;
  }
  .info-label {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .info-text {
    font-size: 0.75rem;
  }
}

/* Gallery Carousel */
.gallery-carousel {
  position: relative;
  padding: 0 50px;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  flex: 0 0 25%;
  padding: 0 8px;
}
.carousel-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.carousel-prev:hover, .carousel-next:hover { background: var(--red); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (max-width: 1024px) { .carousel-slide { flex: 0 0 33.333%; } }
@media (max-width: 768px) { .carousel-slide { flex: 0 0 50%; } }
@media (max-width: 480px) { .carousel-slide { flex: 0 0 100%; } .gallery-carousel { padding: 0 40px; } }

/* Navigation Dropdowns */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--navy-light);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: all 0.2s;
}
.dropdown-menu a:hover { color: var(--white); background: var(--red); }

.dropdown-wide { min-width: 220px; }
.dropdown-submenu { position: relative; }
.dropdown-submenu > a { padding-right: 15px; }
.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--navy);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  border-radius: 4px;
}
.dropdown-submenu:hover .submenu,
.dropdown-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(0,0,0,0.05);
    padding: 0;
    box-shadow: none;
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.3s;
  }
  .nav-dropdown.open .dropdown-menu { max-height: 70vh; }
  .dropdown-menu a { color: var(--navy); padding: 12px 40px; }
  
  .submenu {
    position: static;
    background: rgba(0,0,0,0.03);
    max-height: 0;
    overflow-y: auto;
  }
  .dropdown-submenu.open .submenu { max-height: 50vh; }
  
  /* Keep SVG arrows visible and rotate when open */
  .nav-dropdown.open .dropdown-arrow,
  .dropdown-submenu.open .submenu-arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-submenu > a::after { display: none; }
}

.page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  background: var(--navy);
  padding-top: var(--header-height);
  overflow: hidden;
  text-align: left !important;
}
.page-banner .container {
  text-align: left !important;
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
}
.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 50%;
  z-index: 1;
}
.page-banner-bg-desktop {
  display: block;
}
.page-banner-bg-mobile {
  display: none;
}
.dtf-banner-desktop {
  display: block;
}
.dtf-banner-mobile {
  display: none;
}
@media (max-width: 768px) {
  .page-banner-bg {
    background-position: center;
  }
  .page-banner-bg-desktop {
    display: none;
  }
  .page-banner-bg-mobile {
    display: block;
  }
  .dtf-banner-desktop {
    display: none;
  }
  .dtf-banner-mobile {
    display: block;
  }
}
.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(27,31,47,0.9) 0%, rgba(27,31,47,0.6) 100%);
  z-index: 2;
}
.page-banner-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-right: auto !important;
  margin-left: 0 !important;
  padding: 60px 0;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.page-banner-content * {
  text-align: left !important;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start !important;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 14px;
  order: 10;
  text-align: left !important;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--brass); }
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
  order: 2;
  text-align: left !important;
  display: block;
  width: 100%;
}
.page-banner-label {
  display: inline-block;
  font-family: var(--font-body);
  text-align: left !important;
  color: var(--brass);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  order: 1;
  align-self: flex-start !important;
}

/* Page Hero (alternative banner style) */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0 80px;
  text-align: left !important;
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.page-hero .container {
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
}

.page-hero h1,
.page-hero .h2-section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-align: left !important;
  width: 100%;
}

.page-hero .body-text-section {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  text-align: left !important;
}

.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start !important;
  margin-bottom: 16px;
  font-size: 14px;
  text-align: left !important;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: var(--brass); }

/* Service Hero */
.service-hero {
  text-align: left !important;
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.service-hero .container {
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
}

.service-hero h1,
.service-hero h2 {
  text-align: left !important;
  width: 100%;
}

.service-hero p {
  text-align: left !important;
}

.seo-content {
  padding: 80px 0;
  background: var(--white);
  overflow-x: hidden;
}
.seo-content h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--black);
  margin: 48px 0 20px;
  font-weight: 700;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.seo-content ul {
  margin: 20px 0 20px 24px;
}
.seo-content li {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}
.seo-content a { color: var(--red); text-decoration: underline; }
.seo-content a:hover { color: var(--red-dark); }
.service-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 768px) {
  .service-links {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.service-link-card {
  display: block;
  padding: 32px;
  background: var(--navy);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--white);
}
.service-link-card:hover { 
  background: var(--navy);
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  text-decoration: none !important;
  color: var(--white);
}
.service-link-card h4 {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--brass);
  margin: 0 0 12px;
  font-weight: 600;
  text-decoration: none !important;
}
.service-link-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px 0;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.service-link-card:hover p {
  color: var(--white);
}
.service-link-card:hover h4 {
  color: var(--white);
}
.card-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brass);
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.service-link-card:hover .card-cta {
  transform: translateX(4px);
  color: var(--white);
}
.content-wrapper {
  max-width: 800px;
  width: 100%;
}
@media (max-width: 768px) {
  .content-wrapper {
    max-width: 100%;
  }
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-form-section h2, .contact-info-section h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 28px;
  color: var(--black);
  margin-bottom: 16px;
  font-weight: 700;
}
.contact-form-section p {
  color: var(--gray);
  margin-bottom: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 14px;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.form-input, .form-textarea {
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-info-card {
  padding: 24px;
  background: var(--cream-light);
  margin-bottom: 16px;
}
.contact-info-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.contact-info-card p {
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.6;
}
.contact-info-card p:last-child { margin-bottom: 0; }
.contact-info-card a { color: var(--red); }
.contact-info-card a:hover { color: var(--red-dark); }
.contact-info-card .btn { margin-top: 8px; }
