/* ======================================================
   TABLE OF CONTENTS
======================================================
1.  Font Face Declarations
2.  Root Variables
3.  General Style
    3.1 Headings
    3.2 Paragraphs
    3.3 Links
    3.4 Buttons
    3.5 Image
    3.6 Lists
4.  Utility Classes
    4.1 Color Utilities
    4.2 Background Utilities
    4.3 Sizing Utilities
    4.4 Other Utilities
5.  Navbar Styles
    5.1 Offcanvas
    5.1.1 Offcanvas Social Icon
    5.2 Dropdown
6.  Hero Styles
7.  About Styles
8.  Service Styles
9.  How It Works Styles
10. Why Choose Us Styles
11. Testimonials Styles
12. FAQs Styles
13. Banner Styles
14. Blog Post Styles
15. Core Values Styles
16. Team Styles
17. Contact Styles
18. Maps Styles
19. Services Detail Styles
20. Footer Styles
21. Animation
22. Media Queries
====================================================== */

/* ======================================================
   1. FONT FACE DECLARATIONS
   Define custom fonts used throughout the template.
====================================================== */
@font-face {
  font-family: "manrope";
  src: url(../font/manrope.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "playfair";
  src: url(../font/playfair.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ======================================================
   2. ROOT VARIABLES
   Global variables for colors, fonts, and reusable values.
====================================================== */
:root {
  --text-color-1: #646464;
  --text-color-2: #dddddd;
  --heading-color: #2a2a2a;
  --heading-color-2: #333333;
  --color-main: #a0893f;
  --color-darker: #2a2a2a;
  --color-lighter: #d6c899;
  --color-subtle: #fdffe9;
  --color-border: #9c9c9c;
  --color-accent: #f4f6e4;
  --color-error: #e22d2d;
  --color-warning: #e2d52d;
  --color-info: #2663cf;
  --color-success: #20bd3c;
  --font-1: "manrope";
  --font-2: "playfair";
  --font-montserrat: "Montserrat", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-playfair: "Playfair Display", serif;
  --charcoal: #2e2e2e;
  --white: #f9f9f7;
  --olive: #6c7a56;
  --beige: #d6c6b2;
  --gold: #c9a96a;
  --redcolor: #4f0315;
}

/* Prevent horizontal overflow */
html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ======================================================
   3. GENERAL STYLE
   Base styles for HTML elements.
====================================================== */

/* ------------------------------------------------------
   3.1 HEADINGS
   Typography for all heading levels.
------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-playfair);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 80px;
  line-height: 1.1em;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 16px;
}

/* ------------------------------------------------------
   3.2 PARAGRAPHS
   Styles for paragraph text.
------------------------------------------------------ */
p {
  font-size: 16px;
  color: var(--charcoal);
  font-weight: 400;
  font-family: var(--font-montserrat);
  line-height: 1.5em;
}

/* ------------------------------------------------------
   3.3 LINKS
   Anchor tag styles.
------------------------------------------------------ */
a {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  color: var(--charcoal);
  font-family: var(--font-montserrat);
}

/* ------------------------------------------------------
   3.4 BUTTONS
   Button base styles.
------------------------------------------------------ */
button {
  font-family: var(--font-lato);
  font-weight: 600;
  font-size: 14px;
}

.btn-1 {
  border: 1px solid var(--white);
  padding: 6px 12px;
  color: var(--white);
  background-color: transparent;
  font-family: var(--font-lato);
  transition: background-color 0.3s ease, color 0.3s ease;
	  display: inline-block;
  white-space: nowrap;
}

.btn-1:hover {
  background-color: var(--gold);
  color: var(--white);
}

.btn-2 {
  width: fit-content;
  border: 1px solid var(--gold);
  padding: 10px 16px;
  color: var(--gold);
  background-color: transparent;
  font-family: var(--font-lato);
  transition: background-color 0.3s ease, color 0.3s ease;
	 display: inline-block;
  white-space: nowrap;
}

.btn-2:hover {
  border: 1px solid var(--gold);
  background-color: var(--gold);
  color: var(--white);
}
.btn-3 {
  width: fit-content;
  border: none;
  padding: 10px 16px;
  color: black;
  background-color: var(--color-accent);
  font-family: var(--font-1);
  transition: background-color 0.3s ease, color 0.3s ease;
	 display: inline-block;
  white-space: nowrap;
}

.btn-3:hover {
  background-color: var(--gold);
  color: var(--white);
}

.btn-4 {
  width: fit-content;
  border: none;
  padding: 10px 16px;
  color: var(--white);
  background-color: var(--gold);
  font-family: var(--font-lato);
  transition: background-color 0.3s ease, color 0.3s ease;
	 display: inline-block;
  white-space: nowrap;
}

.btn-4:hover {
  background-color: var(--olive);
}

/* ------------------------------------------------------
   3.5 IMAGE
   Image element styles.
------------------------------------------------------ */
img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* ------------------------------------------------------
   3.6 LISTS
   List element styles.
------------------------------------------------------ */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  font-family: var(--font-lato) !important;
  font-weight: 400;
  color: var(--charcoal);
}

/* 4.1 Color Utilities */
.c-text-1 {
  color: var(--charcoal);
}

.c-text-2 {
  color: var(--charcoal);
}

.c-heading {
  color: var(--charcoal) !important;
}

.c-heading-2 {
  color: var(--charcoal) !important;
}

.c-main {
  color: var(--gold);
}

.c-darker {
  color: var(--color-darker);
}

.c-lighter {
  color: var(--color-lighter);
}

.c-subtle {
  color: var(--white);
}

.c-border {
  color: var(--color-border);
}

.c-error {
  color: var(--color-error);
}

.c-warning {
  color: var(--color-warning);
}

.c-info {
  color: var(--color-info);
}

.c-success {
  color: var(--color-success);
}

.c-accent {
  color: var(--color-accent);
}

.c-white {
  color: var(--white) !important;
}

.c-black {
  color: var(--charcoal);
}

/* 4.2 Background Utilities */
.bg-text-1 {
  background-color: var(--text-color-1);
}

.bg-text-2 {
  background-color: var(--text-color-2);
}

.bg-heading {
  background-color: var(--olive);
}

.bg-main {
  background-color: var(--color-main);
}

.bg-darker {
  background-color: var(--color-darker);
}

.bg-lighter {
  background-color: var(--color-lighter);
}

.bg-subtle {
  background-color: var(--white);
}
.bg-footer {
  background-color: var(--redcolor);
}
.bg-border {
  background-color: var(--color-border);
}

.bg-error {
  background-color: var(--color-error);
}

.bg-warning {
  background-color: var(--color-warning);
}

.bg-info {
  background-color: var(--color-info);
}

.bg-success {
  background-color: var(--color-success);
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-white {
  background-color: white;
}

.bg-discover {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/discover-1.jpg); */
  background-size: cover;
  background-position: center;
}

.bg-sign-up {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/sign-up.jpg); */
  background-size: cover;
  background-position: center;
  padding: 32px;
}

/* 4.3 Sizing Utilities */
.navbar-size {
  max-width: 1366px;
}

.page-size {
  max-width: 1366px;
  padding: 0px 24px;
  padding-top: 92px;
  padding-bottom: 92px;
  margin-left: auto;
  margin-right: auto;
}

.get-started-size {
  max-width: 1280px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* 4.4 Other Utilities */
.border-radius {
  border-radius: 5px;
}

/* ======================================================
   SENORA STYLE HERO SECTION
   Full-screen video with minimalist navigation
====================================================== */
.sen-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  background-image: url("https://kew.com.au/wp-content/uploads/2025/07/KEW_PALM_HOUSE_HOMEPAGE_WEB_1080p_h264_30fps_avgBR6000-1.jpg");
  background-size: cover;
  background-position: center;
}

.sen-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sen-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

/* Senora Style Navbar */
.sen-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all 0.5s ease;
}

