/* style.css */

@import url("variables.css");

/* === NAVIGATION BAR === */

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 60px;
	z-index: 10;
	background: transparent;
}

.main-navbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 32px 60px 0 60px;
	width: 100%;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.logo {
	font-family: 'Frontage';
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	margin-right: 48px;
	white-space: nowrap;
}

nav a {
	margin: 0 20px;
	font-size: 14px;
	font-weight: 500;
	color: white;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	flex: none;
	justify-content: flex-start;
}

.desktop-nav a {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 400;
	text-decoration: none;
	margin: 0 12px;
	transition: color 0.2s;
}

.desktop-nav a:hover {
	color: #bdbdbd;
}

.nav-buttons {
	display: flex;
	align-items: center;
	gap: 18px;
	/* Increased gap for better spacing */
	margin-left: auto;
}

.btn-dark,

.btn-light {
	min-width: 110px;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: background 0.2s, color 0.2s;
}

.btn-dark {
	background: #3d403a;
	color: #fff;
	border: none;
}

.btn-dark:hover {
	background: transparent !important;
	color: #4f5145;
	border: 1px solid #4f5145;

}

.btn-light {
	background: #efede7;
	color: #3d403a;
	border: 2px solid #3d403a;
}

.btn-light:hover {
    background: transparent;
    color: #efede7;
    border-color: #efede7;
}

.hero-quote-btn {
	background: #fff;
	color: #3d403a;
	border: 1px solid #3d403a;
	margin-top: 10px;
	min-width: 180px;
	font-size: 15px;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* === HERO SECTION === */

/*.hero {*/
/*	height: 700px;*/
/*	background: url("../images/banner/banner.png") no-repeat center center/cover;*/
/*	display: flex;*/
/*	align-items: flex-end;*/
/*	justify-content: center;*/
/*	position: relative;*/
/*	text-align: center;*/
/*	padding-top: 120px;*/
/*	padding-bottom: 80px;*/
/*}*/

.hero {
    background: url("../images/banner/banner.png") no-repeat center center/cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 350px;
    padding-bottom: 180px;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:rgb(150, 94, 62, 0.1);
	z-index: 1;
}

.hero-overlay {
	padding: 0 20px 40px 20px;
	color: white;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.subheading {
    font-size: 18px;
    letter-spacing: 1.5px;
    color: #e2e2e2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 76px;
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.13);
}

.hero-main-btn {
	padding: 14px 20px;
	min-width: 184px;
	font-size: 18px;
	background-color: #4f5145;
	color:#efede7;
	margin-top: 0px;
	border: 1px solid #4f5145 !important;
}

.hero-quote-btn {
    padding: 14px 20px;
	background: #fff;
	color: #3d403a;
	border: 1px solid #3d403a;
	margin-top: 10px;
	min-width: 184px;
	font-size: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* === ESTIMATE FORM === */

.estimate-form {
    background-color: #c7c6bf;
    max-width: 660px;
    margin: -110px auto 40px;
    padding: 30px;
    border-radius: 14px;
    position: relative;
    z-index: 5;
}

.estimate-form h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: center;
    color: #4f5145;
    margin-bottom: 7px;
    font-weight: 300;
    margin-top: 30px;
}

.estimate-form p {
    text-align: center;
    font-size: 18px;
    color: #4b4b4b;
    margin-bottom: 28px;
    font-weight: 200;
    letter-spacing: 0.5px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: space-between;
}

.form-submit button.btn.btn-dark {
    padding: 10px 50px;
    font-weight: 300;
    border: 1px solid #4f5145;
}

.form-row>div {
    width: 31%;
}

.form-row .iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags {
    margin-top: 6px;
}

.form-row.form-row-2 > div:nth-child(2) {
    width: 65%;
}

.form-row>div input, .form-row>div select, .form-row>div textarea {
    width: 100%;
}

.form-row:nth-of-type(4) input {
	width: 100%;
}

input, select, textarea {
	padding: 10px;
	font-size: 15px;
	border: 1px solid #4f5145;
	border-radius: 7px;
	background: #c7c6bf;
	color: #333;
	margin-top: 6px;
}

.form-row label {
    color: #4f5145;
    font-weight: 300;
    font-size: 16px;
    opacity: 0.7;
}

.form-submit {
	margin-top: 22px;
	text-align: center;
}

.btn {
	padding: 12px 28px;
	border-radius: 999px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	font-family: var(--font-main);
	transition: 0.2s ease;
	font-weight: 300;
}

.btn-dark {
	background-color: #4f5145;
	color: rgba(255, 255, 255, 0.795);
}

.btn-light {
	background-color: #efede7;
	color: #3d403a;
	border: 1px solid #3d403a;
}

/* === SERVICES SECTION === */

.services-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    color: #4f5145;
    letter-spacing: 1px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1.2;
}

.services-heading span {
	font-weight: 600;
}

.services-section .services-img {
	object-fit: cover;
	height: 160px;
	width: 100%;
	max-width: 210px;
	min-width: 120px;
	border-radius: 0;
	flex-shrink: 0;
}

.services-btn {
	font-size: 0.85rem;
	padding: 0.25rem 1.1rem;
	border-radius: 0.25rem;
	margin-top: 0.5rem;
	line-height: 1.2;
}

/* Service Card */

.service-card {
    display: flex;
    flex-direction: row;
    background: #c7c6bf;
    width: 48%;
    margin-bottom: 50px;
}

.service-img {
	width: 100%;
	min-width: 120px;
	max-width: 290px;
	object-fit: cover;
	background: #ccc;
	flex-shrink: 0;
}

.service-content {
	padding: 32px 28px 28px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

.service-content p {
	font-size: 1rem;
	margin-bottom: 1.2rem;
	color: #4f5145;
	font-weight: 200;
	line-height: 1.5;
}

/* === LOGO ROW === */

.logo-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-right: 48px;
}

.space-section {
	margin-top: 50px;
}

/* --- Mobile Menu Overlay --- */

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f9f7f1;
  z-index: 1000;
  padding: 0;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.close-mobile-menu {
	position: absolute;
	top: 24px;
	right: 24px;
	background: none;
	border: none;
	font-size: 32px;
	color: #3d403a;
	cursor: pointer;
	z-index: 101;
	line-height: 1;
	padding: 0;
}

.mobile-menu .dropdown-menu {
	display: none;
	flex-direction: column;
	gap: 0;
	margin-top: 10px;
	margin-bottom: 0;
	width: 100%;
	padding-left: 18px;
	animation: dropdownFade 0.25s;
}

@keyframes dropdownFade {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

to {
		opacity: 1;
		transform: translateY(0);
	}

}

.mobile-dropdown.open .dropdown-menu {
	display: flex;
	flex-direction: column;
}

.mobile-book-btn {
	width: 90%;
	margin: 30px auto 32px auto;
	font-size: 20px;
	padding: 16px 0;
	display: block;
	border-radius: 32px;
}

/* --- Desktop Dropdown --- */

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

.dropdown-toggle::after {
	content: " ▼";
	font-size: 12px;
	margin-left: 4px;
}

.dropdown-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 32px;
	min-width: 220px;
	background: #fff;
	color: #3d403a;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	z-index: 100;
	flex-direction: column;
	padding: 10px 0;
}

