/* CSS Variables */
:root {
  --primary: #6c757d;
  --primary-dark: #495057;
  --secondary: #6c757d;
  --dark: #212529;
  --light: #ffffff;
  --gray: #adb5bd;
  --gray-light: #f8f9fa;
  --goldenrod: #daa520;
  --transition: all 0.3s ease;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --radius: 10px;
  --small: 20px;
  --medium: 50px;
  --large: 100px;
  --xlarge: 160px;
  --headerHeight: 100px;
}

/* Grid System */
.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_3.small-gap {
  width: calc(25% - 15px);
  margin-right: var(--small);
}

.grid_3.small-gap:nth-child(4n) {
  margin-right: 0;
}

.grid_4 {
  width: 33.3333333333%;
}

.grid_4.small-gap {
  width: calc(33.333% - var(--small));
  margin-right: calc(var(--small) + var(--xsmall));
}

.grid_4.small-gap:nth-child(3n) {
  margin-right: 0;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: calc(50% - var(--small));
}

.grid_6.small-gap {
  width: calc(50% - var(--small));
  margin-right: var(--medium);
}

.grid_6.small-gap:nth-child(2n) {
  margin-right: 0;
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 66.6666666667%;
}

.grid_8.small-gap {
  width: calc(66.6666666667% - var(--small));
  margin-right: var(--small);
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

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

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display: flex;
  position: relative;
}
.grid_1.block,
.grid_2.block,
.grid_3.block,
.grid_4.block,
.grid_5.block,
.grid_6.block,
.grid_7.block,
.grid_8.block,
.grid_9.block,
.grid_10.block,
.grid_11.block,
.grid_12.block {
  display: block;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
  padding-top: var(--headerHeight);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  color: goldenrod !important;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: var(--small);
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--goldenrod);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.container.large {
  max-width: 1440px;
}
.container.medium {
  max-width: 1200px;
}
.container.small {
  max-width: 1200px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--dark);
  color: var(--goldenrod);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--goldenrod);
  transition: 0.3s;
  font-size: 1.5rem;
}
.btn.bg-light {
  background-color: var(--light);
  color: var(--dark);
}
@media (hover: hover) {
  .btn:hover {
    background: var(--dark);
    color: var(--goldenrod);
  }
  .btn.ng-light:hover {
    background-color: var(--dark);
    color: var(--goldenrod);
  }
}

.disclaimer p {
  font-size: 12px;
  padding: var(--small) 0;
}

.section {
  padding: var(--xlarge) 0;
  position: relative;
  background-color: var(--light) !important;
}
.section:after {
  content: "";
  display: flex;
  width: 100%;
  max-width: calc(100% - var(--xlarge));
  height: 1px;
  margin: auto;
  background-color: var(--dark);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.text-center {
  text-align: center;
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--headerHeight);
  width: 100%;
  z-index: 1000;
  background: var(--dark);
  padding: 0 var(--large);
  display: flex;
  align-items: center;
  border-bottom: 6px solid goldenrod;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
}
.logo img {
  width: 100%;
  height: calc(var(--headerHeight) - small);
}

.nav-menu {
  display: flex;
  list-style: none;
}
.nav-menu .nav-item {
  margin-right: var(--medium);
}
.nav-menu .nav-item:last-child {
  margin-right: 0;
}
.nav-menu .nav-item .nav-link {
  font-weight: 500;
  position: relative;
  color: var(--light);
}
.nav-menu .nav-item .nav-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  color: var(--light);
  transition: var(--transition);
}
@media (hover: hover) {
  .nav-menu .nav-item .nav-link:hover:after {
    width: 100%;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger * {
  color: var(--light);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Video Background */
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  z-index: 0;
}
.hero-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* Hero Section */
.hero,
.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - var(--headerHeight));
  height: calc(100svh - var(--headerHeight));
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
}

/* About Section */
.about {
  background: var(--light);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Services Section */
.services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 6rem 4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.service-card a {
  margin-top: auto;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--goldenrod);
  margin-bottom: 1rem;
  background: var(--dark);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--goldenrod);
  margin-bottom: 1rem;
  background: var(--dark);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

/* Contact Section */
.contact {
  background: var(--gray-light);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--dark);
  border-radius: var(--radius);
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 3rem 0 2rem;
  border-top: 6px solid goldenrod;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  margin-top: 2rem;
  text-align: center;
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

#why-us {
  background-color: var(--light);
}

.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background-color: var(--dark);
  padding: var(--xlarge) var(--small);
  overflow: auto;
  overflow-x: hidden;
  display: none;
  animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.popUp > div {
  display: flex;
  flex-direction: column;
  width: 1000px;
  max-width: 100%;
}
.popUp > div h2 {
  padding-bottom: var(--small);
  margin-bottom: var(--small);
}
.popUp > div p {
  margin: 10px 0;
  font-size: 14px;
}
.popUp h2,
.popUp p,
.popUp h3,
.popUp ul,
.popUp li {
  color: var(--light);
  text-align: left;
}
.popUp h3 {
  padding-top: 0.5rem;
}
.popUp ul {
  padding-left: 1em;
}
.popUp button {
  position: fixed;
  top: 0;
  width: 100%;
  left: var(--small);
  color: var(--goldenrod);
  background-color: var(--dark);
  text-decoration: underline;
  z-index: 999;
  border-radius: 0;
  padding: var(--medium) 0 var(--small);
  display: flex;
  border: 0 none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

#by-law {
  display: flex;
  justify-content: center;
  align-items: center;
}
#by-law * {
  font-size: 14px;
  color: var(--light);
  margin: 0;
}
#by-law span {
  margin: 0 var(--small);
}
#by-law a {
  cursor: pointer;
}

/* -------------------------------------------------------- */
.mbm {
  margin-bottom: var(--medium);
}

.row {
  display: flex;
}

.column {
  display: flex;
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.mlra {
  margin-left: auto;
  margin-right: auto;
}

.mra {
  margin-right: auto;
}

.light {
  color: var(--light);
}

.center-align {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1280px) {
  :root {
    --radius: 10px;
    --small: 20px;
    --medium: 40px;
    --large: 80px;
    --xlarge: 120px;
    --headerHeight: 80px;
  }
  .section {
    padding: var(--large) 0;
  }
  header {
    padding: var(--small);
  }
  .logo img {
    width: auto;
    height: 40px;
  }
  p {
    font-size: 1.1rem;
  }
  .service-card {
    background: white;
    padding: 4rem 1.5rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  header {
    padding: 0;
  }
  header .logo img {
    width: 100%;
    height: 40px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1.1rem;
  }
  .grid_6 {
    width: calc(100% - var(--medium));
  }
  .hero-content,
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .about-image {
    order: -1;
  }
}
@media (max-width: 768px) {
  .mobile-vertical-ratio {
    aspect-ratio: 3/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hamburger {
    display: block;
    font-size: 1.5rem;
  }
  .nav-menu {
    position: fixed;
    bottom: 0;
    right: -100%;
    flex-direction: column;
    background: var(--dark);
    width: 100%;
    height: calc(100vh - var(--headerHeight));
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: var(--large) var(--small);
    border-top: 1px solid var(--light);
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-item {
    margin: 0 0 var(--small) 0;
  }
  .hero {
    padding: 6rem 0 3rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .section {
    padding: 3rem 0;
  }
  .service-card,
  .feature {
    padding: 1.5rem;
  }
}
.screen-reader-text {
  display: none;
}/*# sourceMappingURL=main.css.map */