/* Font imports */
@font-face {
  font-family: "Tomsen Regular";
  src: url("assets/fonts/Tomsen Regular.woff2") format("woff2"),
    url("assets/fonts/Tomsen Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tomsen Heavy";
  src: url("assets/fonts/Tomsen Heavy.woff2") format("woff2"),
    url("assets/fonts/Tomsen Heavy.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap");

/* Universal styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 16px;
  overflow: hidden;
  height: 100vh;
}

body {
  font: 1rem/1.5 "Tomsen Regular", "Cormorant Garamond", Arial, sans-serif;
  color: #333;
  background: #f4f3f4;
  margin: 0;
  line-height: 1.5;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: hidden;
  height: 100vh;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
}

/* Index page styles */
.PageWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: fixed;
  height: 100vh;
  flex-grow: 1;
  width: calc(100% - 280px);
  margin-left: 280px;
  box-sizing: border-box;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Content transition animations */
@keyframes slideInFromBottom {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutToTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}

/* Scroll-driven upward slide animation */
@keyframes scrollSlideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}

.content-enter {
  animation: slideInFromBottom 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  will-change: transform, opacity;
}

/* Initial hidden state for page content to prevent flicker */
.Home,
.Service1,
.Service2,
.Locations,
.AboutUs,
.Quotations {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Override initial state when animation is applied */
.Home.content-enter,
.Service1.content-enter,
.Service2.content-enter,
.Locations.content-enter,
.AboutUs.content-enter,
.Quotations.content-enter {
  opacity: 1;
  transform: translateY(0);
}

/* Make content visible for standalone pages */
.standalone-page .Home,
.standalone-page .Service1,
.standalone-page .Service2,
.standalone-page .Locations,
.standalone-page .AboutUs,
.standalone-page .Quotations {
  opacity: 1;
  transform: translateY(0);
}

.content-exit {
  animation: slideOutToTop 0.3s ease-in forwards;
}

.scroll-slide-up {
  animation: scrollSlideUp 0.3s ease-out forwards;
}

/* Initial state for content that will be animated */
.PageWrapper {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease-out;
}

.PageWrapper::-webkit-scrollbar {
  display: none;
}

.MainContentContainer {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  flex: 1 1 auto;
  position: fixed;
  top: 0;
  left: 0;
}

.NavSection {
  width: 280px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 100;
  background: #f4f3f4;
  overflow: hidden;
}

.NavContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2.259rem;
  padding: 0 1rem;
}

.NavFrame {
  width: 100%;
  max-width: 14.31rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
}

.NavHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: 1;
}

.Logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin-top: 1.8rem;
  flex: 0 0 auto;
}

.LogoMain {
  width: 146.253px;
  height: 25.646px;
  flex-shrink: 0;
  color: #000000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.LogoSubtitle {
  width: 146.253px;
  height: 25.646px;
  flex-shrink: 0;
  color: #000000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.NavSpacer--top {
  flex: 45; /* 45% of the available space */
}

.NavigationItems {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 10rem;
  align-items: center;
  flex: 0 0 auto;
}

.NavSpacer--bottom {
  flex: 55; /* 55% of the available space */
}

