* {
  font-family: "Tinos", sans-serif;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: #2d2d2d;
  height: 1700px;
}

:root {
  --main-gold-color: #ceb888;
  --dark-gold-color: rgb(99, 93, 65);
  --mid-gold-color: rgb(149, 139, 100);
}

h1 {
  margin: 0;
}

header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: white;
  z-index: 100;
  max-width: 100vw;
  width: 100%;
  transition: all ease-in-out 0.2s;
}

.header-scroll {
  background-color: var(--main-gold-color);
  box-shadow: inset 0px -7px 0px rgba(0, 0, 0, 0.4);
  transition: all ease-in-out 0.2s;
  padding: 10px 20px;
}

header nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

strong {
  font-weight: bold;
  color: var(--main-gold-color);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  visibility: hidden;
  position: absolute;
  overflow: hidden;
  background-color: #2d2d2da2;
  min-width: 160px;
  z-index: 1;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  margin-top: 10px;
}

.dropdown-content.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: rgb(195, 195, 195);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  color: var(--main-gold-color);
  box-shadow: none;
}

.logogroup {
  display: flex;
  flex-direction: row;
  align-items: center;
}

header .logogroup img {
  height: 60px;
  transition: all ease-in-out 0.2s;
}

.header-scroll .logogroup img {
  filter: brightness(0) invert(0);
  height: 50px;
  transition: all ease-in-out 0.2s;
}

header a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 1.3em;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
  height: 100%;
}

.header-scroll a {
  color: black;
  font-size: 1.1em;
}

.header-scroll .dropdown-content {
  background-color: var(--main-gold-color);
}

header #contactbutton {
  background-color: var(--main-gold-color);
  color: black;
}

#contactbutton:hover {
  color: white;
}

#contactbutton:hover {
  color: black;
}

header a:hover {
  box-shadow: inset 0px -4px 0px -0px var(--main-gold-color);
  transition: all ease-in-out 0.2s;
}

.header-scroll a:hover {
  box-shadow: inset 0px -4px 0px -0px var(--dark-gold-color);
  transition: all ease-in-out 0.2s;
}

.splash {
  background-image: url(assets/splash-bg.png);
  background-size: cover;
  height: 1100px;
  position: relative;
  box-shadow: inset 0px -20px 15px 0px rgba(0, 0, 0, 0.4);
}

.splashcontent {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
  color: white;
}

.splashcontenttext {
  position: absolute;
  width: 50%;
  left: 5%;
  top: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: center;
}

.splashmain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: center;
  margin-bottom: 50px;
  scale: 1.2;
  margin-left: 7%;
}

.splashcontenttext .splashsub {
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 6px;
  text-align: center;
  padding-left: 3px;
}

.splashimage {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 50%;
  padding-top: 50px;
  z-index: 2;
}

.splashtext {
  font-size: 3.5em;
  font-weight: 600;
  color: var(--main-gold-color);
  margin-bottom: -15px;
  letter-spacing: 1px;
  border: 4px solid var(--mid-gold-color);
  border-bottom: none;
  padding: 0px 30px 5px 30px;
}

.splash-content-wrapper {
  height: 400px;
  width: 100%;
  position: relative;
}

.italic {
  font-style: italic;
}

.splashpara {
  font-size: 1.5em;
  text-align: left;
  max-width: 80%;
  font-weight: 300;
  line-height: 1.5em;
  margin-bottom: 25px;
}

.linewrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-right: 20px;
  align-items: center;
  gap: 5px;
}

hr {
  width: 28%;
  height: 3px;
  background-color: var(--mid-gold-color);
  border: none;
}

