/*
 * Atlantic Real Estate Brokers LLC - Consolidated Stylesheet
 * Organized and cleaned CSS for maintainable styling
 */

/* ===============================================
   CSS CUSTOM PROPERTIES (ROOT VARIABLES)
   =============================================== */
:root {
  /* Brand Colors */
  --primary: #37ca37;
  --secondary: #188bf6;
  --white: #ffffff;
  --gray: #cbd5e0;
  --black: #000000;
  --red: #e93d3d;
  --orange: #f6ad55;
  --yellow: #faf089;
  --green: #9ae6b4;
  --teal: #81e6d9;
  --malibu: #63b3ed;
  --indigo: #757BBD;
  --purple: #d6bcfa;
  --pink: #fbb6ce;
  --transparent: transparent;
  --overlay: rgba(0, 0, 0, 0.5);
  
  /* Custom Brand Colors */
  --color-l30fft6l: #E4E5E8;
  --color-l30fszyf: #8d9196;
  --color-l30fuzf3: #1e2832cc;
  --color-l30fy37e: #DF434A;
  --color-l30g3spt: #4d4f52;
  --color-l30hr9wv: #74777c;
  --color-lnemht7o: #00274C;
  --color-lnemjrci: #f3d688;
  
  /* Typography */
  --arial: Arial;
  --lato: Lato;
  --open-sans: Open Sans;
  --montserrat: Montserrat;
  --raleway: Raleway;
  --headlinefont: Raleway;
  --contentfont: Lato;
  --text-color: #000000;
  --link-color: #188bf6;
  
  /* Viewport Width */
  --vw: 100vh/100;
}

/* ===============================================
   RESET / BASE STYLES
   =============================================== */
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-weight: unset !important;
  line-height: unset !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}

img {
  border-style: none;
  vertical-align: middle;
  max-width: 100%;
}

button, input, optgroup, select, textarea {
  border-radius: unset;
  font-family: unset;
  font-size: unset;
  line-height: unset;
  margin: unset;
  text-transform: unset;
  font-family: inherit;
  outline: 0;
}

/* ===============================================
   TYPOGRAPHY
   =============================================== */
.hl-app {
  color: #607179;
  font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  min-height: 100%;
  padding: 0 !important;
}

/* Headings */
.hl-app h1, .hl-app h2, .hl-app h3, .hl-app h4, .hl-app h5, .hl-app h6 {
  color: #2a3135;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.hl-app .h1, .hl-app .h3, .hl-app .h6 h1, .hl-app h2, .hl-app h3, .hl-app h6 {
  color: inherit;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 0;
}

.hl-app .h1, .hl-app h1 { font-size: 2.5rem; }
.hl-app .h2, .hl-app h2 { font-size: 2rem; }
.hl-app .h3, .hl-app h3 { font-size: 1.75rem; }
.hl-app .h4, .hl-app h4 { font-size: 1.5rem; }
.hl-app .h5, .hl-app h5 { font-size: 1.25rem; }
.hl-app .h6, .hl-app h6 { font-size: 1rem; }