.NavItem {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 0.85em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.NavItem:hover {
  opacity: 0.7;
}

.NavItem--active {
  font-family: "Tomsen Heavy", "Tomsen Regular", Arial, sans-serif;
  font-weight: 700;
}

.NavItem[data-home] {
  font-weight: 600;
  padding-bottom: 0.25rem;
}

.BusinessCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.CardTitle {
  text-align: center;
  margin-bottom: 1.188rem;
}

.CardTitleMain {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.15;
  color: #545454;
  text-transform: uppercase;
}

.CardTitleSub {
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: 0.626rem;
  line-height: 1.15;
  color: #000000;
  margin-top: 0.188rem;
}

.CardLocation {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.677rem;
  line-height: 0.94;
  color: #000000;
  text-align: center;
  margin-bottom: 1.125rem;
}

.CardEmail {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #707070;
  text-align: center;
  margin-bottom: 0.5rem;
}

.CardEmail a {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #707070;
  text-decoration: none;
  text-align: center;
}

.CardEmail a:hover {
  color: #707070;
  text-decoration: none;
}

.CardPhone {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 1.4;
  color: #707070;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  cursor: pointer;
}

.CardPhone::after {
  content: "+61 424 005 437";
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1.4px dotted #000000;
  padding: 0.4rem 1.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.5rem;
  pointer-events: none;
}

.CardPhone:hover::after {
  opacity: 1;
  visibility: visible;
}

.BorderLine {
  position: absolute;
  right: 0;
  top: 3vh;
  width: 0.05rem;
  height: 94vh;
  background: #000000;
}

/* Home page styles */
.Home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

.ContentColumn {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
}

.HeroText {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 35rem;
}

.HeroTitleLine1 {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.9375rem; /* 31px */
  line-height: 1.73; /* 27.7136px line-height equivalent */
  letter-spacing: -0.02em; /* -0.62px tracking converted to em */
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
}

.HeroTitleLine2 {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 300;
  font-size: 1.5rem; /* 24.9891px */
  line-height: 1.11; /* 27.7136px line-height equivalent */
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.875rem;
  text-align: left;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
  -webkit-text-stroke-width: 2.2px;
  -webkit-text-stroke-color: #000000;
  text-stroke-width: 2.2px;
  text-stroke-color: #000000;
  paint-order: stroke fill;
  margin-left: 5.8rem; /* Move further left to better align */
}

.HeroSubtitle {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1469rem; /* 19.6305px */
  line-height: 1.41; /* 27.7136px line-height equivalent */
  text-transform: uppercase;
  letter-spacing: 0.02em;
  -webkit-text-stroke-width: 0.3px;
  -webkit-text-stroke-color: #000000;

  color: #4f4e4e;
  max-width: 32.875rem; /* 526px */
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  margin-top: 3rem;
}

.RequestQuoteButtonContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: 0;
}

.RequestQuoteButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.HomeWhiteDottedBox {
  background: #ffffff;
  border: 1.4px dotted #000000;
  padding: 0.839rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  box-sizing: border-box;
  transition: border 0s;
}