.sen-navbar.scrolled {
  background: #4f0315;
  padding: 12px 56px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(79, 3, 21, 0.3);
}

.sen-navbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sen-logo, .custom-logo-link {
  width: 120px;
  height: 70px;
}
.sen-logo img, .custom-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sen-menu {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.sen-menu li {
  margin: 0;
}

.sen-menu a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-1);
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.sen-menu a:hover {
  color: #cfaf59;
}

/* Mobile Toggle */
.sen-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.sen-mobile-toggle span {
  width: 25px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.sen-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Senora Offcanvas Styling */
.sen-offcanvas {
  background-color: #1a1a1a !important;
}

.sen-offcanvas-logo {
  height: 70px;
  width: auto;
}

.sen-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sen-mobile-menu li {
  margin-bottom: 20px;
}

.sen-mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--font-1);
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.sen-mobile-menu a:hover {
  opacity: 0.7;
}

/* Fallback for old slideshow */
.slideshow {
  position: relative;
  max-height: 900px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: slideshow 20s infinite;
  overflow: hidden;
}

.slideshow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

@keyframes slideshow {
  0% {
    background-image: url("../img/hero-1.jpg");
  }

  33% {
    background-image: url("../img/hero-2.jpg");
  }

  66% {
    background-image: url("../img/hero-3.jpg");
  }

  100% {
    background-image: url("../img/hero-1.jpg");
  }
}