.splashbuttongroup {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.splashbutton {
  background-color: var(--main-gold-color);
  color: black;
  padding: 20px 30px;
  border: none;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  box-shadow: 8px 8px 0px 3px var(--dark-gold-color);
}

.splashbutton:hover {
  background-color: white;
  transition: all ease-in-out 0.2s;
}

.splash-border-tag {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
  width: 36%;
  background-color: var(--main-gold-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 50;
}

.splash-border-tag p {
  font-weight: bold;
  font-size: 1.5em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.splash-border-tag img {
  height: 60px;
  margin-top: 5px;
}

.practiceareas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0px 8px 0px var(--main-gold-color);
  background-image: url(assets/test5.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

.practiceheader {
  width: 95%;
  margin-top: 130px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.practiceheader h2 {
  font-size: 2em;
  font-weight: 600;
  color: var(--main-gold-color);
}

.serviceheader {
  width: 95%;
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.serviceheader h2 {
  font-size: 2em;
  font-weight: 600;
  color: var(--main-gold-color);
}

.practiceareas p {
  color: white;
  margin-top: 25px;
}

.hr2 {
  width: 70%;
  height: 3px;
  background-color: var(--dark-gold-color);
  border: none;
}

.practice-button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  max-width: 90%;
  flex-wrap: wrap;
}

a.practice-button {
  box-sizing: border-box;
}

.service-button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 70px;
  max-width: 90%;
  width: 90%;
  flex-wrap: wrap;
}

.practice-button {
  width: 30%;
  background-color: var(--main-gold-color);
  color: black;
  padding: 20px 30px;
  border: none;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  transition: all ease 0.2s;
  box-shadow: inset 0px -7px 0px var(--dark-gold-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  max-width: 30%;
}

.practice-button:hover {
  box-shadow: inset 0px -12px 0px var(--dark-gold-color);
  transition: all ease 0.2s;
  cursor: pointer;
  color: var(--dark-gold-color);
}

.practice-button span {
  font-size: 1.3em;
  margin-left: 20px;
}

.fa-angle-down,
.fa-angle-up {
  margin-left: 5px;
}

.splash2 {
  background-image: url(assets/splashduo.png);
  background-position: left middle;
  background-size: 110%;
  width: 100%;
  height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  border-top: 8px solid var(--main-gold-color);
  box-shadow: inset 0px 20px 15px 0px rgba(0, 0, 0, 0.4);
  border-bottom: 8px solid var(--main-gold-color);
}

.splash2content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  max-width: 20%;
  margin-left: 60px;
  color: white;
  margin-top: 60px;
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.4);
  background-color: rgba(0, 0, 0, 0.4);
}

.splash2content h2 {
  font-size: 3em;
  font-weight: 600;
  color: var(--main-gold-color);
}

.splash2content p {
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.5em;
}

footer {
  background-color: #2d2d2d;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: black;
  border-top: 3px solid var(--main-gold-color);
}

.footercontent {
  padding: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 70%;
  gap: 50px;
}

.footerleft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 10px;
  width: 20%;
}

.footerright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 10px;
  width: 20%;
}

.footerstart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 10px;
  width: 20%;
}

.map {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 1200px;
  position: relative;
  /* Remove background-image and filter */
}

.map-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(assets/test5.png);
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -1;
}

.map h2 {
  margin: 60px 0px 0px 0px;
  color: var(--main-gold-color);
  font-size: 2.5em;
  text-align: center;
}

.map #mapbuffer {
  margin-top: 0px;
}

.section-subtitle {
  color: #ccc;
  font-size: 1.2em;
  text-align: center;
  margin: 10px auto 40px auto;
  max-width: 600px;
  font-style: italic;
  line-height: 1.4;
}

.mapembed {
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid var(--dark-gold-color);
  border-radius: 8px;
  box-shadow: 0px 0px 20px 15px rgba(0, 0, 0, 0.4);
  height: 500px;
  overflow: hidden;
}

.mapembed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

