
.hero-section {
    position: relative;
    width: 100%;
    background: none;
    background-image: url('../Images/ContactUsBG.svg');
    background-size: cover;
    background-position: center;
    padding: 22rem 0; /* Increase height */
    text-align: center;
    font-size: 2rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.contact-section {
    max-width: 900px;
    margin: 4rem auto 3rem auto;
    background: rgba(1, 39, 14, 0.92);
    color: #fff;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    line-height: 1.7;
}

.contact-section::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: rgba(1, 39, 14, 0.85);
    z-index: -1111;
    pointer-events: none;
}

.contact-section h2 {
    color: #ffe7a0;
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    margin-top: 0;
    border-bottom: 2px solid #ab8d44;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.contact-section h3, .contact-section h4 {
    color: #ffe7a0;
    font-family: 'Crimson Text', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-section h3 {
    font-size: 1.4rem;
}

.contact-section h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.contact-section p, .contact-section ul {
    margin-bottom: 1.5rem;
}

.contact-section ul {
    margin-left: 1.5rem;
}

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

.contact-section a {
    color: #ffe7a0;
    text-decoration: underline;
    word-break: break-all;
    transition: color 0.2s;
}

.contact-section a:hover {
    color: #ab8d44;
}

.contact-map {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(171, 141, 68, 0.18);
    margin-bottom: 1.5rem;
    border: 2px solid #ab8d44;
}

/* Breadcrumbs navigation styling */

.breadcrumbs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #1a3a24;
  padding: 0.75em 2em 0.75em 2em;
  margin: 0 0 0em 0;
  box-shadow: 0 2px 8px rgba(26,35,64,0.06);
  font-family: 'Crimson Text', serif;
  font-size: 1.1em;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumb-separator {
  margin: 0 0.5em;
  color: #b89b5e;
  font-size: 1.2em;
}
.breadcrumb-icon {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.3em;
  vertical-align: middle;
}
.breadcrumb-current {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #b89b5e;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 40000;
  background: linear-gradient(135deg, #1a3a24 0%, #ab8d44 100%);
  border: 2px solid #ffe7a0;
  border-radius: 12px;
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(171, 141, 68, 0.4);
  transition: all 0.3s ease;
}

.mobile-nav-toggle .material-icons {
  color: #ffe7a0;
  font-size: 32px;
  transition: transform 0.3s ease;
}

.mobile-nav-toggle:hover {
  background: linear-gradient(135deg, #ab8d44 0%, #1a3a24 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 231, 160, 0.5);
}

.mobile-nav-toggle:active {
  transform: scale(0.95);
}

.mobile-nav-toggle.active .material-icons {
  transform: rotate(90deg);
}

.hero-nav-btns-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-90%);
    z-index: 30000;
    max-width: 340px;
    width: 100%;
    padding-left: 2.2vw;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    pointer-events: auto;
}
.hero-nav-fadein-btn.hero-nav-fadein-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.77,0.2,0.05,1.0), transform 0.8s cubic-bezier(0.77,0.2,0.05,1.0);
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    box-shadow: none;
    margin: 0;
    padding: 0.3rem 1.2rem 0.3rem 0.2rem;
    border-radius: 0 32px 32px 0;
    cursor: pointer;
    overflow: visible;
    background: none;
}
.hero-nav-fadein-btn.hero-nav-fadein-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.hero-nav-fadein-btn .gold-vert-line {
    display: inline-block;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ffe7a0 0%, #ab8d44 100%);
    margin-right: 1.1rem;
    border-radius: 2px;
    transition: height 0.7s cubic-bezier(0.77,0.2,0.05,1.0);
    vertical-align: middle;
    box-shadow: 0 0 6px #ab8d44a0;
}
.hero-nav-fadein-btn.hero-nav-fadein-left.visible .gold-vert-line {
    height: 2.1rem;
}
.hero-nav-fadein-btn .hero-nav-btn-text {
    color: #fff;
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: color 0.2s;
}
.hero-nav-fadein-btn:hover .hero-nav-btn-text {
    color: #ffe7a0;
}
.hero-nav-fadein-btn:hover .gold-vert-line {
    box-shadow: 0 0 16px #ffe7a0;
}

@media (max-width: 700px) {
    .contact-section {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        font-size: 1rem;
    }
    .contact-section h2 {
        font-size: 1.3rem;
    }
    .contact-section h3 {
        font-size: 1.1rem;
    }
    .contact-map {
        height: 220px;
    }
}