.dropdown-menu a {
	color: #3d403a;
	padding: 10px 24px;
	display: block;
	font-size: 15px;
	text-align: left;
	white-space: nowrap;
	transition: background 0.2s;
}

.dropdown-menu a:hover {
	background: #f3f1ec;
}

.dropdown:hover .dropdown-menu,

.dropdown:focus-within .dropdown-menu {
	display: block;
}

/* === SERVICES SECTION === */

.services-heading-sub {
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #4f5145;
    padding-top: 30px;
    text-transform: uppercase;
    font-weight: 300;
}

/* === LOGO ROW === */

/* --- Mobile Menu Overlay --- */

.mobile-menu a,

.mobile-menu .dropdown-toggle {
	justify-content: center;
	/* Center text and icon */
	text-align: center;
	width: 100%;
	font-weight: 100;
	font-size: 22px;
	color: #4f5145 !important;
}

.mobile-menu .dropdown-arrow {
	/* font-size: 18px; */
	margin-left: 8px;
	transition: transform 0.2s;
}

}

/* === SERVICES SECTION === */

.services-header {
	text-align: center;
	margin-bottom: 3rem;
}

.service-content {
	padding: 32px 28px 28px 28px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex: 1;
}

/* === LOGO ROW === */

/* --- Mobile Menu Overlay --- */

.mobile-menu-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1;
	margin-top: 155px;
	gap: 60px;
	width: 100%;
	padding-left: 0;
}

}

/* --- Desktop Dropdown --- */

.dropdown:hover .dropdown-menu,

/* === SERVICES SECTION === */

/* Services Section Full Width */

.services-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
}

.service-content h4 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	font-weight: 300;
}

.btn-service {
	font-size: 14px;
	padding: 0.5rem 2rem;
	border:none !important;
	background: #4f5145 !important;
	transition: background 0.2s;
	width: fit-content;
	font-weight: 300;
}

.btn-service:hover {
	background: #efede7 !important;
	color: #4f5145;
	border: 1px solid #4f5145;
}

/* === LOGO ROW === */

.form-label{
	margin-top: 10px !important;
    color: #4f5145;
    font-weight: 200;
}

.nav-buttons .btn-dark {
    border: 1px solid #4f5145;
}

.nav-buttons .btn-dark:hover, .hero-main-btn:hover {
    background: #efede7 !important;
    color: #4f5145;
}

.nav-buttons .btn {
    padding: 10px 26px;
}

header.darkHeader {
    background: #4f5145c4;
    padding: 12px 60px 12px 60px;
}

header.darkHeader.inner-page-header .desktop-nav a, header.darkHeader.inner-page-header .logo {
    color: #efede7;
}

header.darkHeader.inner-page-header .desktop-nav .dropdown-menu a {
    color: #4f5145;
}

/* responsive.css */

@import url("variables.css");

/* Hide mobile menu on desktop */

@media (min-width: 901px) {
  .mobile-menu,
  .call-now-mobile,
  .hamburger {
    display: none !important;
  }

.main-navbar {
    justify-content: space-between;
}

.nav-buttons {
    margin-left: 0;
}

.why-choose-section {
    padding: 100px 0px 30px;
}

}

@media (min-width: 1380px){
    .services-row{
    max-width: 1360px
}

}

@media (min-width: 2400px) {
    
    .service-card {
    width: 32%;
}

.services-row {
        max-width: 2400px;
        justify-content: flex-start;
        column-gap: 40px;
    }

}

/* Responsive: Stack on mobile */

@media (max-width: 1100px) {

#domestic-card{
  padding: 0px 0px 0px 0px!important;margin-top: 50px!important;
}

#domestic-title

{
  width:300px;line-height: 50px;
}

.bond-guarantee-title{
  text-align:center; font-size:2rem;  margin-bottom:38px;
  padding-top: 30px;
}

.faq-tab-dropdown-title {
    display: block;
  }

.faq-section {
    margin: 0 auto 10px auto;
  }

.faq-container {
    padding:20px 20px 20px 20px;
  }

  /* Show dropdown only on mobile */

.faq-tab-dropdown {
    display: block;
    width: 100%;
    font-family: var(--font-main);
    padding: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #3d403a;
    border-radius: 4px;
    background-color: #f6f4ee;
    color: #3d403a;
  }

.faq-tabs {
    display: none;
  }

.about-section {
    display: none;
  }

.btn-service {
    margin: 0 auto;
    width: 50% !important;
  }


.mobile-menu .dropdown-menu {
    max-height: none !important;
    overflow: visible !important;
  }

.service-content h4 {
    font-size: 25px !important;
    margin-bottom: 15px !important;
  }

.service-content p {
    font-weight:400;
    font-size: 1.1rem;
  }

.service-card {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0px;
    margin-bottom: 30px;
  }

.service-img {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
  }

.btn-dark {
    background: #3d403a;
    line-height: 2;
    width: 100%;
    font-size: 18px;
    border: none;
  }

  input,

  select,

textarea {
    padding: 15px;
    font-size: 15px;
    border: 1px solid #4f5145;
    border-radius: 7px;
    background: #c7c6bf;
    color: #333;
    width: 100%;
    margin-top: 10px;
  }

label {
    font-size: 20px;
    font-weight: 300;
  }

.form-row > div {
    min-width: 100%;
  }

.hero-title {
    font-size: 60px;
    max-width: 520px;
    line-height: 1.2;
    word-break: break-word;
    margin-left: auto;
    margin-right: auto;
  }

.estimate-form {
    padding: 35px;
    margin: 20px auto;
  }

.hero {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  /* Desktop nav visible, mobile nav hidden */

.desktop-nav {
    display: flex;
    align-items: center;
  }

.desktop-nav nav a {
    color: white;
  }

.logo-row {
    width: 100%;
    justify-content: space-between;
  }

.desktop-nav {
    display: none !important;
  }

  /* Hamburger always on right in header */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 120;
  }

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #3d403a;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

.hamburger.open span:nth-child(2) {
    opacity: 0;
  }

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* --- Mobile Menu Overlay --- */


.close-mobile-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    color: #3d403a;
    cursor: pointer;
    z-index: 101;
    line-height: 1;
    padding: 0;
  }


.mobile-menu .dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
    margin-bottom: 0;
    width: 100%;
    padding-left: 18px;
    animation: dropdownFade 0.25s;
  }

@keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

to {
      opacity: 1;
      transform: translateY(0);
    }

  }

.mobile-menu .dropdown-menu a:hover {
    background: #ecebe6;
  }

.mobile-book-btn {
    width: 90%;
    margin: 30px auto 32px auto;
    font-size: 20px;
    padding: 16px 0;
    display: block;
    border-radius: 32px;
  }

  /* --- Desktop Dropdown --- */

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

.dropdown-toggle::after {
    content: " ▼";
    font-size: 12px;
    margin-left: 4px;
  }

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 32px;
    min-width: 220px;
    background: #fff;
    color: #3d403a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 100;
    flex-direction: column;
    padding: 10px 0;
  }

.dropdown-menu a {
    color: #3d403a;
    padding: 10px 24px;
    display: block;
    font-size: 15px;
    text-align: left;
    white-space: nowrap;
    transition: background 0.2s;
  }