/* Professional Contact Info Styling */
.contact-info-card {
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid var(--dark-gold-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0px 0px 20px 15px rgba(0, 0, 0, 0.4);
  height: 500px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.emergency-notice {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: pulse-urgent 2s infinite;
}

.emergency-notice i {
  font-size: 1.2em;
}

@keyframes pulse-urgent {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-method:hover {
  background-color: rgba(206, 184, 136, 0.1);
}

.contact-method.primary {
  background-color: rgba(206, 184, 136, 0.15);
  border: 1px solid var(--main-gold-color);
}

#bigbutton {
  color: black;
  font-size: 1.7em;
}

.contact-method i {
  color: var(--main-gold-color);
  font-size: 1.5em;
  margin-top: 5px;
  min-width: 24px;
}

.contact-details h3 {
  color: var(--main-gold-color);
  margin: 0 0 8px 0;
  font-size: 1.1em;
  font-weight: 600;
}

.contact-details p {
  color: #ccc;
  margin: 5px 0;
  font-size: 0.9em;
  line-height: 1.4;
}

.phone-number {
  color: var(--main-gold-color);
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: var(--dark-gold-color);
  text-decoration: underline;
}

.contact-details a {
  color: var(--main-gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--dark-gold-color);
  text-decoration: underline;
}

.contact-cta {
  padding-top: 0px;
}

.cta-button {
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--main-gold-color),
    var(--dark-gold-color)
  );
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-method.primary {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method h3 {
  font-size: 1.5em;
}

.contact-method p {
  font-size: 1.2em;
}

.contact-details a {
  text-align: center;
  font-size: 2em;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background: linear-gradient(
    135deg,
    var(--dark-gold-color),
    var(--main-gold-color)
  );
}

p.cta-subtext {
  color: #ccc;
  font-size: 0.85em;
  margin-top: 20px;
  font-style: italic;
}

.map-content-con {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
}

.contact-section-middle {
  margin-top: 60px;
  color: gray;
  font-size: 2em;
  width: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-section-right,
.contact-section-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.footerhr {
  width: 90%;
  margin: 5px 0px;
}

.footerleft h2,
.footerright h2 {
  font-size: 1.4em;
  color: var(--main-gold-color);
}

.footerright p,
.footerleft p {
  font-size: 1em;
  font-weight: 300;
  color: var(--main-gold-color);
}

.socialmedia a {
  font-size: 1.5em;
  color: var(--main-gold-color);
}

.socialmedia {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.footerstart {
  width: 20%;
}

.footerstart hr {
  background-color: gray;
  height: 1px;
}

.footerlogo {
  width: 200px;
}

.footertext {
  color: rgb(149, 149, 149);
}

.footertext a,
.footerleft a {
  color: var(--main-gold-color);
}

.footerleft a span {
  opacity: 0;
  transition: margin ease-in-out 0.2s;
  margin-left: 0px;
}

.footerleft a {
  transition: all ease-in-out 0.2s;
}

.footerleft a:hover {
  cursor: pointer;
  color: white;
  transition: all ease-in-out 0.2s;
}

.footerleft a:hover span {
  opacity: 1;
  margin-left: 10px;
  transition: margin ease-in-out 0.2s;
}

.socialmedia a:hover {
  color: white;
  transition: all ease-in-out 0.2s;
}

/* Scrollbar */
body::-webkit-scrollbar {
  width: 10px;
  background-color: #2d2d2d;
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(68, 68, 68);
}

body::-webkit-scrollbar-thumb:hover {
  background-color: var(--dark-gold-color);
}

/* MOBILE MENU TOGGLE - HIDDEN BY DEFAULT */
.mobile-menu-toggle,
#mobile-menu-toggle {
  display: none;
}

.mobile-nav-overlay,
#mobile-nav-overlay {
  position: fixed;
  top: -150%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99;
  transition: top 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-overlay.active,
#mobile-nav-overlay.active {
  top: 0;
}

/* TABLET LAYOUT OPTIMIZATIONS */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Main splash section text adjustments */
  .splashtext {
    font-size: 2.8em;
  }

  .splashcontenttext .splashsub {
    font-size: 1.2em;
    letter-spacing: 4px;
  }

  .splashpara {
    font-size: 1em;
  }

  /* Tablet splash image sizing */
  .splashimage {
    width: 500px;
    max-width: 50%;
    height: auto !important;
  }

  /* Practice areas section */
  .practiceheader h2 {
    font-size: 1.7em;
  }

  .practice-button {
    font-size: 1em;
    padding: 18px 25px;
  }

  /* Second splash section */
  .splash2 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .splash2content {
    margin-left: 40px;
    padding: 30px;
  }

  .splash2content h2 {
    font-size: 2.5em;
  }

  .splash2content p {
    font-size: 1.3em;
  }

  /* Contact and map section */
  .map h2 {
    font-size: 2.2em;
  }

  .section-subtitle {
    font-size: 1.1em;
  }

  .contact-section-left h2,
  .contact-section-right h2 {
    font-size: 1.9em;
  }

  .contact-details h3 {
    font-size: 1em;
  }

  .phone-number {
    font-size: 1.2em;
  }

  /* Adjust practice button spacing for tablet */
  .practice-button-group {
    gap: 20px;
  }

  /* Map content adjustments */
  .map-content-con {
    gap: 40px;
    align-items: stretch;
  }

  .contact-section-left,
  .contact-section-right {
    width: 47%;
    max-width: 500px;
    justify-content: flex-start;
    min-height: 620px;
  }

  .contact-info-card,
  .mapembed {
    height: 580px;
    min-height: 580px;
    box-sizing: border-box;
  }

  .contact-info-card {
    padding: 20px !important;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
  }

  /* Adjust contact card content spacing for tablet */
  .contact-method {
    margin-bottom: 12px !important;
    padding: 10px !important;
  }

  .emergency-notice {
    margin-bottom: 15px !important;
    padding: 8px 15px !important;
    font-size: 0.9em;
  }

  .linewrapper hr {
    width: 29%;
    margin-top: 11px;
  }

  .splash {
    height: 800px;
  }

  .splashtext {
    font-size: 2em;
    padding-bottom: 10px;
  }

  .splashpara p {
    font-size: 1.2em;
    max-width: 90%;
  }

  nav a {
    font-size: 1.1em;
    padding: 8px 12px;
  }

  .splashimage {
    height: 450px;
    width: auto;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .splash-border-tag p {
    font-size: 1em;
    max-width: 80%;
  }

  .contact-section-left h2 {
    margin-top: 0 !important;
  }

  /* Header text sizing for tablet */
  header a {
    font-size: 1.1em;
    padding: 8px 12px;
  }

  /* Service buttons adjustments */
  .serviceheader h2 {
    font-size: 1.7em;
  }

  /* Footer text sizing */
  .footerleft h2,
  .footerright h2 {
    font-size: 1.2em;
  }

  .footerleft p,
  .footerright p {
    font-size: 0.9em;
  }
}

/* DESKTOP LAYOUT IMPROVEMENTS */
@media screen and (min-width: 1025px) {
  /* Hide the empty middle section on desktop */
  .contact-section-middle {
    display: none;
  }

  /* Optimize desktop layout */
  .map-content-con {
    gap: 60px;
    justify-content: space-between;
    align-items: stretch;
  }

  .contact-section-left,
  .contact-section-right {
    width: 48%;
    max-width: 550px;
  }

  /* Ensure both sections have the same height */
  .contact-info-card {
    height: 594px;
    min-height: 594px;
    overflow: visible;
    padding: 25px !important;
    box-sizing: border-box;
    justify-content: flex-start;
  }

  .mapembed {
    height: 594px;
    min-height: 594px;
    box-sizing: border-box;
  }

  /* Make both sections equal total height */
  .contact-section-left,
  .contact-section-right {
    min-height: 700px;
    justify-content: flex-start;
  }

  .contact-method {
    margin-bottom: 15px;
    padding: 12px;
  }

  .emergency-notice {
    margin-bottom: 20px;
    padding: 10px 15px;
  }

  .contact-cta {
    margin-top: 10px;
    margin-bottom: 10px !important;
    padding-top: 15px;
  }

  /* Improve desktop map section heading */
  .contact-section-right h2 {
    margin-bottom: 20px;
    text-align: center;
  }

  /* Enhanced desktop map section */
  .map {
    padding: 40px 0 80px 0;
  }

  .map h2:first-of-type {
    margin-bottom: 10px;
  }

  .section-subtitle {
    margin-bottom: 50px;
    font-size: 1.3em;
  }

  /* Improve contact and location headings alignment */
  .contact-section-left h2,
  .contact-section-right h2 {
    font-size: 2.2em;
    margin: 0 0 25px 0;
    text-align: center;
    color: var(--main-gold-color);
  }

  /* Ensure both sections start at the same height */
  .contact-section-left,
  .contact-section-right {
    align-items: stretch;
  }

  /* Remove any conflicting margins */
  .map #mapbuffer {
    margin-top: 0;
  }
}

/* Tablet/Small Desktop Footer Fixes - 720px to 900px */
@media screen and (max-width: 1280px) and (min-width: 769px) {
  /* Footer adjustments for tablet sizes */
  .footercontent {
    width: 95%;
    gap: 25px;
    padding: 25px 15px;
  }

  .linewrapper {
    margin-top: 6px;
    margin-right: 0;
    width: 100%;
  }

  .linewrapper hr {
    width: 30.5%;
  }

  .footerleft,
  .footerright,
  .footerstart {
    width: 30%;
  }

  .footerleft h2,
  .footerright h2 {
    font-size: 1.2em;
  }

  .footerleft p,
  .footerright p {
    font-size: 0.9em;
  }

  .footerlogo {
    width: 160px;
  }

  /* Areas We Serve section - convert to 2 columns for better spacing */
  .footerleft:last-child div[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Reduce font size in Areas We Serve for better fit */
  .footerleft:last-child div p {
    font-size: 0.85em !important;
  }

  /* Splash2 section fixes for 1280x720 screens */
  .splash2 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    height: 800px;
  }

  .splash2content {
    max-width: 35% !important;
    margin-left: 40px;
    padding: 25px;
    margin-top: 50px;
  }

  .splash2content h2 {
    font-size: 2.4em !important;
    line-height: 1.1;
  }

  .splash2content p {
    font-size: 1.2em !important;
    line-height: 1.4;
  }
}

/* Specific fixes for 1280x720 screens */
@media screen and (max-width: 1280px) and (min-height: 700px) and (max-height: 750px) {
  /* Enhanced splash2 fixes for exactly 1280x720 */
  .splash2 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 700px !important;
  }

  .splash2content {
    max-width: 40% !important;
    margin-left: 30px !important;
    padding: 20px !important;
    margin-top: 40px !important;
  }

  .splash2content h2 {
    font-size: 2.2em !important;
    margin-bottom: 15px !important;
  }

  .splash2content p {
    font-size: 1.1em !important;
    line-height: 1.3 !important;
  }
}