/* Text Utilities */
.text-light { font-weight: 400; }
.text-white { color: #fff; }
.text-bold { font-weight: 700; }
.text-italic { font-style: italic; }
.text-bold-italic { font-style: italic; font-weight: 700; }
.text-black { --tw-text-opacity: 1; color: rgba(0, 0, 0, var(--tw-text-opacity)); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-capitalize { text-transform: capitalize; }

/* Font Sizes */
.text-8xl { font-size: 6rem; line-height: 1; }
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }

/* Font Weights */
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.font-semibold { font-weight: 600; }
.font-base { font-weight: 400; }
.font-sans {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.leading-tight { line-height: 1.25; }

/* ===============================================
   LAYOUT / GRID SYSTEM
   =============================================== */
/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 9999; }
.d-flex { display: flex !important; }
.d-grid { display: grid; }
.grid { display: grid; }

/* Alignment */
.align-center { align-items: center; }
.align-items-center { align-items: center !important; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center !important; }
.place-content-center { place-content: center; }

/* Container and Grid System */
.hl-app .row {
  margin-left: -15px;
  margin-right: -15px;
}

.hl-app .cal-row, .hl-app .row {
  display: flex;
  flex-wrap: wrap;
}

/* Columns */
.hl-app .col-12, .hl-app .col-6, .hl-app .col-8, .hl-app .col-md-12, .hl-app .col-md-3, .hl-app .col-sm-3, .hl-app .col-sm-6 {
  min-height: 1px;
  position: relative;
  width: 100%;
}

.hl-app .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
.hl-app .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
.hl-app .col-md-3 { flex: 0 0 25%; max-width: 25%; }
.hl-app .col-md-12 { flex: 0 0 100%; max-width: 100%; }
.hl-app .col-8 { flex: 0 0 66.6666666667%; max-width: 66.6666666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }

/* Width and Height Utilities */
.w-full { width: 100%; }
.w-100 { width: 100%; }
.w-50 { width: 50%; }
.w-25 { width: 25%; }
.h-full { height: 100%; }
.h-100 { height: 100%; }
.mw-100 { max-width: 100%; }
.max-w-400 { max-width: 400px; }
.max-w-520px { max-width: 520px; }
.min-h-screen { min-height: 100vh; }

/* Positioning */
.relative { position: relative; }
.fixed { position: fixed; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.right-0 { right: 0; }
.left-0 { left: 0; }

.centered {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

/* ===============================================
   SPACING (MARGINS & PADDING)
   =============================================== */
/* Margins */
.mx-auto { margin: 0 auto; }
.hl-app .mb-1, .hl-app .my-1 { margin-bottom: 0.25rem !important; }
.hl-app .mb-2, .hl-app .my-2 { margin-bottom: 0.5rem !important; }
.hl-app .ml-2, .hl-app .mx-2 { margin-left: 0.5rem !important; }
.hl-app .mr-2, .hl-app .mx-2 { margin-right: 0.5rem !important; }
.mr-2 { margin-right: 0.5rem; }
.mr-10 { margin-right: 10px; }
.ml-3 { margin-left: 0.75rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 32px; }
.mt-20 { margin-top: 20px; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }

/* Padding */
.hl-app .pr-3, .hl-app .px-3 { padding-right: 1rem !important; }
.hl-app .px-2 { padding-left: 15px !important; padding-right: 15px !important; }
.hl-app .p-0 { padding: 0 !important; }
.hl-app .pl-0, .hl-app .px-0 { padding-left: 0 !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }

/* Gaps */
.gap-1 { gap: 0.3rem; }
.gap-2 { gap: 0.625rem; }
.gap-4 { gap: 16px; }

/* ===============================================
   COMPONENTS
   =============================================== */

/* Buttons */
.hl-app a {
  background-color: transparent;
  color: #188bf6;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  transition: all 0.2s ease-in-out;
}

.hl-app a:active, .hl-app a:focus, .hl-app a:hover {
  color: #0871d3;
  outline: none;
  text-decoration: none;
}

.btn {
  background: 0 0;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
  font-size: 100%;
  font-weight: 600;
  min-width: 85px;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out 0s;
}

.btn-dark {
  background-color: #000;
  color: #fff;
}

.hl_button {
  border: 1px solid #e6edf2;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  max-width: 550px;
  min-width: 130px;
  padding: 15px 30px;
  transition: all 0.2s ease-in-out;
}

.hl_button:active, .hl_button:focus, .hl_button:hover {
  background-color: #e6edf2;
}

.hl_button.--primary {
  background-color: #188bf6;
  border-color: #188bf6;
  color: #fff;
}

.hl_button.--primary:active, .hl_button.--primary:focus, .hl_button.--primary:hover {
  background-color: #0871d3;
}

/* Button Effects */
.buttonRocking {
  animation: rocking 2s infinite;
  animation-timing-function: ease-out;
  transition: 0.2s;
}

@keyframes rocking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
  to { transform: rotate(0deg); }
}

.buttonPulseGlow {
  animation: pulseGlow 2s infinite;
  animation-timing-function: ease-in-out;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0); }
  25% { box-shadow: 0 0 2.5px 1px hsla(0, 0%, 100%, 0.25); }
  50% { box-shadow: 0 0 5px 2px hsla(0, 0%, 100%, 0.5); }
  85% { box-shadow: 0 0 5px 5px hsla(0, 0%, 100%, 0); }
  to { box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0); }
}