.dropdown-menu a:hover {
    background: #f3f1ec;
  }

  .dropdown:hover .dropdown-menu,

.dropdown:focus-within .dropdown-menu {
    display: block;
  }

.dropdown {
    width: 100%;
  }

.mobile-dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
    height: auto;
    /* This auto-expands naturally */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
/* === Cleaned Dropdown Styles === */
.mobile-dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 0;
}

.mobile-dropdown.open .dropdown-menu {
  display: flex;
}
.mobile-dropdown .dropdown-menu a {
  font-size: 18px;
  padding: 8px 0;
  color: #4f5145;
  text-align: center;
  width: 100%;
}

.mobile-menu .dropdown-toggle {
    flex-direction: row-reverse;
    /* Reverse order: text then icon */
    justify-content: center;
    gap: 8px;
  }

.mobile-book-btn {
    font-size: 16px;
    padding: 12px 0;
  }

.logo {
    color: rgba(79, 81, 69, 1);
    letter-spacing: 4px;
    font-weight: 900;
    margin: 0 auto;
    text-align: center;
    flex: 1 1 0%;
    z-index: 2;
    font-size: 23px;
  }

.hamburger {
    display: flex !important;
    position: absolute;
    right: 18px;
    top: 63%;
    transform: translateY(-50%);
    background: none;
    border: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }

  nav,

  .nav-buttons,

.desktop-only {
    display: none !important;
  }

  nav,

  .nav-buttons,

  /* --- Desktop Dropdown --- */

  .dropdown:hover .dropdown-menu,

.service-content {
    padding: 20px 16px 18px 16px;
  }

  nav,

  .nav-buttons,

  /* Show call-now-mobile button below header */

.call-now-mobile {
    display: block;
    width: 50vw;
    padding: 15px 0;
    margin: 31px auto;
    /* ✅ Center horizontally */
    font-size: 18px;
    border: 2px solid rgba(79, 81, 69, 1);
    color: rgba(79, 81, 69, 1);
    border-radius: 30px;
    background: #efede7;

    font-weight: 400;
    box-shadow: none;
    text-align: center;
    /* optional for inner content */
  }

.mobile-dropdown .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    color: #3d403a;
    padding: 0 0 0 0;
    border: none;
    background: none;
    cursor: pointer;
  }

.mobile-dropdown .dropdown-toggle::after {
    content: none !important;
  }

.mobile-menu .dropdown-arrow {
    margin-left: 0;
    margin-right: 8px;
    order: 2;
    /* Move icon before text */
  }

  .navbar,

.main-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px 14px 0 14px;
    min-height: 60px;
    text-align: center;
  }

  nav,

  .nav-buttons,

.form-row {
    margin-bottom: 0px;
}

.form-row .iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags {
    margin-bottom: 20px;
    width: 100%;
}

.form-row label {
    font-size: 18px;
    opacity: 1;
}

input, select, textarea {
    margin-bottom: 20px;
}

.service-card:last-child {
    margin-bottom: 0;
}

.services-row {
    padding-left: 0;
    padding-right: 0;
}

.why-choose-section {
    padding: 0;
}

.how-label br {
    display: none;
}

.work-form .form-label, .work-form label {
    font-weight: 300 !important;
}

}

@media (max-width: 767px){
    
.hero-title {
    font-size: 40px;
    max-width: 340px;
}

.subheading {
    font-size: 14px;
}

.hero {
    padding-top: 80px;
    padding-bottom: 160px;
}

.estimate-form {
    margin: 20px;
}

.services-heading {
    font-size: 28px;
}

.services-header {
    margin-bottom: 3rem;
}

.services-heading-sub {
    font-size: 18px;
}

.btn-service {
    margin: 0 auto;
    width: max-content !important;
    padding: 5px 40px;
}

.btn {
	font-weight: 400;
}

.how-label {
    font-weight: 400;
}

.work-btn {
    padding: 8px 0px 12px;
    font-size: 18px;
}

.call-now-mobile {
    font-weight: 300;
    border-width: 1px;
}

.hamburger {
    top: 68%;
    transform: translateY(-38%);
}

}

/* about.css */

@import url("variables.css");

.about-breadcrumbs {
  font-family: var(--font-main);
  font-size: 1rem;
  color: #888;
  margin: 32px 0 0 0;
  padding-left: 7vw;
  letter-spacing: 0.01em;
}

.about-breadcrumbs a {
  color: var(--color-primary, #3d403a);
  text-decoration: underline;
  transition: color 0.2s;
}

.about-breadcrumbs a:hover {
  color: #222;
}

.about-hero {
  text-align: center;
  padding: 45px 0 48px 0;
  margin-top: 110px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 56px;
  color: #4f5145;
  font-weight: 300;
  margin-top: 32px;
  margin-bottom: 18px;

  opacity: 0;
  transition: opacity 2s ease; /* <-- Slower fade */
}

.about-title.visible {
  opacity: 1;
}

.about-subtitle {
  font-family: var(--font-main);
  font-size: 1.35rem;
  color: #555;
  margin-bottom: 38px;
  font-weight: 300;
}

.about-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 90vw;
}

.about-video {
    width: 100%;
    max-width: 94%;
    height: 520px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    background: #222;
}

.about-who {
  display: flex;
  align-items: stretch; /* Ensures children match height */
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 64px auto 0 auto;
  padding: 0 25px;
  padding-right:150px;
}

.about-who-img,

.about-who-content {
  flex: 1 1 0;
  max-width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-who-img img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.about-who-content {
  padding: 32px 0;
  box-sizing: border-box;
}

.about-who-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-primary, #3d403a);
  font-weight: 300;
  opacity: 0;
  transition: opacity 2s ease; /* <-- Slower fade */
  margin-bottom: 24px;
}

.about-who-title.visible {
  opacity: 1;
}

.about-who-content p {
  font-family: var(--font-main);
  font-size: 1.13rem;
  color: #4f5145;
  font-weight:200;
  margin-bottom: 18px;
  text-align: justify;
  line-height: 1.7;
}

.about-hero-mobile {
  display: none;
}

@media (max-width: 900px) {
  .about-hero-mobile {
    display: block;
  }

.about-hero {
    display: none;
  }

.about-hero-mobile-img {
    height: 320px;
    width: 100%;
  }

.about-title {
    font-size: 2rem;
    margin-top: 18px;
  }

.about-subtitle {
    font-size: 1.05rem;
    margin-bottom: 22px;
  }

.about-video {
    height: 180px;
    width: 98vw;
  }

.about-breadcrumbs {
    font-size: 0.98rem;
    padding-left: 4vw;
    margin-top: 18px;
  }

.about-who {
    flex-direction: column;
    gap: 28px;
    padding: 0 0 !important;
    margin-top: 36px;
    min-height: unset;
  }

.about-who-content {
    padding: 0 20px 0 20px !important;
  }

  .about-who-img,

.about-who-content {
    max-width: 100%;
    height: auto;
    padding: 0;
  }

.about-who-img {
    order: 2; /* show image after content */
  }

.about-who-img img {
    height: 300px !important;
    width: 100%;
  }

.about-who-title {
    font-size: 2rem;
  }

}

/* faq section */