/* Specific fixes for 720px screens */
@media screen and (max-width: 1280px) {
  /* Splash section adjustments for 720px screens */
  .splash {
    height: 800px; /* Reduce height to prevent excessive spacing */
  }

  .splashcontenttext {
    top: 25%; /* Move content up slightly */
    width: 50%; /* Increase width for better use of space */
  }

  .splashmain {
    scale: 0.9; /* Reduce scale for better proportion */
    margin-bottom: 30px; /* Reduce bottom margin */
    margin-left: 0%; /* Keep aligned with paragraph text */
  }

  .linewrapper hr {
    width: 34%; /* Reduce width for better fit */
  }

  .splashtext {
    font-size: 3em; /* Reduce font size from 3.5em */
    padding: 0px 25px 5px 25px; /* Slightly smaller padding */
  }

  .splashcontenttext .splashsub {
    font-size: 1.3em; /* Reduce from 1.5em */
    letter-spacing: 4px; /* Reduce letter spacing */
  }

  .splashpara {
    font-size: 1.3em; /* Reduce from 1.5em */
    max-width: 90%; /* Increase max width */
    line-height: 1.4em; /* Slightly tighter line height */
  }

  .splashbutton {
    padding: 16px 25px; /* Reduce padding */
    font-size: 1.1em; /* Slightly smaller font */
  }

  .splash-border-tag {
    width: 45%; /* Reduce width */
    height: 60px; /* Reduce height */
    bottom: -32px; /* Adjust position */
  }

  .splash-border-tag p {
    font-size: 1.3em; /* Reduce font size */
  }

  .splash-border-tag img {
    height: 50px; /* Reduce image height */
  }

  /* Even more compact footer for 720px */
  .footercontent {
    width: 98%;
    gap: 20px;
    padding: 20px 10px;
  }

  .footerleft,
  .footerright,
  .footerstart {
    width: 32%;
  }

  .footerleft h2,
  .footerright h2 {
    font-size: 1.1em;
  }

  .footerleft p,
  .footerright p {
    font-size: 0.85em;
  }

  .footerlogo {
    width: 140px;
  }

  /* Make Areas We Serve even more compact */
  .footerleft:last-child div p {
    font-size: 0.8em !important;
  }
}

