/* === Consolidated & Responsive Utility Classes === */

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-content {
  padding: 60px 0;
}

.section-content h1,
.section-content h2 {
  font-size: 35px;
  color: #5e5e5e;
  text-align: center;
}

.section-background {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
}

.section-content p,
li,
a {
  font-family: "Monsterrat";
  font-size: 18px;
  color: #605e5e;
  line-height: 1.3;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 95%;
  }
  .section-content {
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .section-content {
    padding: 20px 0;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media screen and (max-width: 480px) {
  .section-content {
    padding: 20px 0;
  }
}

/* === End Utility Classes === */

/* === Core Reset + Typography === */
html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Inter";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Inter-VariableFont_opsz\\,wght.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Montserrat-VariableFont_wght.ttf");
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Montserrat";
}

body p {
  font-family: "Inter";
}

body h1,
h2,
h3 {
  font-family: "Inter";
}

main {
  margin: 0 auto;
}

/* === Header, Navigation, Logo === */

.main-header {
  width: 100%;
  color: #605e5e;
  margin: 0 auto;
  position: fixed;
  top: 0;
  z-index: 100;
}

.header-position {
  height: 100px;
  margin: 0 auto;
  display: flex;
  background-color: white;
  opacity: 0.9;
}

.logo {
  display: flex;
  float: left;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  overflow-clip-margin: content-box;
  overflow: clip;
  width: 300px;
  height: auto;
  padding-left: 30px;
}

.main-nav-wrapper {
  display: flex;
  width: inherit;
  margin: 0 auto;
  flex: 1;
}

.main-nav {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  border-radius: 10px;
}

.main-nav li {
  width: auto;
  margin: 0;
  border-radius: 10px;
  text-align: center;
}

.main-nav a {
  font-family: "Monsterrat";
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  height: 60px;
  padding: 0 25px;
  font-size: 20px;
  color: #605e5e;
  border-radius: 10px;
  margin-right: 5px;
}

.main-nav a:hover {
  cursor: pointer;
  background-color: #605e5e;
  color: white;
  transition: 0.4s;
  box-shadow: 0 0 4px #2b2a2a;
}

.main-nav ul li ul li:hover {
  background-color: #cd191c;
  transition: 0.5s;
  box-shadow: 0 0 1px #2b2a2a;
}

.main-nav ul ul {
  display: none;
  position: fixed;
  background-color: white;
}

.main-nav ul li:hover > ul {
  display: inherit;
}

/* === Mobile Navigation === */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  margin-right: 30px;
}

.mobile-menu-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: #605e5e;
  margin: 4px 0;
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav-wrapper {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 200;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .main-nav-wrapper.show {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 20px;
    border-radius: 0;
    font-size: 18px;
  }

  .main-nav ul li ul {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 25px;
  }

  .main-nav ul li:hover > ul {
    display: block;
  }

  @media screen and (max-width: 768px) {
    .main-nav ul li ul li > a::after {
      content: " ▸";
      font-size: 12px;
      color: #777;
    }
  }
}

/* .language {
  display: flex;
  float: right;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}

.language img {
  width: 12px;
  height: 12px;
  margin-right: 10px;
  color: #a0a09f;
  opacity: 0.6;
}

.language a {
  text-decoration: none;
  color: #605e5e;
} */

/* === Banner & Logo Sections === */

.page-banner {
  padding: 40px 0;
  position: relative;
  width: 100%;
  text-align: center;
  height: 300px;
  z-index: 1;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 480px) {
  .page-banner {
    padding: 130px 0 60px 0;
  }
}

.page-banner__content {
  position: relative;
}

.page-banner h1,
.page-banner h2 {
  font-family: "Monsterrat";
  font-weight: 400;
  margin-top: 70px;
  text-shadow: 1px 3px #575963;
  font-size: 33px;
  color: #fff;
}

h2 {
  text-shadow: none;
}

.page-banner__title {
  margin: 0 0 1rem 0;
}

@media (min-width: 480px) {
  .page-banner__title {
    font-size: 5rem;
  }
}

.page-banner__bg-image {
  background-size: cover;
  position: absolute;
  height: 150px;
}

.content-banner-two {
  width: 100%;
  margin-top: 100px;
  padding: 0;
  display: block;
}

.bg-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  position: static;
}

.bg-logo {
  opacity: 1;
  width: 600px;
  height: auto;
}

/* .bg-logo {
  width: 550px;
  height: auto;
} */

.home-logo {
  position: relative;
  top: 130px;
  left: 130px;
  width: 500px;
  height: 70px;
}

.container-about {
  padding: 10px 130px;
}

/* === Icons & Cards === */

.icon-home {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}

