/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Ubuntu",  sans-serif;
}

@font-face {
  font-family: 'Amesterdam';
  src: url('/assets/amsterdam_4/Amsterdam.ttf') format('truetype'); /* Certifica-te que o nome do ficheiro está correto */
  font-weight: normal;
  font-style: normal;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #5f687b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #993c0f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #5f687b;  /* The default color of the main navmenu links */
  --nav-hover-color: #000000; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #5f687b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #10bc69; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}



/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/


@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.fixed-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1000;
}

.fixed-navbar {
  height: 66px; /* mobile */
}

@media (min-width: 1200px) {
  .fixed-navbar {
    height: 100px;
  }
}

nav {
  padding: 5px 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}


.logo .subtitle {
  font-size: .8rem;
  color: #000;
  text-align: center;
}

nav .logo img {
  height: 50px;
  width: auto;
  margin-right: 30px;

}
nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #993c0f 0%, #993c0f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  margin-top: 20px;
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #f5f5f5;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: fixed;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255, 0.97);
  transition: all 0.5s ease-in;
  z-index: 10000; /* Aumentado para garantir que fique no topo */
}

.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.hamburger {
  z-index: 10001;
}

.mobile-nav-active .navmenu {
  z-index: 10000;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-min {
  border-top: 1px solid #eee;
  background: #fff;
  padding: 24px 16px;
  color: #444;
}

.footer-min .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-min p {
  margin: 0.25rem 0;
}

.footer-min .legal-links {
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-min .legal-links a {
  color: #555;
  text-decoration: underline;
}

.footer-min .legal-links a:hover {
  color: #993c0f; /* matches brand color */
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  margin-left: 1350px;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/


section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../espaço.png') no-repeat center center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* compatível com iOS */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  color: #fff;
  overflow: hidden;
}

@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll !important;
  }
}

/* Overlay escuro */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Aumenta para garantir contraste */
  z-index: 1;
}

/* Conteúdo */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-right: 550px;
  max-width: 100%;
  height: auto;

}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6); /* contraste extra */
}

.hero p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #f1f1f1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Botão “Marcar Consulta” */
.btn-hero {
  background: #993c0f;
  color: #ffffff;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.btn-hero:hover {
  background-color: #b84d19;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-hero {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px;
    background-attachment: scroll;
  }

  .hero-content {
    margin: 0;
    text-align: center;
  }

  .about-modern {
    flex-direction: column;
  }

  .service-layout {
    flex-direction: column;
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
  color: #f1f1f1;
  padding: 100px 0;
}

/* Layout principal da apresentação (imagem + texto) */
.about-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.about-modern__image {
  flex: 0 0 320px;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.about-modern__image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.about-modern__text {
  flex: 1;
  max-width: 700px;
}

.about-modern__text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-modern__text h3 {
  font-size: 20px;
  color: #993c0f;
  margin-bottom: 30px;
}

.about-modern__text p {
  font-size: 18px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Bloco de Formação + Experiência */
.about-details {
  display: flex;
  gap: 40px;
  margin-top: 80px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-column {
  flex: 1 1 500px;
  max-width: 500px;
}

.about-column h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-column ul {
  list-style: none;
  padding-left: 0;
}

.about-column ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: #cccccc;
}

/* ✔ para os itens principais */
.about-column ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #993c0f;
  font-weight: bold;
}

/* Subitens com hífens (–) e sem ícone */
.about-column ul ul {
  margin-top: 10px;
  margin-bottom: 15px;
  padding-left: 0;
}



.about-column ul ul li {
  font-size: 16px;
  color: #bbbbbb;
  padding-left: 0;
  margin-left: 0;
  position: relative;
  list-style: none;
}

.about-column ul ul li::before {
  content: "– ";
  color: #bbbbbb;
  position: static;
  margin-right: 4px;
  font-weight: normal;
}


@media (max-width: 992px) {
  .about-modern {
    flex-direction: column;
    padding: 0 20px;
  }

  .about-modern__image,
  .about-modern__text {
    width: 100%;
    text-align: center;
  }

  .about-column {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#services {
  background-color: #f7f9fc;
  padding: 80px 0;
  height: 100;
}

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

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #993c0f;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 18px;
  color: #555;
}

/* NOVO layout horizontal elegante */
.service-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.service-icon {
  font-size: 60px;
  color: #993c0f;
  flex-shrink: 0;
}

.service-text h3 {
  font-size: 26px;
  color: #333;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-service {
  background-color: #993c0f;
  color: #fff;
  padding: 12px 26px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-service:hover {
  background-color: #b84d19;
}

@media (max-width: 768px) {
  .service-layout {
    flex-direction: column;
    padding: 20px;
  }

  .service-icon {
    font-size: 40px;
  }

  .service-text h3 {
    font-size: 20px;
  }

  .service-text p {
    font-size: 16px;
  }

  .btn-service {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# MARCAR CONSULTA 
--------------------------------------------------------------*/
#consult {
  background-color: #fdfdfd;
  padding: 80px 0;
}

.consult-form {
  background-color: #ffffff;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #993c0f;
  outline: none;
}


.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  align-items: center;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
}
.radio-option input[type="radio"] {
  accent-color: #993c0f;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.phone-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

.phone-wrapper input {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  flex: 1;
}

.phone-wrapper .indicativo {
  width: 80px;
  flex-shrink: 0;
  text-align: center;
}

.form-grid .form-group {
  flex: 1 1 300px;
}

.form-group input,
.form-group textarea {
  width: 100%;
}

.submit-btn {
  background-color: #993c0f;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
  transition: none;
}

.submit-btn:hover {
  background-color: #b84d19;
  transform: translateY(-2px);
}

/* Consent checkbox styling */
.consent-group {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.consent-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .consult-form .form-group {
    margin-bottom: 16px;
  }

  .form-grid {
    gap: 12px;
  }

  .radio-group {
    gap: 12px;
  }

  .form-group label {
    margin-bottom: 6px;
  }

  .submit-btn {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# CONTACT SECTION
--------------------------------------------------------------*/
.contact-modern {
  background-color: #f7f9fc;
  padding: 80px 20px;
}

.contact-card-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background-color: #fff;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 300px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #993c0f15;
  color: #993c0f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 24px;
}

.contact-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #444;
}

.contact-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.contact-card a {
  font-size: 15px;
  color: #993c0f;
  font-weight: 500;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-wrapper {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}


@media (max-width: 768px) {
  .contact-card-wrapper {
    flex-direction: column;
    align-items: center;
  }

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



/*--------------------------------------------------------------
# Services  Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/* Ensure images and videos are responsive */
img, video {
  max-width: 100%;
  height: auto;
}

/* Additional media queries for responsiveness */
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-hero {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px;
    background-attachment: scroll;
  }

  .hero-content {
    margin: 0;
    text-align: center;
  }

  .about-modern {
    flex-direction: column;
  }

  .service-layout {
    flex-direction: column;
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .about-modern {
    flex-direction: column;
    padding: 0 20px;
  }

  .about-modern__image,
  .about-modern__text {
    width: 100%;
    text-align: center;
  }

  .about-column {
    max-width: 100%;
  }
}