/* SIMPLE MOBILE NAVIGATION ONLY */
@media screen and (max-width: 768px) {
  /* Hide desktop navigation on mobile */
  header nav {
    display: none;
  }

  /* Mobile Splash Layout - Vertical Stacking */
  .splash {
    height: 900px;
  }

  .splashtext {
    font-size: 2em;
    padding-bottom: 10px;
  }

  .splash-border-tag {
    width: 70%;
    justify-content: space-around;
    height: 50px;
    bottom: -29px;
  }

  .splash-border-tag p {
    font-size: 0.8em;
    text-align: center;
    max-width: 80%;
  }

  #bigbutton {
    font-size: 1em;
    text-align: center;
    padding: 15px 20px;
    margin-top: 50px;
  }

  .splash-border-tag img {
    height: 40px;
  }

  .splashcontent {
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 120px 20px 0px 20px;
    box-sizing: border-box;
  }

  .splashcontenttext {
    position: relative;
    width: 90%;
    left: auto;
    top: auto;
    text-align: center;
    align-items: center;
  }

  .splashmain {
    align-items: center;
    scale: 1;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .splashpara {
    text-align: center;
    font-size: 1.1em;
    max-width: 100%;
  }

  .splashimage {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    bottom: auto;
    right: auto;
    padding-top: 0;
  }

  /* Show mobile menu toggle */
  .mobile-menu-toggle,
  #mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle:hover,
  #mobile-menu-toggle:hover {
    opacity: 0.7;
  }

  .mobile-menu-toggle span,
  #mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .header-scroll .mobile-menu-toggle span,
  .header-scroll #mobile-menu-toggle span {
    background: black;
  }

  .header-scroll .mobile-menu-toggle.active span,
  .header-scroll #mobile-menu-toggle.active span {
    background: white;
  }

  .mobile-menu-toggle.active span:nth-child(1),
  #mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2),
  #mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3),
  #mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile Navigation Overlay - Already defined globally */
  .mobile-nav-overlay nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .mobile-nav-overlay a {
    color: white;
    font-size: 1.4em;
    text-decoration: none;
    padding: 15px 25px;
    border: 2px solid var(--main-gold-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-weight: bold;
    width: 280px;
    margin: 5px 0;
    background: transparent;
    box-sizing: border-box;
  }

  .mobile-nav-overlay a:hover {
    background: var(--main-gold-color);
    color: black;
    transform: translateX(-5px);
    box-shadow: 5px 5px 0px var(--dark-gold-color);
  }

  .mobile-nav-overlay a[href*="Contact"] {
    background: var(--main-gold-color);
    color: black;
    border: 2px solid var(--dark-gold-color);
    margin-top: 20px;
  }

  .mobile-nav-overlay a[href*="Contact"]:hover {
    background: white;
    color: black;
    transform: translateX(-5px);
    box-shadow: 5px 5px 0px var(--dark-gold-color);
  }

  .linewrapper {
    margin-right: 0;
    margin-top: 0px;
  }

  /* Mobile Practice Areas Section */
  .practiceareas {
    padding-bottom: 30px;
  }

  .practiceheader {
    margin-top: 80px;
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }

  .practiceheader h2 {
    font-size: 1.8em;
    text-align: center;
  }

  .hr2 {
    width: 80%;
  }

  .practice-button-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
  }

  .practice-button {
    width: 90%;
    max-width: 90%;
    padding: 15px 20px;
    font-size: 1em;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .practice-button span {
    margin-left: 0;
    font-size: 1.5em;
  }

  /* Mobile Service Areas Section */
  .serviceheader {
    margin-top: 60px;
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }

  .serviceheader h2 {
    font-size: 1.8em;
    text-align: center;
  }

  .service-button-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }

  /* Mobile Second Splash Section */
  .splash2 {
    height: 600px;
    background-position: center;
    background-size: cover;
    align-items: center;
    justify-content: center;
  }

  .splash2content {
    max-width: 90%;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
    box-shadow: 0px 0px 30px 30px rgba(0, 0, 0, 0.7);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
  }

  .splash2content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .splash2content p {
    width: 100%;
    max-width: 80%;
    font-size: 1em;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }

  /* Mobile Map Section */
  .map {
    margin-top: 50px;
    height: auto;
    padding: 40px 0;
  }

  .map h2:nth-of-type(2) {
    margin-top: 20px;
  }

  .map h2:nth-of-type(3) {
    margin-top: 20px;
  }

  .section-subtitle {
    margin-top: 0px;
  }

  .map-content-con {
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .contact-section-left,
  .contact-section-right {
    width: 95%;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
  }

  .contact-info-card P {
    height: 100%;
  }

  .contact-section-middle {
    width: 100%;
    margin-top: 0;
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .mapembed,
  .contact-info-card {
    height: auto;
    min-height: 500px;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    margin-top: 10px;
    overflow-y: visible;
  }

  .contact-info-card {
    padding: 25px !important;
  }

  .mapembed {
    padding: 0 !important;
    min-height: 400px;
  }

  .mapembed iframe {
    height: 100%;
    min-height: 400px;
  }

  /* Improve mobile contact method spacing */
  .contact-method {
    margin-bottom: 20px !important;
    padding: 15px !important;
  }

  .emergency-notice {
    margin-bottom: 25px !important;
    padding: 12px 18px !important;
    font-size: 0.95em;
  }

  .contact-cta {
    margin-top: 15px !important;
    padding-top: 10px !important;
  }

  .cta-button {
    padding: 14px 25px !important;
    font-size: 1.1em !important;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .phone-number {
    font-size: 1.4em !important;
    margin: 8px 0 !important;
  }

  .contact-details h3 {
    font-size: 1.2em !important;
    margin-bottom: 10px !important;
  }

  .contact-details p {
    font-size: 1em !important;
    line-height: 1.5 !important;
  }

  /* Mobile Footer */
  .footercontent {
    flex-direction: column;
    width: 100%;
    gap: 30px;
    padding: 20px;
  }

  .footerleft,
  .footerright,
  .footerstart {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footerlogo {
    width: 150px;
  }

  .socialmedia {
    justify-content: center;
  }

  .footerleft h2,
  .footerright h2 {
    font-size: 1.2em;
  }

  .footerleft p,
  .footerright p {
    font-size: 0.9em;
  }
}