.faq-section {
  max-width: 980px;
  margin: 0 auto 80px auto;
  padding: 0 19px 19px;
  background: var(--color-bg, #f9f7f1);
}

.faq-tab-dropdown{
  display: none;
}

.faq-title {
  color: #4f5145;
  text-align: center;
  margin: 30px 0 20px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 40px;
}

.faq-tabs {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.faq-search-toggle svg {
  height: 18px;
  width: 18px;
  opacity: 0.6;
}

.faq-tab {
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--color-primary, #3d403a);
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.faq-tab.active {
  font-weight: 700;
  border-bottom: 0;
}

.faq-panel {
  display: none;
  animation: fadeIn 0.3s;
}

.faq-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

to {
    opacity: 1;
  }

}

.faq-item {
  border-bottom: 1px solid #d6d6c2;
  padding: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-main);
  padding: 32px 0 30px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  transition: color 0.2s;
  font-weight: 200;
  font-size: 18px;
}

.faq-question.active,

.faq-question:focus {
  color: #4f5145;
}

.faq-arrow {
  font-size: 1.2rem;
  margin-left: 12px;
  transition: transform 0.2s;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  font-family: var(--font-main);
  font-size: 17px;
  color: #4f5145;
  padding: 0 0 18px 0;
  display: none;
  animation: fadeIn 0.2s;
  font-weight: 300;
}

.faq-question.active + .faq-answer,

.faq-answer[style*="display:block"] {
  display: block;
}

.faq-share {
  margin-top:25px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.faq-share img {
  width: 18px;
  height: 18px;
  filter: grayscale(1) brightness(0.3);
  transition: filter 0.2s;
  opacity: 0.6;
}

.faq-share img:hover {
  filter: none;
}

@media (max-width: 700px) {
  .faq-title {
    font-size: 2rem;
    margin: 32px 0 20px 0;
    padding: 20px 0 20px 0;
    font-size: 25px!important;
  }

.faq-tabs {
    gap: 12px;
    font-size: 1rem;
  }

.faq-tab-dropdown-title{
    font-size: 17px;
    color:#4f5145 ;
  }

}

/* end */

/* work with us */

.work-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
  background: url("../images/about/work.png") center center/cover no-repeat;
  background-attachment: fixed;
  /* Only this section has the fixed background! */
}

.work-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(21 22 20 / 50%);
  z-index: 1;
  pointer-events: none;
}

.work-form-card {
  position: relative;
  z-index: 2;
  background: #efede7 !important;
  max-width: 530px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  padding: 44px 36px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary, #3d403a);
  font-weight: 400;
  margin-bottom: 18px;
  text-align: center;
}

.work-subtitle {
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: #4f5145;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 300;
}

.work-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.work-form-row .iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags {
    margin-bottom: 20px;
}

.work-form-row {
  display: flex;
  gap: 16px;
}

.work-form input,

.work-form select,

.work-form textarea {
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #4f5145;
  border-radius: 7px;
  background: #efede7;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.work-form input:focus,

.work-form select:focus,

.work-form textarea:focus {
  border-color: var(--color-primary, #3d403a);
}

.work-phone-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.work-country-code {
  max-width: 70px;
  min-width: 60px;
  padding-left: 6px;
}

.work-btn {
  margin-top: 20px;
  background:#4f5145;
  color: #efede7;
  border: none;
  margin: 20px auto;
  border-radius: 50px;
  padding: 10px 0;
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 400;
  width: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.work-btn:hover {
	background: #efede7 !important;
	color: #4f5145;
	border: 1px solid #4f5145;

}

@media (max-width: 700px) {
    
   .work-subtitle {
        font-family: var(--font-main);
        font-size: 20px;
        color: #4f5145;
        margin-bottom: 32px;
        text-align: center;
    }

.work-btn {
      margin-top: 12px;
      background:#4f5145;
      color: #efede7;
      border: none;
      border-radius: 50px;
      padding: 20px 0;
      font-size: 1.3rem;
      font-family: var(--font-main);
      font-weight: 400;
      width: 100%;
      cursor: pointer;
      transition: background 0.2s;
  }

.work-form-card {
    padding: 24px 25px 18px 25px;
    width: 90%;
  }

.work-title {
    font-size: 2.4rem;
  }

.work-section {
    padding: 40px 0;
  }

.work-form-row {
    flex-direction: column;
    gap: 0px;
  }

.faq-answer {
    font-size: 16px;
  }

.faq-question {
    font-weight: 300;
  }

.about-who-content p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5;
}

}

/* end */

/* about-section.css */

@import url('variables.css');

.about-section {
  position: relative;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* fallback */
}

.about-bg {
  position: absolute;
  inset: 0;
  background: url('https://static.wixstatic.com/media/bd34e3_d9909f6ec04449179272768e579c1491~mv2.jpg/v1/fill/w_1351,h_570,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/bd34e3_d9909f6ec04449179272768e579c1491~mv2.jpg') center center/cover no-repeat;
  opacity: 0.7;
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px 48px 24px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-subheading {
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0.95;
}

h2.about-title.abt-heading {
    color: #fff;
    font-size: 44px;
    margin-top: 0;
    opacity:1;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 28px;
  color: #fff;
  line-height: 1.15;
}

.about-desc {
  margin-bottom: 18px;
  color: #fff;
  opacity: 0.96;
  font-weight: 200;
}

.about-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 30px;
    background: #ffffffd1;
    color: #4f5145;
    border: none;
    border-radius: 32px;
    font-size: 1.2rem;
    font-family: var(--font-main);
    font-weight: 200;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    border: 1px solid #fff;
}

.about-btn:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 900px) {
  .about-title {
    font-size: 2rem;
  }

.about-content {
    padding: 40px 10px 32px 10px;
  }

.about-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }

}

/* bond-cleaning.css */

.bond-hero {
  position: relative;
  width: 100%;
  margin-top: 130px;
  height: 100%;
  overflow: hidden;
  background: #e6e6e2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.bond-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bond-hero-card {
  position: absolute;
  top: 60px;
  left: 60px;
  background: #cbc9be;
  padding: 90px 60px 90px 60px;
  /*box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);*/
  z-index: 2;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bond-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #3d403a;
  font-weight: 300 !important;
  margin-bottom: 18px;
}

.bond-hero-list {
  margin: 25px 0 18px 0;
  padding-left: 30px;
  color: #4f5145;
  font-family: var(--font-main);
  font-size: 1.2rem;
  line-height: 1.7;
}

.bond-hero-btn {
  background: #3d403a;
  color: #fff;
  width: 190px;
  border: none;
  border-radius: 2px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: var(--font-main);
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
  transition: background 0.2s;
  font-weight: 200;
}

.bond-hero-btn:hover {
  background: #efede7 !important;
  color: #4f5145;
  border: 1px solid #4f5145;
}

.bond-features {
  padding: 70px 0 0px 0;
  text-align: center;
}

.bond-features-title {
  font-family: var(--font-heading);
  font-size: 30px;
  color: #3d403a;
  font-weight: 300;
  margin-bottom: 60px;
}

.bond-features-grid {
  display: flex;
  gap: 32px;
  margin: 0 auto;
}