.buttonBounce {
  animation: bounce 1.5s infinite;
  animation-timing-function: ease-in;
  transition: 0.2s;
}

@keyframes bounce {
  15% { box-shadow: 0 0 0 0 transparent; transform: translateY(0); }
  35% { box-shadow: 0 8px 5px -5px rgba(0, 0, 0, 0.25); transform: translateY(-35%); }
  45% { box-shadow: 0 0 0 0 transparent; transform: translateY(0); }
  55% { box-shadow: 0 5px 4px -4px rgba(0, 0, 0, 0.25); transform: translateY(-20%); }
  70% { box-shadow: 0 0 0 0 transparent; transform: translateY(0); }
  80% { box-shadow: 0 4px 3px -3px rgba(0, 0, 0, 0.25); transform: translateY(-10%); }
  90% { box-shadow: 0 0 0 0 transparent; transform: translateY(0); }
  95% { box-shadow: 0 2px 3px -3px rgba(0, 0, 0, 0.25); transform: translateY(-2%); }
  99% { box-shadow: 0 0 0 0 transparent; transform: translateY(0); }
  to { box-shadow: 0 0 0 0 transparent; transform: translateY(0); }
}

/* Form Elements */
label {
  display: inline-block;
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
}

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f3f8fb;
  background-clip: padding-box;
  border: none;
  border-radius: 0.3125rem;
  color: #2a3135;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 15px 20px !important;
  transition: all 0.2s ease-in-out 0s;
  width: 100%;
}

.form-control:active:focus, .form-control:focus {
  background-color: #ecf0f3 !important;
  box-shadow: none !important;
  outline: none;
}

#_builder-form input[type=email],
#_builder-form input[type=number],
#_builder-form input[type=password],
#_builder-form input[type=text],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f3f8fb;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #9fa1a3 !important;
}

input[type=checkbox],
input[type=radio] {
  background-origin: border-box;
  background: #f3f8fb;
  border-color: #e2e8f0;
  border-radius: 100%;
  border-width: 1px;
  box-sizing: border-box;
  color: #4299e1;
  display: inline-block;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: middle;
}

/* Cards and Containers */
.hl_widget {
  background: #00000080;
  margin: auto;
  z-index: 9999999;
}

.hl_widget, .hl_widget > * {
  box-sizing: border-box;
}

.hl_widget.popup {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
}

.hl_widget-inner {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 5px 8.7px 20px #0000001a;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  position: relative;
}

/* Progress Bars */
.progress-outer {
  background-color: #f5f5f5;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  height: 35px;
  line-height: 36px;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
  width: 100%;
}

.progress-inner {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  color: #fff;
  float: left;
  font-size: 14px;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  transition: width 0.6s ease;
  width: 0;
}

/* Navigation */
.nav-menu-wrapper {
  display: flex;
  justify-content: space-between;
}

.nav-menu-wrapper .branding {
  align-items: center;
  display: flex;
}

.nav-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
}

/* ===============================================
   UTILITIES
   =============================================== */

/* Display Utilities */
.block { display: block; }
.d-none { display: none !important; }
.hide, .hide-whole-container { display: none; }
.invisible { opacity: 0; }