.HomeCharcoalBox {
  background: #333333;
  padding: 1.049rem 1.049rem 0.881rem 1.049rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.HomeQuoteText {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 0.881rem;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.HomeArrows {
  display: flex;
  justify-content: center;
  align-items: center;
}

.HomeArrowsIcon {
  width: 1.2192rem; /* 20% bigger: 1.016rem * 1.2 */
  height: 1.032rem; /* 20% bigger: 0.86rem * 1.2 */
}

.HomeArrowsIcon path {
  stroke: #000000;
}

.RequestQuoteButton:hover .HomeArrowsIcon {
  transform: translateY(2px);
}

.PhotoColumn {
  width: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.PhotoFrame {
  width: 100%;
  height: 94%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 2rem 1.5rem 2rem;
  gap: 0.75rem;
}

.PhotoBg {
  flex: 1;
  width: 100%;
  background-image: url("../images/home-optimized.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 0;
  /* Smooth loading transition */
  background-color: #f4f3f4; /* Fallback color while loading */
  transition: opacity 0.3s ease-in-out;
  /* Add a subtle loading animation */
  position: relative;
}

/* Loading state before image loads */
.PhotoBg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
  z-index: 1;
}

/* Remove shimmer once image is loaded */
.PhotoBg.loaded::before {
  display: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.PhotoText {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.4;
  color: #000000;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  align-self: flex-start;
  width: 100%;
}

/* Service1 page styles */
.Service1 {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.ServiceContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  text-align: center;
}

.ServicesDescription {
  margin-bottom: 2rem;
}

.ServicesDescriptionText {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.19;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  max-width: 75rem;
  margin: 0 auto;
}

.ServiceBox {
  width: 100%;
  max-width: 75rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #000000;
}

.ServicesHeader {
  background: #f4f3f4;
  text-align: center;
  border-bottom: 1px solid #000000;
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.194;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  padding: 0.5rem 0rem;
}

.ServicesItems {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #ffffff;
  gap: 0rem;
}

.ServiceCard {
  flex: 1 1 50%;
  min-width: 20rem;
  padding: 2rem;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.ServiceCard > div:first-child {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1;
  flex-shrink: 0;
}

.ServiceCardText {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #000000;
  text-align: left;
  max-width: 30rem;
  margin: 0;
  padding: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .ServiceCard {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* Service2 page styles */
.Service2 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ServiceContent2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
}

.StepDescription {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 600px;
  text-align: center;
}

.ServicePhoto {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

/* Service2 specific classes */
.Service2MainContentContainer {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.Service2ContentColumn {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
}

.Service2Content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
}

.Service2Content img {
  align-self: flex-start;
  cursor: pointer;
  margin-top: 2rem;
}

.Service2StepDescription {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #000000;
  text-align: left;
  max-width: 75rem;
  margin: 0;
}

.Service2PhotoColumn {
  width: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  justify-content: center;
}

.Service2PhotoFrame {
  width: 100%;
  height: 60%;
  min-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 0.813rem 2rem;
  gap: 1rem;
}

.Service2PhotoBg {
  flex: 1;
  width: 100%;
  background-image: url("../images/service.png");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}

.Service2Caption {
  text-align: left;
  width: 100%;
}

.Service2Caption p {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.4;
  color: #000000;
  text-align: left;
  margin: 0;
}

.Service2ServicePhoto {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

/* Locations page styles */
.Locations {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.LocationsLeftContainer {
  position: absolute;
  z-index: 2;
  max-width: 500px;
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  background-color: #f4f3f4a8;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid #000000;
}

.LocationsHeaderText {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: #333;
}

.LocationsLine {
  width: 90%;
  height: 1px;
  background: #000000;
  margin: 0.3rem 0;
  align-self: flex-start;
}

.LocationsText {
  font-family: "Cormorant Garamond", serif !important;
}

.LocationsMapContainer {
  position: absolute;

  /* height: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.LocationsMapPlaceholder {
  width: 80%;
  height: 100%;
  object-fit: cover;
}

.LocationsMapContainer img {
  border: 1px solid #000000;
}

.Toggle {
  display: flex;
  gap: 1rem;
}

.SydneyToggle,
.MelbourneToggle {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
}

.SydneyToggle {
  background: #000000;
  border: none;
}

.MelbourneToggle {
  background: transparent;
  border: 1px solid #000000;
}

.CityList {
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  width: 100%;
  align-content: center;
  justify-content: center;
}

.CityList__Sydney,
.CityList__Melbourne {
  width: 6rem;
}

.CityList__Sydney {
  text-align: right;
}

.CityList__Melbourne {
  text-align: left;
}

.CityList p {
  font-family: "Tomsen Regular", Arial, sans-serif;
  margin: 0;
  text-transform: uppercase;
}

.LocationsTextAnnouncement {
  font-family: "Tomsen Regular", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
}

.PostCodeCheck {
  display: flex;
  flex-direction: column;
  /* border: 1px solid #000000; */
  /* padding: 1rem; */
  gap: 0.75rem;
  text-align: center;
}

.PostCodeInputGroup {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  border: 1px solid #000000;
  height: 3rem;
  background-color: #f4f3f4;
}

.PostCode {
  font-family: "Tomsen Regular", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: #000000;
  width: 50%;
}

.PostCodeInput {
  width: 50%;
  height: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border-left: 1px solid #000000;
  border-right: none;
  border-top: none;
  border-bottom: none;
  border-radius: 0;
  font-family: "EB Garamond", "Times New Roman", serif;
  box-sizing: border-box;
  text-align: center;
}

.PostCodeInput:focus {
  outline: none;
  border-color: #000000;
}

.PostCodeInput::placeholder {
  color: #878787;
  opacity: 1;
}

.PostCodeButton {
  position: relative;
  flex-shrink: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  box-sizing: border-box;
  border: 1px solid #000000;
  background-color: #f4f3f4;
  cursor: pointer;
  font-family: "Tomsen Heavy", Arial, sans-serif;
  font-size: 11.78px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #000000;
}

.PostCodeButton::after {
  content: "";
  display: block;
  height: 1px;
  background-color: black;
  margin-top: 5px;
}

.PostCodeResult {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: #333;
  min-height: 0;
  text-align: center;
  max-width: 300px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  display: none;
  margin: 0;
}

.PostCodeForm {
  background: #ffffff;
  color: #666666;
  font-family: "EB Garamond", "Times New Roman", serif;
  padding: 0.5rem 1rem;
  flex: 1;
  text-align: center;
}

/* AboutUs page styles */
.AboutUs {
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.AboutUsContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  text-align: left;
  font-family: "EB Garamond", "Times New Roman", serif;
}

.AboutUsContent p {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #000000;
  text-align: justify;
}

.AboutUsText {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #000000;
  text-align: justify;
  margin-bottom: 2rem;
}

.AboutUsHeading {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #000000;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0 0;
}

.AboutUsImagesContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  margin-top: 1rem;
}

/* .AboutUsImageBox {
  background: #ffffff;
  display: inline-block;
} */

.AboutUsImagesFrame {
  background: white;
  padding: 2.5%;
}

.AboutUsImages {
  width: 100%;
  height: auto;
  /* margin: 2rem; */
  /* position: relative; */
}

/* Quotations page styles */
.Quotations {
  position: relative;
  height: 514px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.ContactBox {
  /* position: relative;
  height: 514px;
  min-width: 570px;
  width: 570px; */
}

.ContactBox__Inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 52px;
  height: 514px;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  width: 570px;
  max-width: 100%;
}

.ContactDescription {
  height: 121px;
  position: relative;
  width: 100%;
}

.ContactDescription__Inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 121px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  width: 100%;
}

.ContactHeading {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: #000000;
  height: 26px;
  line-height: 33.27px;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  margin: 0;
}

.ContactLine {
  height: 0;
  position: relative;
  width: 318.15px;
  border-bottom: 0.69px solid #000;
}

.ContactDescription p {
  font-family: "Cormorant Garamond", serif;
  height: 59px;
  line-height: 25.65px;
  font-style: normal;
  position: relative;
  flex-shrink: 0;
  color: #000000;
  font-size: 18px;
  text-align: justify;
  width: 100%;
  margin: 0;
}

.ContactForm {
  background: #f4f3f4;
  height: 240px;
  min-height: 240px;
  position: relative;
  width: 100%;
}

.ContactForm__Grid {
  box-sizing: border-box;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, minmax(0, 1fr));
  height: 240px;
  min-height: inherit;
  overflow: clip;
  padding: 0;
  position: relative;
  width: 100%;
}

.ContactForm__Input {
  height: 32px;
  position: relative;
  flex-shrink: 0;
  border: none;
  border-bottom: 0.7px solid #000000;
  background: transparent;
  padding: 0 11px;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: #000000;
  transition: background 0.2s ease;
}

.ContactForm__Input:focus {
  background: #ffffff;
  outline: none;
}

.ContactForm__Input::placeholder {
  color: #878787;
  opacity: 1;
}

.ContactForm__LocationBtn {
  position: relative;
  flex-shrink: 0;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 87px;
  box-sizing: border-box;
  border: 1.4px dotted #000000;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
  transition: border 0s;
}

.ContactForm__LocationBtn span {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 11.78px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #000000;
  width: 100%;
}

.ContactForm__LocationBtn--active {
  border: 0.7px solid #000000;
}

.ContactForm__LocationBtn--active span {
  font-family: "Tomsen Heavy", Arial, sans-serif;
}

.ContactForm__LocationBtn--active::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1.04px;
  background: #000;
}

.ContactForm__Textarea {
  grid-area: 4 / 1 / span 2 / span 2;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
  border: 0.7px solid #000000;
  padding: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  resize: none;
  height: 100%;
  outline: none;
}

.ContactForm__Textarea:focus {
  outline: none;
}

.ContactForm__SubmitWrapper {
  flex: 1 0 0;
  min-height: 1px;
  min-width: 1px;
  position: relative;
  flex-shrink: 0;
  width: 113px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ContactForm__SubmitBtn {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 113px;
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 14.56px;
  color: #000000;
  text-align: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  line-height: normal;
}

.ContactForm__SubmitLine {
  width: 62.38px;
  height: 1.39px;
  background: #000000;
}

/* Custom validation bubble styling - Enhanced for better browser support - v2.0 */
::-webkit-validation-bubble {
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
  background: #ffffff !important;
  -webkit-appearance: none !important;
}

::-webkit-validation-bubble-message {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 14px !important;
  color: #000000 !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 8px 12px !important;
  -webkit-appearance: none !important;
}

::-webkit-validation-bubble-arrow {
  border-color: #000000 transparent transparent transparent !important;
  border-width: 5px 5px 0 5px !important;
  -webkit-appearance: none !important;
}

::-webkit-validation-bubble-icon {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Additional validation styling for better cross-browser support */
input:invalid,
textarea:invalid {
  box-shadow: none !important;
}

/* Firefox validation styling */
input::-moz-ui-invalid,
textarea::-moz-ui-invalid {
  box-shadow: none !important;
}

/* Force webkit validation appearance reset */
input[type="email"]::-webkit-validation-bubble,
input[type="text"]::-webkit-validation-bubble,
textarea::-webkit-validation-bubble {
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
  background: #ffffff !important;
}

/* Media queries */
@media (min-width: 768px) {
  .NavItem {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  body {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .NavSection {
    width: 100%;
    position: relative;
    height: auto;
  }

  .PageWrapper {
    width: 100%;
    margin-left: 0;
    padding: 20px;
    min-height: 100vh;
    height: auto;
  }

  .MainContentContainer {
    flex-direction: column;
    height: auto;
  }
}

@media (max-width: 768px) {
  .PageWrapper {
    margin-left: 0;
    padding-top: 60px;
  }

  .Contact {
    padding: 3vh 4vw;
  }

  .ContactDecription,
  .ContactBox {
    width: 100%;
  }
}

.MobileUnderConstruction {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f4f3f4;
  z-index: 9999;
  overflow: hidden;
}

.MobileUnderConstruction__Content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 1.5rem;
  text-align: center;
  gap: 1.5rem;
  box-sizing: border-box;
  max-width: 100vw;
}

.MobileUnderConstruction__Message {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #000000;
}

.MobileUnderConstruction__Logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
}

.MobileUnderConstruction__LogoMain {
  color: #000000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.MobileUnderConstruction__LogoSubtitle {
  color: #000000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.MobileUnderConstruction__Details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.MobileUnderConstruction__Location {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.MobileUnderConstruction__Email {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.MobileUnderConstruction__Phone {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
}

.MobileUnderConstruction__LogInButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  text-decoration: none;
}

.MobileUnderConstruction__LogInWhiteDottedBox {
  background: #ffffff;
  border: 1.4px dotted #000000;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 10rem;
  max-width: calc(100vw - 4rem);
  box-sizing: border-box;
  transition: border 0.2s ease;
}

.MobileUnderConstruction__LogInText {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 0.881rem;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  letter-spacing: 0.11em;
  white-space: nowrap;
  margin-top: 2px;
}

.MobileUnderConstruction__LogInButton:hover
  .MobileUnderConstruction__LogInWhiteDottedBox {
  border-color: #545454;
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
  }

  .NavContent,
  .BorderLine {
    display: none !important;
  }

  .NavSection {
    width: 100vw;
    padding: 0;
    overflow: hidden;
  }

  .MobileUnderConstruction {
    display: block;
  }

  .PageWrapper {
    display: none !important;
  }
}

.ServiceRequestQuoteButton {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.ServiceWhiteDottedBox {
  background: #ffffff;
  border: 1.4px dotted #000000;
  padding: 0.839rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  transition: border 0s;
}

.ServiceQuoteText {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.793rem;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  letter-spacing: 1.3px;
}

.ServiceArrows {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ServiceArrowsIcon {
  width: 0.672rem;
  height: 0.672rem;
  display: block;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.ServiceArrowsIcon path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ServiceRequestQuoteButton:hover .ServiceArrowsIcon {
  transform: translateY(2px);
}

.LogInButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.LogInWhiteDottedBox {
  background: #ffffff;
  border: 1.4px dotted #000000;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  box-sizing: border-box;
  transition: border 0.2s ease;
}

.LogInText {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 0.881rem;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  letter-spacing: 0.11em;
  white-space: nowrap;
  margin-top: 2px;
}

.LogInButton:hover .LogInWhiteDottedBox {
  border-color: #545454;
}

.Copyright {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  color: #707070;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* Careers page styles */
.Careers {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.ServiceEmail {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #000000;
  text-align: center;
  margin-top: 1rem;
}

.CardLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.CardLink {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  color: #707070;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition: opacity 0.2s ease;
}

.CardLink:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* PROJECT RULE: Use 'Tomsen' font-family for all text instead of P22, as Figma does not have Tomsen loaded. */

.CareersPopup {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, 0);
  width: 240px;
  min-height: 120px;
  max-width: 280px;
  background: #f4f3f4;
  border: 0.7px solid #000;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  z-index: 9999;
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 15px;
  color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  display: block;
  position: relative;
}
.CareersPopup.open {
  opacity: 1;
  pointer-events: auto;
}
.CareersPopup__headerRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 12px;
  position: relative;
}
.CareersPopup__heading {
  flex: 1 1 auto;
  color: #000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-variant: all-small-caps;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 0.5px;
  text-underline-offset: auto;
  text-underline-position: from-font;
  letter-spacing: 0;
  margin: 0 auto;
  padding-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.CareersPopup__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  z-index: 10;
}
.CareersPopup__close svg {
  width: 10px;
  height: 9px;
  display: block;
}
.CareersPopup__message {
  position: static;
  width: 100%;
  color: #000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  font-variant: all-small-caps;
  margin: 0 0 12px 0;
  /* padding: 0; */
  display: block;
  padding-left: 1rem;
  padding-right: 1rem;
}
.CareersPopup__email {
  position: static;
  width: 100%;
  color: #707070;
  text-align: center;
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 15px 0 15px 0;
  padding: 0;
  display: block;
}
.CareersPopup__email a {
  color: #707070;
  text-decoration: none;
  font-size: 121x;
  font-family: "Tomsen Regular", Arial, sans-serif;
}
.CareersPopup.above-link {
  left: 50%;
  top: auto;
  bottom: 0;
  transform: translate(-50%, calc(-100% - 12px));
}

/* Privacy Policy Page Styles */
.PrivacyPolicy {
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  overflow: hidden;
}

.PrivacyPolicyContent {
  background: #ffffff;
  border: 0.7px dashed #000000;
  width: 100%;
  height: calc(100vh - 6rem);
  max-width: 1000px;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.PrivacyPolicyTitle {
  text-align: center;
  padding: 30px 60px;
  flex-shrink: 0;
  border-bottom: 1px solid transparent;
}

.PrivacyPolicyTitle h1 {
  color: #000;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-variant: all-small-caps;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 0.5px;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 0;
}

.PrivacyPolicyBody {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  line-height: normal;
  color: #000000;
  flex: 1;
  overflow-y: auto;
  padding: 0 60px 60px;
}

.PrivacyPolicyBody p {
  margin-bottom: 0;
  line-height: normal;
  display: block;
}

.PrivacyPolicyBody p.section-title {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0.5px;
  text-underline-position: from-font;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
}

.PrivacyPolicyBody ul {
  list-style-type: disc;
  margin-bottom: 0;
  padding-left: 1.5em;
}

.PrivacyPolicyBody li {
  margin-bottom: 0;
  line-height: normal;
}

.PrivacyPolicyBody a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0.5px;
  text-underline-position: from-font;
  color: #000000;
  cursor: pointer;
}

/* Mobile responsiveness for privacy page */
@media (max-width: 767px) {
  .PrivacyPolicy {
    padding: 1rem;
    height: 100vh;
  }

  .PrivacyPolicyContent {
    height: calc(100vh - 2rem);
  }

  .PrivacyPolicyTitle {
    padding: 20px;
  }

  .PrivacyPolicyTitle h1 {
    font-size: 25px;
  }

  .PrivacyPolicyBody {
    font-size: 14px;
    padding: 0 20px 40px;
  }
}

.service-indicators {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.NavItem--active .service-indicators {
  opacity: 1;
  visibility: visible;
}

.service-indicator {
  width: 6px;
  height: 6px;
  background-color: white;
  border: 0.7px solid black;
  border-radius: 1px;
}

.service-indicator.active {
  background-color: black;
  border-color: black;
}

/* Map-related styles - organized in dedicated section */
.LocationsLine {
  width: 100%;
}

.LocationsText,
.PostCodeResult {
  font-family: "Cormorant Garamond", serif !important;
}

.PostCodeResult {
  font-size: 1rem !important;
}

.PageContainer {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f4f3f4;
  overflow: hidden;
}

.LocationsLeftContainer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.MapsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  max-width: 1766px;
  padding: 20px;
  box-sizing: border-box;
}

.mapPanel {
  flex: 1 1 50%;
  aspect-ratio: 883 / 624;
  position: relative;
  overflow: hidden;
  border: 0.19mm solid black;
}

.mapPanel:first-child {
  border-right-style: none;
}

.mapPanel:last-child {
  border-left-style: none;
}

#map-sydney,
#map-victoria {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.PostCodeButton:hover {
  text-decoration: underline;
}

.map-title {
  position: absolute;
  top: 1.5rem;
  z-index: 401;
  font-family: "Tomsen Regular", sans-serif;
  font-size: 20px;
  color: #333;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.mapPanel:first-child .map-title {
  left: 36%;
}

.mapPanel:last-child .map-title {
  left: 64%;
}