.bond-feature-box {
    border: 1px solid #3d403a;
    border-radius: 0;
    padding: 40px 20px 20px;
    width: 25%;
}

.bond-feature-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #3d403a;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.bond-feature-box p {
  font-family: var(--font-main);
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  text-align: justify;
  font-weight: 300;
}

.bond-guarantee {
  background: #4f5145;
  color: rgb(239, 237, 231);
  text-align: center;
  padding: 35px 18px 45px;
  margin-top: 60px;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.bond-guarantee-text {
  max-width: 640px;
  margin: 0 auto;
  color: rgb(239, 237, 231);
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
}

.bond-guarantee-title {
  font-family: var(--font-heading);
  font-size: 34px;
  color: rgb(239, 237, 231);
  font-weight: 300;
  margin-bottom: 30px;
}

.bond-testimonials {
  background: #f9f7f1;
  padding: 60px 0 40px 0;
  text-align: center;
}

.testimonial-content h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: #3d403a;
  font-weight: 300;
  margin-bottom: 24px;
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}

.testimonial-arrow {
  background: none;
  border: none;
  color: #4f5145;
  font-size: 3.5rem;
  cursor: pointer;
  padding: 0 24px;
  font-weight:200;
  transition: color 0.2s;
  z-index: 2;
}

.testimonial-arrow:hover {
  color: #222;
}

.testimonial-cards {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-width: 0;
  position: relative;
}

.testimonial-card {
  background: #d1d0c8;
  padding: 48px 36px 36px 36px;
  margin: 0 auto;
  border-radius: 0;
  min-width: 340px;
  max-width: 740px;
  width: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  min-height: 400px;
}

/* Show only the active one with animation */

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
  display: flex; 
}

.testimonial-content{
    padding:30px 80px 20px 80px;
}

.testimonial-content p {
  font-family: var(--font-main);
  font-size: 16px;
  color: #4f5145;
  font-weight: 300;
  margin-bottom: 0px;
  line-height: 26px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #3d403a;
  font-weight: 400;
  text-align: right;
}

.testimonial-dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #3d403a;
  border-radius: 50%;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.dot.active {
  opacity: 1;
  background: #3d403a;
}

/* FAQ Search Styles */

.faq-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  position: relative;
}

.faq-title-row.search-active .faq-title {
  display: none;
}

.faq-search-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.faq-search-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.faq-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
}

.faq-search-bar-wrap {
  display: none;
}

.faq-search-bar-wrap.active {
  display: block;
}

.faq-search-toggle {
  display: inline-flex;
}

.faq-search-bar-wrap.active ~ .faq-search-toggle,

.faq-search-bar-wrap.active + .faq-search-toggle {
  display: none !important;
}

.faq-container {
  background-color: #4f5145;
  padding: 80px 0px 1px 0px;
}

.faq-search-bar {
  display: flex;
  align-items: center;
  background: #f1efe8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 0 1px 2px #3899ec;
  padding: 0 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto 30px auto;
}

.faq-search-icon {
  margin-right: 8px;
  flex-shrink: 0;
}

.faq-search-input {
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #4f5145;
  width: 100%;
  font-weight: 300;
  padding: 14px 0;
  font-family: var(--font-main);
  outline: none;
  height: 50px;
  margin-top: 0px;
}

.faq-search-clear {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #3d403a;
  cursor: pointer;
  margin-left: 8px;
  padding: 0 4px;
}

.faq-search-results {
  background: #f1efe8;
  border-radius: 0 0 4px 4px;
  padding: 10px 18px 18px 18px;
  min-height: 24px;
  font-size: 1rem;
  color: #3d403a;
  box-sizing: border-box;
  max-width: 100%;
}

.faq-search-results .faq-search-label {
  color: #57594b;
  font-size: 0.98rem;
  margin-bottom: 8px;
  display: block;
}

.faq-search-result-item {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0dfd7;
}

.faq-search-result-item:last-child {
  border-bottom: none;
}

.faq-search-result-item .faq-question {
  font-weight: bold;
  margin-bottom: 2px;
  display: block;
}

/* Options Cards Styles */

.options-cards-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.option-card {
  background: #f4f3ef;
  border-top-left-radius: 170px;
  border-top-right-radius: 170px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  width: 310px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s;
}

.option-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.option-card-img {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center top;
    border-radius: 0;
}

.option-card-content {
    padding: 24px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #eeeef5;
}

.option-card-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 12px;
    color: #282626;
    font-weight: 500;
    letter-spacing: -0.5px;
    text-align: left;
}

.option-card-content p, .option-card-content ul {
    font-size: 15px;
    color: #57594b;
    margin: 0;
    line-height: 1.4;
    font-weight: 200;
    text-align: justify;
}

.option-card-content ul {
  padding-left: 18px;
  margin-top: 0;
}

.option-card-content ul li {
  margin-bottom: 6px;
}

h1.title-fq-hd {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 300;
}

@media (min-width: 1025px) {

.faq-question {
    font-weight: 200;
    color: #4f5145;
}

.faq-answer {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.2;
}

.bond-features-title {
    font-size: 38px;
}

.bond-feature-box p {
    font-weight: 200;
}

.faq-section {
    padding: 0px 40px 40px;
}

}

@media (min-width: 1341px) {
  .bond-features-grid {
    max-width: 1300px;
  }

}

.faq-tab-dropdown-title {
  display: none;
}

@media (max-width: 1340px) {
  .bond-features-grid {
    max-width: 90%;
  }

}

@media (max-width: 1100px) {
    
    
   .testimonial-content{
    padding:30px 0px 0px 0px;
   }

.testimonial-slider {
    max-width: 100%;
   }

.bond-hero-card {
    left: 24px;
    right: 24px;
    max-width: 600px;
    padding: 32px 18px 24px 18px;
  }

.options-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

.option-card {
    width: 100%;
    max-width: 500px;
    border-top-left-radius: 220px;
    border-top-right-radius: 220px;
  }

.option-card-img {
    height: 440px;
  }

.bond-guarantee{
    padding: 0px;
  }

}

@media (max-width: 992px) {
  .bond-hero {
    margin-top: 0px;
  }

.bond-features-grid {
    flex-wrap: wrap;
    max-width: 100%;
    column-gap: normal;
    justify-content: space-between;
  }

.bond-feature-box {
    width: 47%;
  }

}

.mob-bond-hero-img{
  display: none;
}

@media (max-width: 700px) {
  .bond-hero-img {
    display: none;
  }

.mob-bond-hero-img {
      display: block;
      margin: 25px auto 0 auto; /* Top center alignment */
      max-width: 100%;
      height: 420px;
     
      object-fit: cover; /* Prevents cropping */
      object-position: top center; /* Align image to top-center */
  }

.bond-feature-box p {
    font-size: 16px;
  }

.bond-feature-box h3 {
    font-size: 25px;
  }

.bond-hero {
    background: #cbc9be; /* fallback bg for the card area */
    height: auto;
    min-height: 0;
    position: relative;
    top: 20px;
    display: block;
  }

.bond-hero-card {
    position: static;
    margin: 0 10px 0 10px;
    max-width: 600px;
    min-width: 0;
    padding: 40px 8px 30px 8px;
    /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);*/
    background: #cbc9be;
  }