.icon-home-img {
  width: 100px;
  height: 100px;
  background-color: #cd191c;
  border: 10px #cd191c solid;
  border-radius: 100px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.icon-home-img:hover {
  transform: scale(1.05);
}

.card {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.image-container {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 90%;
  max-height: 300px;
  border-radius: 10px;
}

.image-container img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container:hover img {
  transform: scale(1.2);
}

.column-title {
  display: flex;
  width: 200px;
  position: absolute;
  top: 35%;
  left: 28%;
}

.column-title p {
  font-family: "Inter";
  color: white;
  font-size: 28px;
  text-align: center;
  font-weight: 400;
  text-shadow: 1px 1px #7e7e7e;
  width: 100%;
}

.column-bottom {
  display: flex;
  margin: 0 auto;
}

.column-arrow-icon {
  display: flex;
  align-items: center;
}

.column-arrow-icon img {
  height: 20px;
  width: 20px;
  transition: transform 0.2s;
}

.column-arrow-icon img:hover {
  transform: translateX(2px);
}

.column-bottom a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.column-bottom p {
  margin-left: 10px;
}

/* === Titles, Section Styles === */

.section-modern {
  background: linear-gradient(135deg, #ffffff 0%, #fffdfe 100%);
  padding: 50px 0;
  transition: background 0.6s ease-in-out;
}

.section-glass {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 60px;
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
}

.title-line {
  width: 50%;
  border-top: 2px solid #cd191c;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0px);
}

.arrow-icon {
  padding-top: 50px;
  height: 30px;
  width: 30px;
  transition: 0.3s;
  position: relative;
  left: 48%;
}

.arrow-icon:hover {
  margin-top: 2px;
}

/* === Footer === */

footer {
  height: 100px;
  width: 100%;
  background-color: #f9f9f9;
  display: flex;
}

.footer-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-center a {
  text-decoration: none;
  color: #7e7c7e;
  font-size: 13px;
  margin-left: 25px;
}

.footer-center a:hover {
  color: black;
}

.footer-container p {
  color: #7e7e7e;
  font-size: 13px;
}

.footer-left img {
  width: 30px;
  margin-left: 10px;
}

.footer-left img:hover {
  transform: translateY(2px);
}

.content-about-sub,
.content-services-sub {
  width: 800px;
  margin: 0 auto;
}

.container-about-sub,
.container-services-sub {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.posts-margin {
  height: 1px;
  margin-top: 100px;
}

/* Contact Button */

.container-contact-front {
  text-align: center;
  margin-top: 80px;
}

.elementor-contact-button {
  font-family: "Poppins";
  display: inline-block;
  padding: 20px 55px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
  color: #fff;
  background-color: #cd191c;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0);
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.elementor-contact-button:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #cd191c;
  transform: translateX(5px);
}

/* Tablet 768px */
@media screen and (max-width: 768px) {
  .container,
  .container-about {
    padding: 0 20px;
  }

  .content-banner-two {
    margin-top: 60px;
    height: auto;
    overflow: hidden;
    padding: 0;
  }

  .bg-image {
    max-height: 320px;
  }

  .home-logo,
  .home-logo2,
  .home-logo3,
  .home-logo4 {
    display: none;
  }

  .column-title p {
    font-size: 18px;
  }

  .icon-home-img {
    width: 80px;
    height: 80px;
    border-width: 8px;
  }

  .section-glass {
    padding: 30px;
  }

  .main-nav a {
    font-size: 18px;
    padding: 15px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .elementor-contact-button {
    width: 90%;
    font-size: 16px;
    padding: 15px 25px;
  }

  .content-about-sub,
  .content-services-sub {
    width: 95%;
  }
}

/* Phone - width 480 */
@media screen and (max-width: 375px) {
  .header-position {
    flex-direction: column;
    height: auto;
  }

  .content-banner-two {
    margin-top: 60px;
  }

  .bg-image {
    max-height: 220px;
  }

  .logo img {
    width: 200px;
    margin: 10px auto;
    height: auto;
    padding: 0;
  }

  h1,
  h2 {
    font-size: 16px;
  }

  p,
  li,
  a {
    font-size: 14px;
    line-height: 1.5;
  }

  .home-logo,
  .home-logo2,
  .home-logo3,
  .home-logo4 {
    width: 95%;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .container-about,
  .section-glass {
    padding: 20px;
  }

  .elementor-contact-button {
    width: 100%;
    font-size: 15px;
    padding: 12px 20px;
  }

  .icon-home-img {
    width: 60px;
    height: 60px;
    border-width: 6px;
  }

  .column-title p {
    font-size: 14px;
  }

  .arrow-icon {
    left: 45%;
  }
}

@media screen and (max-width: 320px) {
  .bg-image {
    max-height: 180px;
  }

  .icon-home-img {
    width: 50px;
    height: 50px;
    border-width: 4px;
  }

  h1,
  h2 {
    font-size: 14px;
  }

  p,
  li,
  a {
    font-size: 11px;
  }
}