/* Border Utilities */
.noBorder { border: none !important; }

/* Border Radius */
.radius0 { border-radius: 0; }
.radius1 { border-radius: 1px; }
.radius2 { border-radius: 2px; }
.radius3 { border-radius: 3px; }
.radius4 { border-radius: 4px; }
.radius5 { border-radius: 5px; }
.radius10 { border-radius: 10px; }
.radius15 { border-radius: 15px; }
.radius20 { border-radius: 20px; }
.radius25 { border-radius: 25px; }
.radius50 { border-radius: 50px; }
.radius75 { border-radius: 75px; }
.radius100 { border-radius: 100px; }
.radius125 { border-radius: 125px; }
.radius150 { border-radius: 150px; }

/* Shadow Utilities */
.shadow5inner { box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05); }
.shadow10inner { box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1); }
.shadow20inner { box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.2); }
.shadow30inner { box-shadow: inset 0 2px 5px 2px rgba(0, 0, 0, 0.3); }
.shadow40inner { box-shadow: inset 0 2px 5px 2px rgba(0, 0, 0, 0.4); }
.shadow5 { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); }
.shadow10 { box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); }
.shadow20 { box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); }
.shadow30 { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3); }
.shadow40 { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.4); }

/* Background Utilities */
.bg-fixed {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  overflow: auto;
  background-color: var(--transparent);
}

.bgCover {
  background-attachment: fixed !important;
  background-position: 50% !important;
  background-repeat: repeat !important;
  background-size: cover !important;
  -webkit-background-size: cover !important;
}

.full-center {
  background-position: 50% !important;
  background-repeat: repeat !important;
  background-size: cover !important;
}

.fill-width {
  background-size: 100% auto !important;
}

.fill-width, .fill-width-height {
  background-repeat: no-repeat !important;
}

.fill-width-height {
  background-size: 100% 100% !important;
}

.no-repeat { background-repeat: no-repeat !important; }
.repeat-x { background-repeat: repeat-x !important; }
.repeat-y { background-repeat: repeat-y !important; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden; }

/* Cursor Utilities */
.pointer { cursor: pointer; }

/* ===============================================
   SPECIALIZED COMPONENTS
   =============================================== */

/* Page Layout Components */
.c-section > .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  z-index: 2;
}

.c-row > .inner {
  display: flex;
  width: 100%;
}

.c-column > .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: inherit;
  width: 100% !important;
}

.c-wrapper {
  position: relative;
}

.c-element {
  position: relative;
}

.c-column {
  flex: 1;
}

.c-column, .c-row {
  position: relative;
}

.c-section > .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px;
  width: 100%;
}

.c-column {
  padding-left: 15px;
  padding-right: 15px;
}

/* Width Sections */
.wideSection {
  max-width: 1120px;
}

.midWideSection, .wideSection {
  margin-left: auto !important;
  margin-right: auto !important;
}

.midWideSection {
  max-width: 960px;
}

.midSection {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 720px;
}

/* Image Utilities */
.image-container {
  height: 100%;
  width: 100%;
}

.image-container img {
  max-width: 100%;
  vertical-align: middle;
}

.img-circle, .img-circle img, .feature-img-circle img {
  border-radius: 50% !important;
}

.img-round-corners, .img-round-corners img, .feature-img-round-corners img {
  border-radius: 5px;
}

.image-dark-border, .feature-image-dark-border img {
  border: 3px solid rgba(0, 0, 0, 0.7);
}

.image-white-border, .feature-image-white-border img {
  border: 3px solid #fff;
}

.img-grey, .img-grey img {
  filter: grayscale(100%);
  filter: gray;
  -webkit-transition: all 0.6s ease;
}

/* Spinners and Loaders */
.v-spinner .v-moon1 {
  position: relative;
}