.bond-features {
    padding: 45px 0 40px 0;
  }

.bond-hero-title {
    font-size: 34px;
    margin-bottom: 0px;
  }

.bond-features-title {
    font-size: 30px;
    margin-bottom: 18px;
  }

.bond-feature-box {
    padding: 30px 15px 30px 15px;
    min-height: unset;
  }

.bond-guarantee-text {
    font-size: 18px;
    padding: 0 20px 30px;
    font-weight: 300;
  }

.bond-guarantee-title {
    padding-top: 30px;
   }

.testimonial-card {
    padding: 45px 8px 60px 8px;
    min-width: 0;
    max-width: 98vw;
  }

.testimonial-arrow {
    font-size: 3rem;
    padding: 0 8px;
  }

.faq-search-wrapper {
    position: static;
    justify-content: flex-end;
    margin-bottom: 18px;
    top: unset;
    right: unset;
  }

.faq-search-wrapper.active .faq-search-input {
    width: 98vw;
    margin-left: 8px;
  }

.bond-feature-box {
    width: 100%;
  }

.bond-guarantee {
    margin-top: 0px;
    box-shadow: none;
}

.option-card {
    box-shadow: none;
}

.option-card:last-child {
    border-bottom: 10px solid #4f5145;
}

.faq-tabs {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
  }

.faq-title {
    font-size: 22px !important;
    margin: 10px 0 10px 0 !important;
  }

.faq-search-toggle {
    margin-top: 5px;
    margin-right: -10px !important;
  }

.bond-hero-list li {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
  }

.testimonial-content p {
    font-size: 14px;
    line-height: 24px;
  }

.testimonial-content {
        padding: 0px;
    }

.bond-hero #domestic-card {
        padding: 0px 20px 0px 20px !important;
    }

.option-card-content p, .option-card-content ul {
    font-size: 16px;
    font-weight: 300;
}

.option-card-content h3, .option-card-content p, .option-card-content ul {
    text-align: center;
}

.option-card-img {
    height: 400px;
}

.bond-hero-list {
    margin: 10px 0 10px 0;
}

}

#domestic-card{
  padding: 50px 40px 50px 60px!important;margin-top: 65px!important;
}

#domestic-title

{
  width: 500px;line-height: 70px;
}

.bond-guarantee-title{
  text-align:center; font-size:2.6rem;  margin-bottom:38px;
}

/* contact.css */

@import url("variables.css");

/* Hero image section */

