:root {
  --primary: #1E1E24;
  --secondary: #5A1F2E;
  --page: #F5F4F2;
  --accent1: #C9A24D;
  --accent2: #0F3B3E;
  --accent3: #3B1F2B;
}
body {
  font-family: 'Lato', sans-serif;
  color: var(--primary);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}
.lead {
  font-size: 1.2rem;
  line-height: 1.8;
}
p {
  font-size: 1.2rem;
  line-height: 1.8;
}
/* Navigation */
.navbar {
  background-color: var(--primary) !important;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent1) !important;
  font-weight: 700;
}
.navbar-nav .nav-link {
  color: var(--page) !important;
  margin: 0 1rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--accent1) !important;
}
/* Hero Sections */
.hero-large {
  background: linear-gradient(rgba(30, 30, 36, 0.6), rgba(30, 30, 36, 0.6)), url('images/hmpg-hero-large.jpg');
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23C9A24D" opacity="0.05" width="100" height="100"/></svg>');
  opacity: 0.1;
}
.hero-large h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-large p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.hero-small {
  background: linear-gradient(rgba(30, 30, 36, 0.6), rgba(30, 30, 36, 0.6)), url('images/hero-boardroom.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 10rem 0 5rem;
  text-align: center;
  color: white;
}
.hero-why-elevated {
  background: linear-gradient(rgba(30, 30, 36, 0.6), rgba(30, 30, 36, 0.6)), url('images/hero-why-elevated.jpg');
}
.hero-signature-ideas {
  background: linear-gradient(rgba(30, 30, 36, 0.6), rgba(30, 30, 36, 0.6)), url('images/hero-signature-ideas.jpg');
}
.hero-engagements{
  background: linear-gradient(rgba(30, 30, 36, 0.6), rgba(30, 30, 36, 0.6)), url('images/hero-engagements.jpg');
}
.hero-insights {
  background: linear-gradient(rgba(30, 30, 36, 0.6), rgba(30, 30, 36, 0.6)), url('images/hero-insights.jpg');
}
.hero-contact {
  background: linear-gradient(rgba(30, 30, 36, 0.6), rgba(30, 30, 36, 0.6)), url('images/hero-boardroom.jpg');
}
.hero-small h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-small p {
  font-size: 1.4rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}
.engagement-model {
  background: url('images/engagement-model-bkgrd.jpg');
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Additional styles specific to template page */
.bg-image-section {
  background: linear-gradient(rgba(30, 30, 36, 0.75), rgba(30, 30, 36, 0.75)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=800&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 5rem 0;
}
.bg-book {
  background: linear-gradient(rgba(30, 30, 36, 0.75), rgba(30, 30, 36, 0.75)), url('images/hmpg-book-bkgrd.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 5rem 0;
}
/* Buttons */
.btn-custom-primary {
  background-color: var(--accent1);
  color: var(--primary);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-custom-primary:hover {
  background-color: #b8923d;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.3);
}
.btn-custom-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid var(--accent1);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-custom-secondary:hover {
  background-color: var(--accent1);
  color: var(--primary);
  transform: translateY(-3px);
}
.btn-custom-light {
  background-color: transparent;
  color: var(--page);
  border: 2px solid var(--page);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-custom-light:hover {
  background-color: var(--page);
  color: var(--primary);
  transform: translateY(-3px);
}
/* Sections */
.section-page {
  background-color: var(--page);
  padding: 5rem 0;
}
.section-secondary {
  background-color: var(--secondary);
  color: white;
  padding: 5rem 0;
}
.section-accent1 {
  background-color: var(--accent1);
  color: var(--primary);
  padding: 5rem 0;
}
.section-accent2 {
  background-color: var(--accent2);
  color: white;
  padding: 5rem 0;
}
/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-section-1 {
  background-image: url('images/bkgrd1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 7rem 0;
}
/* Cards */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.feature-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}
/* Icon Boxes */
.icon-box {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}
.icon-box:hover {
  transform: translateY(-10px);
}
.icon-box i {
  font-size: 3.5rem;
  color: var(--accent1);
  margin-bottom: 1.5rem;
}
.icon-box h5 {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.3rem;
}
.icon-box p {
  font-size: 1rem;
  line-height: 1.6;
}
/* Image Sections */
.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.two-col-section {
  display: flex;
  min-height: 65vh;
  width: 100%;
}
/* Column 1: image */
.two-col-image {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s ease;
}
.two-col-image:hover img {
  transform: scale(1.04);
}
/* Column 2: text */
.two-col-text {
  width: 50%;
  background-color: var(--page);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5.5rem 5rem 6rem;
}
/* Gold rule */
.text-rule {
  width: 60px;
  height: 4px;
  background-color: var(--accent1);
  margin-bottom: 1.75rem;
}
/* Overline */
.overline {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 0.75rem;
  display: block;
}
.overline2 {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent1);
      border: 1px solid rgba(201,162,77,0.4);
      padding: 0.28rem 0.9rem;
      border-radius: 50px;
      margin-bottom: 1.25rem;
      position: relative;
      z-index: 1;
    }
.two-col-text h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.two-col-text p {
  font-size: 1.2rem;
  line-height: 1.85;
  color: rgba(30, 30, 36, 0.62);
  margin-bottom: 1.3rem;
  max-width: 500px;
}
/* Feature checklist */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.5rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(30, 30, 36, 0.08);
  font-size: 0.95rem;
  color: var(--primary);
}
.feature-list li:first-child {
  border-top: 1px solid rgba(30, 30, 36, 0.08);
}
.feature-list li i {
  color: var(--accent1);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}
/* Button row */
.btn-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col-section {
    flex-direction: column;
    min-height: auto;
  }
  .two-col-image {
    width: 100%;
    height: 62vw;
  }
  .two-col-text {
    width: 100%;
    padding: 3.5rem 1.5rem;
  }
  .two-col-text p {
    max-width: 100%;
  }
}
/* ── Section labels ── */
.section-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent1);
  border: 1px solid rgba(201, 162, 77, 0.35);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
/* ── 3-col: image cards ── */
.card-img-top-custom {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h4 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.service-card-body p {
  font-size: 0.93rem;
  color: rgba(30, 30, 36, 0.6);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.card-tag {
  display: inline-block;
  background: rgba(201, 162, 77, 0.12);
  color: #a07e35;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
/* ── 4-col: icon boxes on dark ── */
.icon-box-dark {
  text-align: center;
  padding: 2.25rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}
.icon-box-dark:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
  border-color: rgba(201, 162, 77, 0.35);
}
.icon-box-dark i {
  font-size: 2.75rem;
  color: var(--accent1);
  margin-bottom: 1.25rem;
  display: block;
}
.icon-box-dark h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}
.icon-box-dark p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 244, 242, 0.55);
  margin: 0;
}
/* ── 6-col: stat tiles ── */
.stat-tile {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s;
}
.stat-tile:last-child {
  border-right: none;
}
.stat-tile:hover {
  background: rgba(255, 255, 255, 0.04);
}
.stat-tile .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--accent1);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-tile .stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 242, 0.45);
  display: block;
  margin-bottom: 0.6rem;
}
.stat-tile .stat-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245, 244, 242, 0.55);
  margin: 0;
}
/* Divider between sections */
.section-sep {
  height: 6px;
  background: linear-gradient(to right, var(--secondary), var(--accent1), var(--accent2));
  opacity: 0.6;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .stat-tile {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-tile:last-child {
    border-bottom: none;
  }
}
/* ── Accordion overrides ── */
.accordion-custom .accordion-item {
  background: #fff;
  border: none;
  border-radius: 10px !important;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 12px rgba(30, 30, 36, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.accordion-custom .accordion-item:hover {
  box-shadow: 0 8px 28px rgba(30, 30, 36, 0.18);
}
/* Dark rollover on the whole item */
.accordion-custom .accordion-item:hover .accordion-button:not(.collapsed), .accordion-custom .accordion-item:hover .accordion-button.collapsed {
  background: var(--primary);
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}
/* Keep number badge readable on dark hover */
.accordion-custom .accordion-item:hover .faq-num {
  background: rgba(201, 162, 77, 0.25);
  color: var(--accent1);
}
.accordion-custom .accordion-button {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  padding: 1.35rem 1.5rem;
  border-radius: 10px !important;
  box-shadow: none;
  gap: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--accent1);
  background: #fff;
  box-shadow: none;
}
/* Custom chevron — replaces Bootstrap's */
.accordion-custom .accordion-button::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  background-image: none;
  border: 2px solid var(--accent1);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  /* Chevron drawn via clip */
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23C9A24D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}
.accordion-custom .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-color: var(--accent1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231E1E24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
}
/* Left accent bar on open item */
.accordion-custom .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-left: 4px solid var(--accent1);
}
.accordion-custom .accordion-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(30, 30, 36, 0.65);
  padding: 0 1.5rem 1.5rem 1.5rem;
}
/* Number badge beside each question */
.faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.12);
  color: var(--accent1);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