.v-spinner .v-moon1, .v-spinner .v-moon2 {
  animation: v-moonStretchDelay 0.6s linear 0s infinite;
  animation-fill-mode: forwards;
}

.v-spinner .v-moon2 {
  opacity: 0.8;
  position: absolute;
}

.v-spinner .v-moon3 {
  opacity: 0.1;
}

@keyframes v-moonStretchDelay {
  to { transform: rotate(1turn); }
}

/* Modals and Overlays */
#overlay {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
}

#overlay.show {
  opacity: 1;
}

.popup-body {
  background-color: #fff;
  height: auto;
  left: 50%;
  min-height: 180px;
  position: absolute;
  top: 10%;
  transition: transform 0.25s ease-in-out;
}

.popup-body, .popup-body.show {
  transform: translate(-50%);
}

/* FAQs */
.hl-faq-child-heading {
  border: none;
  cursor: pointer;
  justify-content: space-between;
  outline: none;
  padding: 15px;
  width: 100%;
}

.hl-faq-child-head, .hl-faq-child-heading {
  align-items: center;
  display: flex;
}

/* ===============================================
   RESPONSIVE BREAKPOINTS
   =============================================== */

/* Mobile First - Small devices (max-width: 480px) */
@media screen and (max-width: 480px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
  
  .sm-text-10xl { font-size: 10rem; line-height: 1; }
  .sm-text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm-px-0 { padding-left: 0; padding-right: 0; }
}