/* ======================================================
   5. NAVBAR STYLES
   Styles for navigation bar and navigation elements.
====================================================== */
.navbar-toggler {
  border: none;
}

.navbar-toggler .custom-toggler-icon {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  box-shadow: none;
  outline: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: end;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 9px;
  padding-bottom: 9px;
  color: white !important;
}

.navbar-toggler .bar {
  display: block;
  height: 1px;
  border-radius: 2px;
  width: 100%;
  background-color: rgb(195, 195, 195);
  border: none;
}

.navbar-toggler .bar-1 {
  width: 100%;
}

.navbar-toggler .bar-2 {
  width: 100%;
}

.navbar-toggler .bar-3 {
  width: 100%;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.nav-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo {
  width: 50%;
  max-height: 60px;
}

.nav-link {
  color: var(--text-color-1);
  font-size: 15px;
  font-family: var(--font-1);
  font-weight: 600;
  box-shadow: none;
}

.custom-toggler {
  border: 1px solid rgba(255, 255, 255, 0.344);
  padding: 4px 14px;
  font-size: 16px !important;
}

.navbar-toggler-icon {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 131, 145, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ------------------------------------------------------
   5.1 OFFCANVAS
   Styles for offcanvas navigation menu.
------------------------------------------------------ */
.offcanvas-header .btn-close-custom {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background-color: transparent;
  border: 1px solid var(--text-color-2);
  border-radius: 10px;
  font-size: 16px;
  padding: 5px 12px;
  cursor: pointer;
}

.btn-close {
  color: var(--color-main) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a0893f'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 1 !important;
}

.btn-close:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.offcanvas {
  background-color: var(--charcoal) !important;
}

/* ------------------------------------------------------
   5.1.1 OFFCANVAS SOCIAL ICON
   Social icon styles in offcanvas menu.
------------------------------------------------------ */
.social-icon-32 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.39);
  border-radius: 50%;
  color: var(--color-subtle);
  background-color: transparent;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

.social-icon-32:hover {
  color: var(--heading-color);
  background-color: white;
}

/* ------------------------------------------------------
   5.2 DROPDOWN
   Dropdown menu styles in navbar.
------------------------------------------------------ */
.nav-item.dropdown .nav-link:hover {
  color: var(--color-main);
  box-shadow: none;
}

.nav-item.dropdown .nav-link:active {
  box-shadow: none;
}

.nav-link {
  color: var(--color-main) !important;
  font-size: 20px;
  font-family: var(--font-1);
  font-weight: 500;
}

.nav-item:hover .nav-link {
  color: white !important;
}

.nav-link.active {
  color: white !important;
  box-shadow: none;
}

.nav-link:focus,
.dropdown-item:focus {
  color: var(--color-main);
  outline: none;
  box-shadow: none !important;
}

.dropdown-toggle {
  box-shadow: none !important;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-icon-size {
  font-size: 10px;
}

.dropdown-menu {
  padding-left: 0px;
  padding-bottom: 12px;
  padding-right: 0px;
  background-color: var(--color-darker);
  min-width: 210px;
  border: none;
  box-shadow: none;
  border-radius: 5px;
}

.dropdown-menu a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu:hover a:hover {
  color: #fff;
  background-color: var(--color-main);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  font-size: 20px;
  color: var(--color-main) !important;
  font-weight: 500 !important;
  border-radius: 5px;
}

.dropdown-item:hover {
  background-color: var(--color-darker) !important;
  color: white !important;
}

/* ======================================================
   6. HERO STYLES
   Styles for hero section and hero forms.
====================================================== */
.ff-playfair {
  font-family: var(--font-playfair);
  font-weight: 500 !important;
}

/* .testimonial-circle {
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid white;
} */

.testimonial-circle-2 {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid white;
}

.testimonial-margin {
  margin-left: -16px;
}

.testimonial-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.666);
  font-family: var(--font-1);
}