/* Still-have-questions footer card */
.faq-cta {
  background: var(--primary);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.faq-cta h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin-bottom: 0.5rem;
}
.faq-cta p {
  font-size: 0.9rem;
  color: rgba(245, 244, 242, 0.6);
  margin-bottom: 1.5rem;
}
.btn-gold {
  display: inline-block;
  background: var(--accent1);
  color: var(--primary);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background: #b8923d;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.35);
}
/* ── Contact Main layout ── */
.contact-section {
  padding: 5rem 0 6rem;
  background: var(--page);
}
/* ── Info column ── */
.contact-info-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 2.75rem 2.25rem;
  height: 100%;
  color: #fff;
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.contact-info-card .sub {
  font-size: 0.88rem;
  color: rgba(245, 244, 242, 0.5);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.info-item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 77, 0.15);
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent1);
  font-size: 0.9rem;
}
.info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent1);
  display: block;
  margin-bottom: 0.2rem;
}
.info-value {
  font-size: 0.9rem;
  color: rgba(245, 244, 242, 0.75);
  line-height: 1.5;
}
.info-value a {
  color: rgba(245, 244, 242, 0.75);
  text-decoration: none;
}
.info-value a:hover {
  color: var(--accent1);
}
/* Social icons */
.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 244, 242, 0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-btn:hover {
  border-color: var(--accent1);
  color: var(--accent1);
  transform: translateY(-3px);
}
/* ── Form card ── */
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.75rem;
  box-shadow: 0 4px 32px rgba(30, 30, 36, 0.08);
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.form-card .sub {
  font-size: 0.88rem;
  color: rgba(30, 30, 36, 0.5);
  margin-bottom: 2rem;
  line-height: 1.6;
}
/* Form controls */
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  border: 1.5px solid rgba(30, 30, 36, 0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--primary);
  background: var(--page);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.15);
  background: #fff;
  outline: none;
}
.form-control::placeholder {
  color: rgba(30, 30, 36, 0.35);
}
/* Input group icon prefix */
.input-group-text {
  background: rgba(201, 162, 77, 0.08);
  border: 1.5px solid rgba(30, 30, 36, 0.15);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--accent1);
  font-size: 0.85rem;
  padding: 0.75rem 0.9rem;
}
.input-group .form-control, .input-group .form-select {
  border-left: none;
  border-radius: 0 8px 8px 0;
}
.input-group:focus-within .input-group-text {
  border-color: var(--accent1);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
/* Required asterisk */
.req {
  color: var(--accent1);
  margin-left: 2px;
}
/* Submit button */
.btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.9rem 2.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.btn-submit:hover {
  background: var(--accent1);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.35);
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
/* Toast notification */
#formToast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  min-width: 320px;
}
.toast-success {
  background: var(--accent2);
  color: #fff;
}
.toast-error {
  background: var(--secondary);
  color: #fff;
}
.toast .toast-body {
  font-size: 0.9rem;
}
/* Validation */
.form-control.is-invalid, .form-select.is-invalid {
  border-color: var(--secondary);
}
.invalid-feedback {
  font-size: 0.78rem;
  color: var(--secondary);
}
@media (max-width: 767px) {
  .form-card {
    padding: 2rem 1.5rem;
  }
  .contact-info-card {
    margin-bottom: 2rem;
  }
}
/* Footer */
footer {
  background-color: var(--primary);
  color: var(--page);
  padding: 3rem 0 1rem;
}
footer a {
  color: var(--accent1);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #b8923d;
}
/* Typography */
.section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--accent1);
}
.section-title2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.section-title2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--primary);
}
/* Responsive */
@media (max-width: 768px) {
  .hero-large h1 {
    font-size: 2.5rem;
  }
	.hero-large {
		padding-top: 100px;
		padding-bottom: 60px;
	}
  .hero-small h1 {
    font-size: 2.5rem;
  }
  .hero-small p {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .parallax-section {
    background-attachment: scroll;
  }
}