.contact-hero {
  position: relative;
  width: 100%;
  height: 450px;
  top: 130px;
  overflow: hidden;
  background: var(--color-bg, #f9f7f1);
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero-breadcrumbs {
  position: absolute;
  left: 0;
  width: 100%;
  top: 32px;
  display: flex;
  justify-content: center;
  z-index: 1; /* Lower than .contact-card */
}

.breadcrumb {
  font-family: var(--font-main, "Inter", Arial, sans-serif);
  font-size: 1.1rem;
  color: #fff;
  background: rgba(61, 64, 58, 0.38);
  padding: 8px 22px;
  border-radius: 18px;
  display: inline-block;
}

/* Contact card overlaps hero image */

.contact-section {
  position: relative;
  margin-top: -130px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* background: var(--color-bg, #f9f7f1); */
}

.contact-card {
    position: relative;
    z-index: 3;
    background: #efede7;
    margin: 0 auto;
    border-radius: 0;
    display: flex;
    padding: 40px;
    width: 100%;
    max-width: 980px;
}

.contact-card > div{
  width: 50%;
}

.contact-card .contact-form {
    max-width: 380px;
    margin-left: auto;
}

.contact-card div {
    padding-bottom: 10px;
}

.contact-title {
  font-family: var(--font-heading, 'Editor\'s Note');
  font-size: 56px;
  color: var(--color-primary, #4f5144);
  font-weight: 300;
  margin-bottom: 10px;
}

.contact-desc {
  font-family: var(--font-main, "Inter", Arial, sans-serif);
  font-size: 1.13rem;
  color: #555;
  margin-bottom: 38px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
}

.contact-label {
    font-family: var(--font-heading, 'Editor\'s Note');
    font-size: 16px;
    color: var(--color-primary, #3d403a);
    margin-bottom: 6px;
    font-weight: 200;
}

.contact-value {
  font-family: var(--font-main, "Inter", Arial, sans-serif);
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-value a {
  color: #3d403a;
  text-decoration: underline;
}

.contact-reviews {
  margin-top: 24px;
}

.contact-review-link {
  font-family: var(--font-main, "Inter", Arial, sans-serif);
  color: #3d403a;
  text-decoration: underline;
  font-size: 1.08rem;
}

.contact-form-row {
  display: flex;
  gap: 18px;
}

.contact-form label {
    font-family: var(--font-main, "Inter", Arial, sans-serif);
    font-size: 14px;
    color: #4f5145;
    margin-bottom: 4px;
    display: block;
}

.contact-form input, .contact-form textarea {
    font-family: var(--font-main, "Inter", Arial, sans-serif);
    font-size: 1rem;
    padding:6px 14px;
    border: 1.5px solid #888;
    border-radius: 0;
    background: transparent;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
}

.contact-form input:focus,

.contact-form textarea:focus {
  border-color: var(--color-primary, #3d403a);
}

.contact-btn {
    margin-top: 12px;
    background: #4f5145;
    color: var(--color-white, #fff);
    border: 1px solid #4f5145;
    border-radius: 0;
    padding: 12px 0;
    font-size: 16px;
    font-family: var(--font-main, "Inter", Arial, sans-serif);
    font-weight: 300;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-btn:hover {
  background: transparent;
  color:#4f5145;
}

.contact-value a {
    text-decoration: none;
}

@media (min-width: 1025px){
    
    .contact-review-link, .contact-value a, .contact-card div, .contact-desc{
    font-weight: 200;
    font-size: 16px;
}

}

@media (max-width: 992px){
.contact-btn{
    padding: 15px 0 !important;
    font-size: 17px !important; 
}

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

.contact-card > div {
    width: 100%;
}

.contact-card {
    flex-wrap: wrap;
}

.contact-card .contact-form {
    max-width: 100%;
}

.contact-form-row {
    display: block;
}

.contact-info {
    display: block;
}

.contact-reviews {
    margin-top: 0px;
    margin-bottom: 20px;
}

}

@media (max-width: 767px){

.contact-label {
 margin-bottom: 0px;
}

.contact-card {
    padding: 60px 30px 90px;
}

.contact-title {
    font-size: 30px;
}

.contact-form label {
    font-size: 18px;
}

.contact-hero {
    height: max-content;
    top: 0;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}

.contact-label {
    font-size: 20px;
    font-weight: 300;
}

.contact-reviews {
    margin-bottom: 40px;
}

.contact-form input, .contact-form textarea {
    padding: 15px 14px;
    margin-bottom: 10px;
}

}

/* footer.css */

@import url('variables.css');

.site-footer {
  background: #c7c6bf;
  padding: 56px 0 48px 0;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 4vw;
}

.footer-col {
  flex: 1 1 150px;
  min-width: 220px;
  margin-bottom: 24px;
}

.footer-logo {
    font-family: 'Frontage';
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary, #3d403a);
    margin-bottom: 40px;
}

.footer-btn {
    background: #4f5145 !important;
    color: #efede7;
    border-radius: 30px;
    padding: 15px 80px;
    font-family: var(--font-main);
    font-weight: 200;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid #4f5145;
}

.footer-btn:hover {
  background: #C7C6BF !important;
  color: #3d403a;
  border:1px solid  #3d403a;
}

.footer-heading {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 200;
    color: #4f5145;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-hours-list  div {
    font-family: var(--font-main);
    font-size: 16px;
    color: #4f5145;
    font-weight: 200;
}

@media (min-width: 1200px) {
    .site-footer {
    padding-bottom: 100px;
}

}

@media (max-width: 900px) {
  .site-footer {
    padding: 50px 0 24px 0; /* Reduce top/bottom padding */
  }

.footer-container {
    flex-direction: column;
    gap: 16px; /* Reduce gap between columns */
    align-items: flex-start;
    padding: 0 4vw;
  }

.footer-col {
    min-width: 0;
    margin-bottom: 12px; /* Reduce bottom margin */
  }

.footer-logo {
    margin-bottom: 30px; /* Less space below logo */
  }

.footer-btn {
    margin-top: 6px; /* Less space above button */
    padding: 20px 49px !important;
    width: 100%;
    font-size: 1.2rem;
  }

.footer-hours-list div {
    font-weight: 400;
}

.footer-heading {
    font-weight: 400;
}

}

/* You can add this to style.css or footer.css */

.footer-image-wrapper img.footer-image {
    width: 100%;
    max-width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.footer-image-wrapper {
    line-height: 0;
}

.footer-copyright {
  background: #f9f7f1;
  color: #3d403a;
  text-align: center;
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 18px 8px 18px 8px;
  font-weight: 200;
}

.footer-copyright a {
  color: #3d403a;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-copyright a:hover {
  color: #222;
}

@media (max-width: 900px) {
  .footer-copyright {
    font-size: 0.98rem;
    padding: 14px 20px 14px 20px;
  }

}

@media (max-width: 767px) {
    
  .footer-btn {
        padding: 13px 44px !important;
    }

}

/* how-it-works.css */

@import url('variables.css');

.how-it-works-section {
  background: var(--work-bg-color);
  padding: 40px 0 60px 0 !important;
  width: 100%;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 2.5rem;
  color: var(--color-white, #fff);
  margin-bottom: 48px;
  font-weight: 400;
  letter-spacing: 1px;
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 230px;
    min-width: 160px;
}

.how-icon {
  margin-bottom: 18px;
}

.how-label {
    font-family: var(--font-main, 'Inter', Arial, sans-serif);
    font-size: 18px;
    color: var(--color-white, #fff);
    margin-top: 0;
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .how-steps {
    gap: 18px;
  }

.how-step {
    width: 170px;
  }

}

@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

.how-arrow {
    transform: rotate(90deg);
    margin: 0 0 24px 0;
  }

.how-step {
    margin-bottom: 18px;
    width: 100%;
    min-width: 0;
  }

.how-label{
    font-size: 18px;
    padding: 0px 40px 0 40px;
    width:100%
  }

.how-it-works-section {
        padding-bottom: 0 !important;
    }

}

.how-icon svg {
  width: 80px;
  height: 80px;
}

/* stickyheader.css */

.inner-page-header .desktop-nav a {
    color: #4f5145;
}

.inner-page-header .logo {
    color: #4f5145;
}

.inner-page-header .nav-buttons .btn-light:hover {
    background: #4f5145;
    border: 1px solid #4f5145;
}

@media (min-width: 1199px){
header.darkHeader {
    position: fixed !important;
    right: 0;
    left: 0;
    z-index: 1100;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
}

}

/* variables.css */

:root {
  /* Colors */
  --color-bg: #f9f7f1;
  --body-bg-color: #EFEDE7;
  --color-bg-dark: #e2ded4;
  --work-bg-color: #77786E;
  --color-primary: #3d403a;
  --color-secondary: #4F5145;
  --color-accent: #C7C6BF;
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #333;
  --color-grey-light: #ecebe6;

  /* Fonts */
  --font-main:  'Sweet Sans Pro', sans-serif;
  --font-heading: 'Editor\'s Note';

  /* Font Sizes */
  --font-size-base: 1rem;
  --font-size-p: 1.06rem;
  --font-size-h1: 2.8rem;
  --font-size-h2: 2.2rem;
  --font-size-h3: 1.7rem;
  --font-size-btn: 1rem;

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  color: var(--color-grey);
  background-color: var(--body-bg-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: var(--fw-regular);
  margin-bottom: 0.7em;
} */

p {
  font-family: var(--font-main);
  font-size: var(--font-size-p);
  color: var(--color-grey);
  margin-bottom: 1em;
  line-height: 1.7;
}

/* why-choose.css */

@import url("variables.css");

.why-choose-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
    max-width: 90%;
    margin: auto;
    padding: 60px 0px 30px;
}

.why-img-bg {
    width: 35%;
     position: relative;
}

.why-choose-bg {
   background: url("https://demogswebtech.com/cleaning-service/assets/images/homeimages/why-choose-bg.jpg")
    no-repeat;
    background-attachment: fixed;
    width: 100%;
    position: relative;
    height: 100%;
}

.why-choose-content {
    width: 65%;
    position: relative;
    padding: 40px 40px 40px 0px;
    max-width: 780px;
    margin: auto;
}

.why-choose-title {
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 2.8rem;
    color: var(--color-primary, #3d403a);
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 0;
}

.why-choose-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 48px;
    width: 100%;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.why-feature-icon {
  margin-top: 4px;
  flex-shrink: 0;
}

.why-feature-title {
    font-family: var(--font-main);
    font-size: 22px;
    color: var(--color-primary, #3d403a);
    font-weight: 300;
    margin-bottom: 6px;
}

.why-feature-desc {
    font-family: var(--font-main);
    font-size: 16px;
    color: #888;
    font-weight: 400;
    line-height: 1.5;
    padding: 0px 30px 0 0px;
}

.why-choose-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #4f5145 !important;
  color: #efede7;
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
  text-align: center;
  border: 1px solid #4f5145;
  font-weight: 200;
}

.why-choose-btn:hover {
  background: #efede7 !important;
  color: #4f5145;
  border: 1px solid #4f5145;
}

.footer-image-wrapper {
  margin-top: 50px;
}

@media (min-width: 1600px){
    
    .why-choose-bg {
    background-size: cover;
    background-position: 50% 50%;
    background-attachment: initial;
}

.why-choose-content {
    padding: 40px 40px 40px 0px;
}

}

/* Show image at top, full width, on mobile */

@media (max-width: 1200px) {
    
.why-choose-bg {
    background-attachment: initial;
    height: 450px;
    background-position: center;
    width: 100%;
    background-size: cover;
}

.why-img-bg {
    width: 100%;
}

.why-choose-section {
    max-width: 100%;
    flex-wrap: wrap;
}

.why-choose-content {
    width: 100%;
    padding: 30px 30px 0px;
    max-width: 100%;
}

}

@media (max-width: 1100px) {
  .why-choose-title {
    font-size: 2rem;
    text-align: left !important;
    margin-top: 20px;
  }

.why-feature-title {
    font-size: 1.4rem;
  }

.why-choose-btn {
    font-weight: 400;
}

.why-choose-bg {
    height: 400px;
}

}

@media (max-width: 900px) {
  .why-choose-features {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }

.why-feature {
    justify-content: flex-start;
  }

.why-choose-btn {
        font-size: 1.2rem !important;
        padding: 10px 50px !important;
        margin: auto;
        width: max-content;
        display: flex;
    }

.why-choose-bg {
    height: 350px;
}

}

/* Fix: Sticky header visible background */

header.header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Ensure visibility of nav text when header background is white */

header.header nav a {
  color: #111;
}

/* Sticky header reappears on scroll-up */

header.darkHeader {
  background-color: #606254;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

header.darkHeader nav a {
  color: #fff;
}

/* Correct sticky header background for .navbar.main-navbar */

.navbar.main-navbar.darkHeader {
  background-color: #606254;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.main-navbar.darkHeader nav a {
  color: #fff !important;
}

/*  Always visible sticky header with transparent image overlay */
.navbar.main-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  padding: 18px 60px !important;
  background: rgba(79, 81, 69, 0.3); /* olive with 30% opacity */
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

/* Ensure nav and buttons stay white */
.navbar.main-navbar nav a,
.navbar.main-navbar .logo,
.navbar.main-navbar .btn-light,
.navbar.main-navbar .btn-dark {
  color: #fff !important;
}

/* Fix dropdown menu */
.navbar.main-navbar .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar.main-navbar .dropdown-menu a {
  color: #3d403a;
}

/* Button hover fix in sticky */
.navbar.main-navbar .btn-light:hover {
  background: #fff;
  color: #4f5145;
  border: 1px solid #4f5145;
}

/* Fix dropdown menu visibility */
.navbar.main-navbar .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
}

.navbar.main-navbar .dropdown-menu a {
  color: #3d403a !important;
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  transition: background 0.2s;
}

.navbar.main-navbar .dropdown-menu a:hover {
  background: #efede7;
}

/* Fix Book Now button hover visibility */
.navbar.main-navbar .btn-dark:hover {
  background-color: #ffffff !important;
  color: #4f5145 !important;
  border: 1px solid #ffffff;
}

/* Fix Call Now button visibility */
.navbar.main-navbar .btn-light {
  background-color: #ffffff;
  color: #4f5145 !important;
  border: 1px solid #ffffff;
}

/* Optional: hover state */
.navbar.main-navbar .btn-light:hover {
  background-color: #4f5145;
  color: #ffffff !important;
}

/* Force services into a balanced 2-column layout */
.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

.service-card {
  width: calc(50% - 20px);
  background: #c7c6bf;
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.services-section {
  text-align: center;
  margin-bottom: 40px;
}

.services-heading {
  font-family: var(--font-heading);
  font-size: 44px;
  color: #4f5145;
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.2;
  text-align: center !important;
}

.services-heading-sub {
  font-size: 18px;
  color: #4f5145;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center !important;
  margin-top: 12px;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .service-card {
    width: 100%;
    flex-direction: column;
  }
}

@media (min-width: 901px) {
  .call-now-mobile {
    display: none !important;
  }

  .hero-main-btn,
  .hero-quote-btn {
    margin-top: 20px;
  }
}

.mobile-dropdown .dropdown-arrow {
  font-size: 20px;
  margin-left: 6px;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.mobile-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.footer-hours-list a {
  color: #3d403a;
  text-decoration: none;
  font-weight: 300;
  display: block;
  margin-bottom: 4px;
}

.footer-hours-list a:hover {
  text-decoration: underline;
}
.footer-hours-list {
  max-width: 1200px !important;
}
/* Mobile Dropdown Fix */
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-top: 120px;
}

.mobile-menu-content a,
.mobile-menu-content .dropdown-toggle {
  font-size: 20px;
  font-weight: 300;
  color: #4f5145;
  background: none;
  border: none;
  padding: 10px 0;
  width: 100%;
}

.mobile-menu .dropdown-arrow {
  font-size: 14px;
  margin-left: 8px;
}

.mobile-dropdown.open .dropdown-menu {
  display: flex;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  gap: 32px;
  text-align: center;
}

.mobile-menu-content a,
.mobile-menu-content .dropdown-toggle {
  font-size: 20px;
  font-weight: 300;
  color: #4f5145;
  background: none;
  border: none;
  padding: 12px;
  width: 100%;
}

.dropdown-arrow {
  font-size: 14px;
  margin-left: 8px;
}



.mobile-dropdown.open .dropdown-menu {
  display: flex;
}

/* Close button in mobile menu */
.close-mobile-menu {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 36px;
  color: #4f5145;
  cursor: pointer;
}
* --- Mobile Menu Styling --- */



.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  gap: 32px;
  text-align: center;
}

.mobile-menu-content a,
.mobile-menu-content .dropdown-toggle {
  font-size: 20px;
  font-weight: 300;
  color: #4f5145;
  background: none;
  border: none;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.dropdown-arrow {
  margin-left: 8px;
  font-size: 14px;
}


.mobile-dropdown.open .dropdown-menu {
  display: flex;
}

.close-mobile-menu {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 36px;
  background: none;
  border: none;
  color: #4f5145;
  cursor: pointer;
}

/* Buttons */
.mobile-call-btn,
.mobile-book-btn {
  background: #efede7;
  color: #4f5145;
  border: 1px solid #4f5145;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  width: 80%;
  max-width: 300px;
}

/* === FINAL MOBILE MENU LAYOUT FIX === */

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  margin-top: 120px;
  padding: 0 20px;
}

.mobile-menu-content a,
.mobile-menu-content .dropdown-toggle {
  font-size: 20px;
  font-weight: 300;
  color: #4f5145;
  background: none;
  border: none;
  padding: 12px;
  width: 100%;
  text-align: center;
}

/* Align dropdown toggle */
.mobile-dropdown {
  width: 100%;
}

.mobile-dropdown .dropdown-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  font-size: 20px;
}

.mobile-dropdown .dropdown-arrow {
  font-size: 14px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .dropdown-menu {
  display: flex;
}


/* Remove auto spacing from previous attempts */
.mobile-menu-content > * {
  margin: 0;
}
/* remove when notification is not needed */
.main-navbar {
  padding-top: 50px; /* or increase depending on how tall the notice is */
}

.location-banner {
      background: url('/assets/images/banner/top-banner.jpg') center center / cover no-repeat;
      height: 350px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-top: 0px;
    }
    .location-banner .overlay {
      background: rgba(0, 0, 0, 0.4);
      width: 100%;
      height: 100%;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 100px 10px 10px 10px;
      text-align: center;
    }
    .location-banner h1 {
      font-size: 32px;
      margin: 10px 0;
    }
    .location-banner .subheading {
      font-size: 14px;
      text-transform: uppercase;
    }
    .location-banner .btn {
      margin-top: 10px;
    }
    .faq-item {
      border-bottom: 1px solid #ccc;
      padding: 10px 0;
    }
    .faq-question {
      background: none;
      border: none;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
      text-align: left;
      width: 100%;
    }
    .faq-answer {
      display: none;
      padding-top: 5px;
    }