.hero-form {
  height: fit-content;
  background-color: transparent;
  font-size: 16px;
  font-family: var(--font-1);
  color: white;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-form::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-form:focus {
  border: none;
  outline: none;
  color: white;
  border-bottom: 1px solid white;
}

.hero-form-select {
  max-width: 220px;
  height: fit-content;
  background-color: transparent;
  font-size: 16px;
  font-family: var(--font-1);
  color: white;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  cursor: pointer;
}

.hero-form-select:focus {
  outline: none;
  border-bottom: 1px solid white;
}

.hero-form-select option {
  background-color: white;
  color: black;
  font-family: var(--font-1);
  font-size: 16px;
}

.subtitle {
  font-size: 14px;
  font-family: var(--font-lato);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ======================================================
   7. ABOUT STYLES
   Styles for about section and cards.
====================================================== */
.about-card {
  background-color: var(--olive);
  padding: 24px;
  width: 100%;
}

/* ======================================================
   8. SERVICE STYLES
   Styles for services section and icons.
====================================================== */
.services-icon {
  width: 35px;
  height: 100%;
}

.link-1 {
  color: var(--color-darker);
  font-size: 16px;
  font-family: var(--font-1);
  transition: color 0.3s ease;
}

.link-1:hover {
  color: var(--color-main);
}

/* ======================================================
   9. HOW IT WORKS STYLES
   Styles for property listings and related elements.
====================================================== */
.bg-listing {
  background-size: cover;
  background-position: center;
  height: 512px;
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.bg-listing::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}
.detail-img {
  width: 100%;
  height: 512px;
  object-fit: cover;
}

.text-listing {
  font-size: 13px;
  color: white;
  font-family: var(--font-lato);
  font-weight: 500;
}

.text-listing p {
  font-size: 13px;
  color: white;
  font-family: var(--font-lato);
  font-weight: 500;
}

.text-detail {
  display: flex;
  align-items: center;
}

.text-detail p {
  font-size: 13px;
  color: var(--color-main);
  font-family: var(--font-lato);
  font-weight: 500;
  margin-bottom: unset !important;
}

.text-detail img {
  height: 16px;
  width: 16px;
}


/* ======================================================
   10. WHY CHOOSE US STYLES
   Styles for Why Choose Us section.
====================================================== */
.bg-why-choose-us {
  height: max-content;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/4132_Hillcrest_Ext_Front_Facade_Garden_View_Final-scaled.jpeg"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.head-why-choose-us {
  font-size: 19px;
  color: var(--text-color-2);
  font-family: var(--font-1);
  font-weight: 500;
}

.gallery-img {
  display: inline-block;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
}

/* ======================================================
   11. TESTIMONIALS STYLES
   Styles for testimonials section and cards.
====================================================== */
.testimonial-card {
  background-color: var(--color-accent);
  padding: 30px;
}

.testimonial-job {
  font-size: 13px;
  color: var(--color-border);
}

/* ======================================================
   12. FAQS Style
   Styles for faqs section and cards.
====================================================== */
.accordion,
.accordion-button,
.accordion-item,
.accordion-header,
.accordion-body {
  border: none !important;
  box-shadow: none !important;
}

.accordion-button {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.6px;
  /* color: var(--text-color-1); */
  color: var(--charcoal) !important;
  background-color: var(--white);
  border-bottom: 1px solid var(--color-border) !important;
}

.accordion-subtle {
  background-color: var(--white) !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../icon/left.svg");
  background-size: auto;
  background-position: center;
}

.accordion-button.collapsed::after {
  background-image: url("../icon/left.svg");
  transform: rotate(270deg);
  background-size: auto;
  background-position: center;
}

.accordion-button:not(.collapsed) {
  background-color: var(--white) !important;
}

.accordion-button:hover {
  background-color: var(--white) !important;
}

.accordion-button:active {
  background-color: transparent !important;
}

.accordion-body {
  background-color: var(--white) !important;
  font-family: var(--font-montserrat);
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-item {
  border: none;
  border-radius: 0px !important;
}

.accordion-header,
.accordion-body,
.accordion-button {
  border-radius: 0px !important;
}

/* ======================================================
   13. BANNER STYLES
   Styles for banners and banner backgrounds.
====================================================== */
.bg-banner {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/banner-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-banner-2 {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/banner-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-banner-3 {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/banner-3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-banner-4 {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/banner-4.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-banner-5 {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/4132_Hillcrest_Ext_Front_Facade_Garden_View_Final-scaled.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-banner-6 {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/banner-6.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-404 {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/404.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.banner {
  height: 442px;
}

.text-404 {
  font-size: 200px;
  color: white;
  text-align: center;
}

.banner-subtitle {
  color: white;
  font-family: var(--font-1);
  opacity: 0.8;
}

.banner-subtitle:hover {
  opacity: 1;
}

/* ======================================================
   14. BLOG POST STYLES
   Styles for blog post cards and links.
====================================================== */
.blog-link {
  color: var(--color-main);
  font-size: 15px;
  font-family: var(--font-1);
}

.blog-link:hover {
  text-decoration: underline;
}
.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 270px;
}

.blog-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 10;
}

.blog-img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.blog-img-2 {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-img-wrapper:hover .blog-img,
.blog-col-1:hover .blog-img,
.blog-col-2:hover .blog-img,
.blog-col-3:hover .blog-img,
.blog-col-4:hover .blog-img,
.blog-col-5:hover .blog-img,
.blog-col-6:hover .blog-img,
.blog-col-7:hover .blog-img,
.blog-col-8:hover .blog-img {
  transform: scale(1.05) rotate(2deg);
}

.blog-img-wrapper:hover::before {
  opacity: 1;
}

.blog-meta {
  color: var(--text-color-2);
  font-size: 16px;
}

.blog-card {
  background-color: var(--color-darker);
  padding: 24px;
}

@media (max-width: 576px) {
  .blog-img-wrapper {
    height: 180px;
  }
}

/* ======================================================
   15. CORE VALUES STYLES
   Styles for core values section and cards.
====================================================== */
.accent-card {
  background-color: var(--color-accent);
  padding: 24px;
}

/* ======================================================
   16. TEAM STYLES
   Styles for team section and team cards.
====================================================== */
.team-card {
  background-color: var(--color-accent);
}

.team-img {
  height: 455px;
  border-radius: var(--border-radius-sm);
  display: block;
  transition: transform var(--transition-normal);
  object-fit: cover;
}

.img-team-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-team-wrapper .img-team-overlay {
  position: absolute;
  top: 3%;
  left: 5%;
  width: 90%;
  height: 94%;
  background-color: rgba(46, 47, 48, 0.5);
  opacity: 0;
  transition: opacity
    var(--transition-normal, 0.4s cubic-bezier(0.4, 0, 0.2, 1));
  z-index: 10;
}

.img-team-wrapper .social-team {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  opacity: 0;
  transition: opacity
      var(--transition-normal, 0.4s cubic-bezier(0.4, 0, 0.2, 1)),
    transform var(--transition-normal, 0.4s cubic-bezier(0.4, 0, 0.2, 1));
  z-index: 11;
}

.img-team-wrapper:hover .img-team-overlay {
  opacity: 1;
}

.img-team-wrapper:hover .social-team {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.icon-social-team {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  background-color: transparent;
  font-size: 24px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.icon-social-team:hover {
  color: var(--color-main);
  background-color: white;
  border: none;
}

/* ======================================================
   17. CONTACT STYLES
   Styles for contact forms and input fields.
====================================================== */
.comment-form {
  background-color: var(--color-accent);
  padding: 48px;
}

.bg-contact {
  background-color: var(--white);
}
.contact-form {
  background-color: var(--olive);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact-form h3 {
  color: var(--gold);
}

.contact-form button {
  color: var(--white);
  background-color: var(--gold);
  border: 1px solid var(--gold);
}
.contact-form button:hover {
  color: var(--charcoal);
  background-color: var(--white);
  border: 1px solid var(--gold);
}
.contact-input {
  background: var(--white);
  color: var(--charcoal);
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font-1);
  letter-spacing: 0.6px;
  padding: 12px;
  border-bottom: 2px solid var(--olive);
  width: 100%;
  transition: all 0.3s ease;
}

.contact-input::placeholder {
  color: var(--text-color-1);
}

.contact-input:focus {
  outline: none;
  border-bottom: 3px solid var(--gold);
  background-color: #fff;
}

.contact-input:hover {
  outline: none;
  border-bottom: 2px solid var(--gold);
}

/* Contact Form Labels */
.form-label {
  font-size: 14px;
  font-weight: 400px;
  font-family: var(--font-1);
  color: var(--white);
  margin-bottom: 8px;
  display: block;
}

/* Contact Details Card */
.contact-details-card {
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(160, 137, 63, 0.2);
}

.contact-detail-item {
  display: flex;
  gap: 15px;
  align-items: start;
}

.contact-detail-item i {
  font-size: 20px;
  margin-top: 3px;
}
.contact-details-card p,
.contact-details-card p a {
  color: var(--white);
}
/* Contact Social Icons */
.contact-social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background-color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social-icon:hover {
  color: var(--white);
  background-color: var(--olive);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(160, 137, 63, 0.4);
}
/* Contact Map Container */
.contact-map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ======================================================
   18. MAPS STYLES
   Styles for embedded maps and overlays.
====================================================== */
.maps-wrapper {
  position: relative;
  width: 100%;
  height: 388px;
  overflow: hidden;
}

.maps-wrapper iframe {
  height: 100%;
  width: 100%;
}


.maps-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: background-color 0.3s ease;
}

.maps-overlay:hover {
  background-color: transparent;
}

.maps {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  pointer-events: auto;
}

/* ======================================================
   19. SERVICES DETAIL STYLES
   Styles for service detail cards and backgrounds.
====================================================== */
.service-detail-card-1 {
  background-color: var(--color-darker);
  padding: 24px;
}

.service-detail-card-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/service-detail-card.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px;
}

.pricing-card {
  background-color: var(--color-darker);
  padding: 64px 32px;
}

.icon-post-terms {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  color: var(--color-main);
  background-color: transparent;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-post-terms:hover {
  color: var(--color-subtle);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
}

/* ======================================================
   20. FOOTER STYLES
   Styles for footer sections, newsletter, and footer links.
====================================================== */
.newsletter-container {
  border-bottom: var(--color-accent) 1px solid;
  width: 75%;
}

.newsletter-container:hover {
  border-bottom: white 1px solid;
}

.newsletter-form p {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 520px;
  border-radius: 5px;
  overflow: hidden;
  margin: unset !important;
}

.newsletter-form p .wpcf7-form-control-wrap {
  flex: 1;
}

.newsletter-form input[type="email"] {
  width: 100%;
  border: none;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
}

.btn-newsletter {
  text-align: center;
  border: none;
  cursor: pointer;
  background-color: unset;
  color: var(--white);
  /* font-weight: 600; */
}

/* Hide spinner space so it doesn't push layout */
.newsletter-form .wpcf7-spinner {
  position: absolute;
  right: 0;
  display: none;
}



.email-input {
  flex: 1;
  background-color: transparent;
  color: white;
  border: none;
  outline: none;
}

.email-input::placeholder {
  color: white;
  opacity: 0.8;
}

.email-input:focus {
  outline: none;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-link {
  color: var(--text-color-1);
}

.footer-link:hover {
  color: var(--gold);
}

.footer-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 24px;
}

.footer-links li {
  margin: 12px 0;
}

.footer-links li a {
  color: #d1d1d1;
}

.bg-footer h5 {
  color: var(--gold);
}

.bg-footer p,
.bg-footer p a {
  color: #d1d1d1;
}

/* Footer ABN Number */
.footer-abn {
  color: var(--color-main);
  font-size: 13px;
  font-family: var(--font-1);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

/* Footer Social Icons */
.footer-social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(160, 137, 63, 0.3);
  border-radius: 50%;
  color: white;
  background-color: var(--gold);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  color: white;
  background-color: var(--gold);
  border-color: var(--color-main);
  transform: translateY(-3px);
}

/* Copyright Section */
.footer-copyright {
  border-top: 1px solid rgba(160, 137, 63, 0.2);
  padding: 30px 0;
  margin-top: 50px;
}

.footer-copyright p {
  color: var(--gold);
  font-size: 14px;
  font-family: var(--font-1);
  letter-spacing: 0.3px;
}

/* ======================================================
   21. ANIMATION
   Animation keyframes and animation utility classes.
====================================================== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-120px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(120px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transform: translate(0, 0);
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

.fade-in-up {
  animation-name: fadeInUp;
}

.fade-in-down {
  animation-name: fadeInDown;
}

.fade-in-left {
  animation-name: fadeInLeft;
}

.fade-in-right {
  animation-name: fadeInRight;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
  animation-fill-mode: both;
}

.popup-message {
  display: none;
  background-color: var(--color-border);
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-left: 0;
  margin-right: 0;
}

.popup-message-2 {
  display: none;
  background-color: var(--color-border);
  color: var(--heading-color);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

/* ======================================================
   22. MEDIA QUERIES
   Responsive styles for different screen sizes.
====================================================== */
@media screen and (max-width: 992px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.1em;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 16px;
  }

  .page-size {
    width: 100%;
    padding: 50px 32px;
  }

  .navbar-size {
    width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav-link {
    font-size: 15px;
  }

  .dropdown-menu {
    border: none;
    background-color: var(--color-darker);
  }

  .dropdown-item {
    font-size: 14px;
    color: var(--color-main) !important;
  }

  .dropdown-item:hover {
    color: white !important;
  }

  .search-form {
    max-width: 500px;
  }

  .banner {
    height: 300px; /* height: 260px; */
  }

  .pricing-card {
    padding: 48px 24px;
  }

  /* Senora Mobile Responsive */
  .sen-navbar {
    padding: 20px 30px;
  }

  .sen-navbar.scrolled {
    padding: 15px 30px;
  }

  .sen-logo img {
    /* height: 32px; */
  }
}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
    font-weight: 500;
  }

  .page-size {
    padding: 50px 20px;
  }

  .navbar-size {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-logo {
    width: 100%;
    max-height: 20px;
  }

  .search-form {
    width: 100%;
  }

  .bg-sign-up {
    padding: 16px;
  }

  .banner {
    height: 260px;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  /* Senora Small Mobile */
  .sen-navbar {
    padding: 15px 20px;
  }

  .sen-navbar.scrolled {
    padding: 12px 20px;
  }

  .sen-logo img {
    /* height: 28px; */
  }
}

/* Custom Edits MS */
/* about */
/*About Start*/
.ms-about-bg-subtle .page-size h2 {
  color: var(--charcoal);
}

.ms-about-bg-subtle h5 {
  color: var(--charcoal);
}

.ms-swiper-container .swiper-slide {
  height: 130px;
}

.ms-about-bg-subtle .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: unset !important;
  padding-right: unset !important;
}

@media screen and (max-width: 450px) {
  .about-card {
    padding: 20px 16px;
  }

  .about-card h3 {
    font-size: 20px;
  }

  .about-card button {
    margin-right: unset !important;
  }
}

/* About End */
/* Company Value Start */

.ms-bg-heading .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Company Value Ends */
/* Team Start */

/* Team Start Ends */
/* about ends*/
/* property listing start */
.ms-whychooseus-data h2 {
  font-family: var(--font-montserrat);
}

/* single css*/

.ms-single-listing-bg-subtle h3 {
  color: var(--olive);
}

.ms-process {
  margin: 92px 0;
}

.ms-process-container {
  max-width: 1366px;
  margin: auto;
  padding: 0 24px;
}

.ms-process-heading {
  margin-bottom: 32px;
  text-align: center;
}

.ms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  /* width: 100%; */
  max-width: 1200px;
  margin: auto;
}

.ms-subtitle {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 5px;
  font-family: var(--font-lato);
}

.ms-title {
  /* font-size: 32px; */
  font-weight: 700;
  font-family: var(--font-playfair);
  color: var(--olive);
}

.ms-card {
  background: var(--olive);
  padding: 30px 24px 28px;
  text-align: center;
  color: #ffffff;
  margin: auto;
  position: relative;
  transition: all 0.3s ease;
  min-height: 324px;
}

.ms-circle {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 25px;
}

.ms-number-div span {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 100%;
  background-color: hwb(83 39% 40%);
  font-family: var(--font-lato);
  /* background-color: var(--gold); */
}

.ms-circle-border {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--gold);
  border-radius: 50%;
  transition: 0.3s ease;
  animation: none;
  pointer-events: none;
  z-index: 1;
}

.ms-card:hover .ms-circle-border {
  animation: rotate 10s linear infinite;
  opacity: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ms-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  z-index: 2;
}

.ms-title-desc {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  color: #ffffff;
  font-family: var(--font-playfair);
}

.ms-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 20px;
}

.ms-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  max-height: 38px;
  overflow: hidden;
  font-family: var(--font-montserrat);
  transition: max-height 0.3s ease;
  margin-bottom: 0 !important;
}

.ms-text.ms-full {
  max-height: 400px;
}

.ms-btn {
  background: none;
  border: none;
  color: var(--gold);
  margin-top: 16px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-lato);
  text-transform: capitalize;
}

.ms-card::before,
.ms-card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 80%;
  height: 5px;
  background: var(--gold);
  border-radius: 50px;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.ms-card::before {
  top: 0;
  transform: translate(-50%, 0);
}

.ms-card::after {
  bottom: 0;
  transform: translate(-50%, 0);
}

.ms-card:hover::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ms-card:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 992px) {
  .ms-process {
    margin: 60px 0;
  }

  .ms-process-container {
    padding: 0 16px;
  }
}

@media screen and (max-width: 768px) {
  .ms-process {
    margin: 44px 0;
  }

  .ms-process-heading {
    margin-bottom: 24px;
  }

  .ms-title {
    /* font-size: 24px; */
  }

  .ms-subtitle {
    font-size: 12px;
  }
}

@media screen and (max-width: 596px) {
  .ms-grid {
    gap: 16px;
  }
}

/* process timeline ends */
@media screen and (max-width: 992px) {
  .ms-single-listing-bg-subtle .page-size {
    padding-right: 16px;
    padding-left: 16px;
  }

  .detail-img {
    height: 400px;
  }

  .ms-overview-div {
    margin-top: 20px !important;
  }

  .ms-desc-p {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .bg-listing {
    height: 440px;
  }
}

@media screen and (max-width: 768px) {
  .ms-about-bg-subtle .page-size h2 {
    font-size: 32px !important;
  }

  .detail-img {
    height: 350px;
  }

  .ms-single-listing-bg-subtle p {
    font-size: 14px;
  }

  .bg-listing {
    height: 320px;
    padding: 24px;
  }

  .bg-listing h4 {
    font-size: 22px;
  }

  .text-listing {
    font-size: 12px;
  }

  .text-listing p {
    font-size: 12px;
  }
}

@media screen and (max-width: 450px) {
  .ms-about-bg-subtle .page-size h2 {
    font-size: 28px !important;
  }

  .ms-about-bg-subtle .page-size p {
    font-size: 14px !important;
  }

  .detail-img {
    height: 320px;
  }

  .bg-listing {
    height: 280px;
    padding: 20px;
  }

  .bg-listing h4 {
    font-size: 20px;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .text-listing {
    font-size: 11px;
  }

  .text-listing p {
    font-size: 11px;
  }

  .btn-1 {
    font-size: 13px;
    padding: 5px 10px;
  }
}

/* property listing ends */

/* Video Section Start */
.ms-video-section {
  max-width: 1366px;
  margin: auto;
  padding: 0 24px;
}

.ms-video-heading {
  text-align: center;
}

.ms-video-sub {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  font-family: var(--font-lato);
  margin-bottom: 6px;
}

.ms-video-title {
  /* font-size: 32px; */
  font-weight: 700;
  margin: 0;
  color: var(--olive);
}

.ms-video-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  /* min-height: 420px; */
  /* overflow: hidden; */
  margin-top: 32px;
}

.ms-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(17, 18, 20, 0.25),
      rgba(17, 18, 20, 0.55));
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .ms-video-section {
    padding: 0 16px;
  }

  .ms-video-title {
    /* font-size: 28px; */
  }

  .ms-video-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .ms-video-wrapper {
    height: 320px;
  }

  .ms-video-sub {
    font-size: 12px;
  }

  .ms-video-title {
    /* font-size: 24px; */
  }
}

@media (max-width: 450px) {
  .ms-video-wrapper {
    height: 280px;
  }
}

/* Video Section Ends */

.swiper-property-detail .swiper-slide {
  height: 200px !important;
}

.swiper-property-detail .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* gallery section */
.ms-gallery-section {
  max-width: 1366px;
  margin: 92px auto;
  padding: 0px 24px;
}

.ms-gallery-sub {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  font-family: var(--font-lato);
  /* font-weight: 600; */
  text-align: center;
  margin-bottom: 6px;
}

.ms-gallery-section-heading h3 {
  /* font-size: 32px; */
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: var(--olive);
}

.nGY2Navigationbar {
  text-align: right !important;
}

.ms-gallery-section .nanogallery_gallerytheme_custom_my_nanogallery .nGY2NavPagination {
  background: var(--gold) !important;
}

.ms-gallery-section .nanogallery_gallerytheme_custom_my_nanogallery .nGY2paginationRectangleCurrentPage {
  background: var(--gold) !important;
  border: 3px solid var(--gold) !important;
}

@media (max-width: 992px) {
  .ms-gallery-section {
    margin: 60px 0;
    padding: 0 16px;
  }



}

@media (max-width: 768px) {
  .ms-gallery-section {
    margin: 44px 0;
  }

  .ms-gallery-sub {
    font-size: 12px;
  }

}


/* Gallery Page */
.senora-gallery-wrapper {
  max-width: 1366px;
  margin: 92px auto;
  padding: 0px 24px;
}


.senora-gallery-wrapper .ufg-thumbnail-border {
  height: 100%;
}

.senora-gallery-wrapper .ufg-lightbox img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .ms-senora-gallery-wrapper {
    margin: 60px 0;
    padding: 0 16px;
  }

}

@media (max-width: 768px) {
  .senora-gallery-wrapper {
    margin: 44px 0;
  }



}

/* Gallery Page Ends */

/* Custom Edits MS ends */