/* Medium devices (481px - 767px) */
@media only screen and (max-width: 767px) {
  .c-row > .inner { flex-direction: column; }
  .desktop-only { display: none; }
  
  .c-column, .c-row { width: 100% !important; }
  
  .c-column, .c-column > .inner, .c-row > .inner, .c-section, .c-section > .inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .c-column, .c-column > .inner, .c-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .c-row {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* Tablet and up (min-width: 768px) */
@media only screen and (min-width: 768px) {
  .mobile-only { display: none; }
  
  .hl_wrapper.nav-shrink .hl_wrapper--inner.page-creator, body {
    padding-top: 0;
  }
  
  .hl_page-creator--menu {
    left: 0;
    top: 0;
    z-index: 10;
  }
  
  .hl_wrapper {
    padding-left: 0;
  }
}

/* Large devices (min-width: 940px) */
@media (min-width: 940px) {
  .hl_widget-wrapper {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .hl_widget-wrapper .hl_widget-calendar, .hl_widget-wrapper .hl_widget-form {
    flex: 1 0 0;
  }
  
  .hl_widget-wrapper .hl_widget-calendar {
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
  }
}

/* Extra large devices (min-width: 1200px) */
@media (min-width: 1200px) {
  .hl_wrapper.nav-shrink {
    padding-left: 0 !important;
  }
}

/* ===============================================
   PRINT STYLES
   =============================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
  
  img {
    max-width: 100% !important;
  }
  
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  
  h2, h3 {
    page-break-after: avoid;
  }
}

/* ===============================================
   CUSTOM BRAND SPECIFIC STYLES
   =============================================== */

/* Atlantic Real Estate Specific Colors and Components */
.hl_main_popup {
  padding: 0;
  margin-top: 0;
  border-color: var(--color-lnemht7o);
  border-width: 10px;
  border-style: solid;
  background-color: var(--color-lnemht7o);
}

.drop-zone-draggable .hl_main_popup {
  padding: 0;
  margin-top: 0;
  border-color: var(--color-lnemht7o);
  border-width: 10px;
  border-style: solid;
  background-color: var(--color-lnemht7o);
}

/* Custom Form Verification Components */
.confirm-btn, .reset-btn, .verify-phone-btn, .preview-common-btn {
  background: #fff;
  border: 1px solid #d0d5dd !important;
  border-radius: 8px;
  box-shadow: 0 1px 2px #1018280d;
  color: #344055;
  cursor: pointer;
  line-height: 1.5 !important;
  padding: 8px 20px;
  text-wrap: nowrap;
  white-space: nowrap;
}

.confirm-btn {
  background-color: #155eef;
  color: #fff;
  margin-right: 0.75rem;
}

.verification-container {
  margin-top: 10px;
}

.phone-input, .email-input {
  -moz-column-gap: 12px;
  column-gap: 12px;
}

.phone-input, .email-input, .verified-text {
  align-items: center;
  display: flex;
}

.verified-text {
  color: #72b76f;
  -moz-column-gap: 4px;
  column-gap: 4px;
}

/* OTP Inputs */
.otp::-moz-placeholder {
  font-size: 14px !important;
}

.otp::placeholder {
  font-size: 14px !important;
}

.recaptch-top-margin {
  margin-top: 0.5em;
}

/* Country Phone Input */
.countryphone {
  background-color: #f3f8fb;
  border: none;
  border-radius: 5px;
  height: 51px;
  width: 100%;
}

/* International Telephone Input Flags */
.iti__flag {
  background-image: url(https://stcdn.leadconnectorhq.com/intl-tel-input/17.0.12/img/flags.png);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url(https://stcdn.leadconnectorhq.com/intl-tel-input/17.0.12/img/flags@2x.png);
  }
}

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

/* Test Mode Badge */
.test-mode-badge {
  background-color: #ffde92;
  border-radius: 4px;
  color: #bb5504;
  font-size: 10px;
  font-weight: 700;
  margin: 0 0.2rem;
  padding: 2px 4px;
  text-transform: uppercase;
}

/* reCAPTCHA Adjustments */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

.grecaptcha-badge {
  height: 0 !important;
  width: 0 !important;
}

/* ===============================================
   HERO SECTION STYLES (EXTRACTED FROM ORIGINAL)
   =============================================== */

/* Hero Section Background */
.hero-section {
  background-color: var(--color-lnemht7o);
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
  color: var(--white);
  min-height: 70vh;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1,
.hero-section .hero-title {
  font-family: var(--montserrat);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-section .hero-subtitle,
.hero-section .hero-description {
  font-family: var(--open-sans);
  font-size: 1.25rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-section .hero-description p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-section .hero-cta {
  text-align: center;
  margin-top: 2rem;
}

.hero-section .cta-button {
  font-family: var(--raleway);
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 15px 30px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.hero-section .cta-button:hover {
  background-color: var(--white);
  color: var(--black);
}

/* ===============================================
   HEADER SECTION STYLES
   =============================================== */

.header-section {
  background-color: var(--white);
  padding: 25px 0;
  border-bottom: 1px solid var(--gray);
}

.header-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.logo-container {
  display: flex;
  justify-content: center;
}

.company-logo {
  width: auto;
}

.credentials-phone-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.small-credentials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.small-credential-logo {
  height: 20px;
  width: auto;
}

.phone-number {
  font-family: var(--raleway);
  font-size: 1.4rem;
  color: var(--black);
  font-weight: 700;
}

.phone-link {
  text-decoration: none;
  color: inherit;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

.phone-link:hover {
  text-decoration: none;
  color: inherit;
}

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

.services-section {
  background-color: var(--white);
  background-image: url('../images/service-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--raleway);
  font-size: 2.5rem;
  color: var(--color-lnemht7o);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.service-card:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  fill: var(--color-lnemht7o);
  flex-shrink: 0;
}

.service-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card h3 {
  font-family: var(--raleway);
  font-size: 1.5rem;
  color: var(--color-lnemht7o);
  margin-bottom: 4px;
  font-weight: 600;
}

.service-card p {
  font-family: var(--contentfont);
  color: var(--color-l30hr9wv);
  line-height: 1.6;
  margin: 0;
}

.service-card .service-cta {
  margin-top: auto;
  padding-top: 25px;
}

.service-card .service-button {
  font-family: var(--raleway);
  background-color: transparent;
  color: var(--color-lnemht7o);
  border: 2px solid var(--color-l30hr9wv);
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card .service-button:hover {
  background-color: var(--color-lnemht7o);
  color: var(--white);
  border-color: var(--color-lnemht7o);
}

/* ===============================================
   SERVICE CARD FEATURES
   =============================================== */

.service-features {
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding: 8px 0 8px 25px;
  font-family: var(--contentfont);
  color: var(--color-l30hr9wv);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--color-lnemht7o);
  font-weight: bold;
  font-size: 1rem;
}

/* ===============================================
   CONTACT FORM SECTION STYLES
   =============================================== */

.contact-section {
  background-color: var(--color-lnemht7o);
  padding: 80px 0;
}

.contact-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-container {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-label {
  font-family: var(--raleway);
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  font-family: var(--contentfont);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

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

.submit-group {
  text-align: center;
  margin-top: 30px;
}

.submit-button {
  font-family: var(--raleway);
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.submit-button:hover {
  background-color: var(--white);
  color: var(--color-lnemht7o);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===============================================
   FOOTER CONTACT SECTION STYLES
   =============================================== */

.footer-contact-section {
  background-color: #01274B;
  padding: 25px 0;
  color: var(--white);
}

.footer-contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info strong {
  font-family: var(--raleway);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.contact-info span,
.contact-info a {
  font-family: var(--contentfont);
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
}

.contact-info a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===============================================
   FOOTER STYLES
   =============================================== */

.main-footer {
  background-color: var(--black);
  padding: 30px 0 20px;
}

.main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

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

.footer-logo-image {
  max-height: 40px;
  width: auto;
}

.main-footer p {
  font-family: var(--raleway);
  color: var(--white);
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
  line-height: 1.5;
}

/* ===============================================
   BACKGROUND UTILITIES
   =============================================== */

.bg-cover {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--transparent);
}

/* ===============================================
   CONTAINER AND LAYOUT
   =============================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
  .hero-section h1,
  .hero-section .hero-title {
    font-size: 2rem;
  }
  
  .hero-section .hero-subtitle,
  .hero-section .hero-description {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .credentials-row {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .credential-logo {
    height: 32px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  /* Footer contact grid responsive */
  .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Header responsive */
  .company-logo {
    max-height: 100px;
  }
  
  .phone-number {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1,
  .hero-section .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-section .hero-description {
    font-size: 1rem;
  }
  
  .services-section {
    padding: 60px 0;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .credentials-row {
    gap: 10px;
  }
  
  .credential-logo {
    height: 28px;
  }
  
  .contact-form-container {
    padding: 25px 15px;
  }
  
  /* Footer contact grid for mobile */
  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
  }
  
  /* Header mobile */
  .company-logo {
    max-height: 80px;
  }
  
  .phone-number {
    font-size: 1.2rem;
  }
}

/* ===============================================
   MODAL STYLES
   =============================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--white);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid var(--gray);
  background: var(--color-lnemht7o);
  border-radius: 12px 12px 0 0;
}

.modal-header h2 {
  font-family: var(--raleway);
  color: var(--white);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 30px;
}

.modal-form-container {
  max-width: none;
}

.modal-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.modal-contact-form .form-label {
  font-family: var(--raleway);
  color: var(--color-lnemht7o);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.modal-contact-form .form-input,
.modal-contact-form .form-select,
.modal-contact-form .form-textarea {
  font-family: var(--contentfont);
  background-color: var(--white);
  border: 2px solid var(--gray);
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.modal-contact-form .form-input:focus,
.modal-contact-form .form-select:focus,
.modal-contact-form .form-textarea:focus {
  border-color: var(--color-lnemht7o);
  box-shadow: 0 0 0 3px rgba(73, 97, 189, 0.1);
}

.modal-contact-form .form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Address Section Styles */
.address-section {
  margin: 20px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.address-heading {
  font-family: var(--raleway);
  font-size: 1.2rem;
  color: var(--color-lnemht7o);
  margin: 0 0 15px 0;
  font-weight: 600;
  text-align: left;
}

.address-section .form-group {
  margin-bottom: 15px;
}

.address-section .form-row {
  gap: 15px;
}

.modal-contact-form .form-submit {
  text-align: center;
  margin-top: 25px;
}

.modal-submit-button {
  font-family: var(--raleway);
  background-color: var(--color-lnemht7o);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-width: 200px;
}

.modal-submit-button:hover {
  background-color: var(--color-l30hr9wv);
  transform: translateY(-2px);
}

.modal-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Checkbox styling for modal */
.modal-contact-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--contentfont);
  color: var(--color-l30hr9wv);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 10px;
}

.modal-contact-form .checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.modal-contact-form .checkbox-text a {
  color: var(--color-lnemht7o);
  text-decoration: underline;
}

/* Modal responsive design */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px;
  }
  
  .modal-content {
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 20px;
  }
  
  .modal-header h2 {
    font-size: 1.3rem;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 5px;
  }
  
  .modal-header {
    padding: 15px;
  }
  
  .modal-header h2 {
    font-size: 1.2rem;
  }
  
  .modal-body {
    padding: 15px;
  }
  
  .modal-submit-button {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

/* ===============================================
   SUCCESS/ERROR MESSAGE STYLES
   =============================================== */

.success-message,
.error-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.success-message.show,
.error-message.show {
  transform: translateX(0);
  opacity: 1;
}

.success-message {
  border-left: 4px solid #10b981;
}

.error-message {
  border-left: 4px solid #ef4444;
}

.message-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.message-content i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.success-message .message-content i {
  color: #10b981;
}

.error-message .message-content i {
  color: #ef4444;
}

.message-content h3 {
  font-family: var(--raleway);
  font-size: 1.2rem;
  margin: 0;
  color: var(--black);
  font-weight: 600;
}

.message-content p {
  font-family: var(--contentfont);
  color: var(--color-l30hr9wv);
  margin: 0;
  line-height: 1.5;
}

.message-content .close-btn {
  background: var(--color-lnemht7o);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--raleway);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.message-content .close-btn:hover {
  background: var(--color-l30hr9wv);
}

/* Mobile responsiveness for messages */
@media (max-width: 480px) {
  .success-message,
  .error-message {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100%);
  }
  
  .success-message.show,
  .error-message.show {
    transform: translateY(0);
  }
}

/* ===============================================
   TERMS AND PRIVACY POLICY MODAL STYLES
   =============================================== */

.terms-content,
.privacy-content {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.terms-content h3,
.privacy-content h3 {
  font-family: var(--raleway);
  color: var(--color-lnemht7o);
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gray);
  padding-bottom: 10px;
}

.terms-content h4,
.privacy-content h4 {
  font-family: var(--raleway);
  color: var(--color-lnemht7o);
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.terms-content p,
.privacy-content p {
  font-family: var(--contentfont);
  color: var(--color-l30hr9wv);
  line-height: 1.6;
  margin-bottom: 15px;
}

.terms-content ul,
.privacy-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.terms-content li,
.privacy-content li {
  font-family: var(--contentfont);
  color: var(--color-l30hr9wv);
  line-height: 1.5;
  margin-bottom: 5px;
}

.download-section {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
}

.download-btn {
  background-color: var(--color-lnemht7o);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-family: var(--raleway);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-btn:hover {
  background-color: var(--color-l30hr9wv);
}

.download-btn i {
  font-size: 0.9rem;
}

/* ===============================================
   FORM ERROR STATES
   =============================================== */

.form-input.error,
.form-select.error,
.form-textarea.error {
  border: 2px solid #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.05) !important;
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

/* ===============================================
   END OF STYLESHEET
   =============================================== */