/* Main SCSS Entry Point */
/* Bootstrap Overrides (Optional) */
@import '../vendor/bootstrap/bootstrap.min.css';
/* =========================================
   Variables & Design Tokens
   ========================================= */
/* Color Palette - Modern Agency Theme */
/* Vibrant Blue */
/* Deep Blue */
/* Cyan/Teal Accent */
/* Warm Amber for highlights */
/* Slate 900 */
/* Slate 50 */
/* Slate 800 */
/* Slate 500 */
/* Typography */
/* Spacing & Layout */
/* Shadows (Premium Depth) */
/* Colored shadow hint */
/* Transitions */
/* =========================================
   Fonts
   ========================================= */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
body {
  font-family: "Montserrat", sans-serif;
}

/* Main SCSS Entry Point */
/* =========================================
   General Styles (Variables, Base, Header, Footer)
   ========================================= */
/* Base Typography */
body {
  font-family: "Montserrat", sans-serif;
  color: #222222;
  line-height: 1.6;
  background-color: #FFFFFF;
  padding-top: 80px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #007fca;
}
a:hover {
  color: #374c8e;
}

/* Premium Button Styles */
.btn {
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border-radius: 50rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.btn::before {
  content: "";
  display: inline-block;
  width: 2em;
  aspect-ratio: 1;
  background-image: url("../../assets/img/arrow-up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}
.btn-primary {
  background: linear-gradient(135deg, #007fca, #374c8e);
  border: none;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, rgb(0, 143.0321782178, 227.5), #007fca);
}
.btn-white {
  background-color: #FFFFFF;
  color: #007fca;
  border: 1px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Grey shadow */
}
.btn-white:hover {
  background-color: #f8f9fa;
  color: #374c8e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.btn-outline-primary {
  border: 2px solid #007fca;
  color: #007fca;
  background: transparent;
}
.btn-outline-primary:hover {
  background-color: #007fca;
  border-color: #007fca;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-borderless {
  background: transparent;
  color: #007fca;
  border: none;
  padding: 0;
  box-shadow: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  /* Adjust as needed */
  display: inline-flex;
  align-items: center;
}
.btn-borderless:hover {
  color: #374c8e;
  text-decoration: none;
  background: transparent;
  transform: translateX(5px);
  box-shadow: none;
}

/* Global Text Content Style (Matches Text Media Collage) */
.text-content-style h2,
.text-content-style h3,
.text-content-style h4 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #007FCA;
}
@media (max-width: 576px) {
  .text-content-style h2,
  .text-content-style h3,
  .text-content-style h4 {
    font-size: 2rem;
  }
}
.text-content-style strong {
  font-weight: 700;
}
.text-content-style p {
  font-size: 1.25rem;
  color: #222222;
  margin-bottom: 1.5rem;
}
.text-content-style ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.text-content-style ul li {
  margin-bottom: 0.5rem;
  color: #222222;
}

/* Header */
.text-primary {
  color: #007fca !important;
}

header.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  /* Floating Effect */
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1640px;
  border-radius: 20px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 1030;
}
header.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site-header .navbar-brand {
  margin-right: 2rem;
  display: flex;
  align-items: center;
  max-width: calc(100% - 100px);
}
header.site-header .navbar-brand .site-logo {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header.site-header .navbar-toggler {
  border: none;
}
header.site-header .navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid #007fca;
}
@media (max-width: 1399.98px) {
  header.site-header .navbar-collapse {
    padding: 0.5rem 0 1rem;
  }
}
header.site-header .navbar-nav {
  display: flex;
  width: 100%;
}
header.site-header .navbar-nav li {
  list-style: none;
}
header.site-header .navbar-nav li a {
  font-weight: 400;
  color: #222222;
  opacity: 0.7;
  padding: 0.75rem 1rem;
  display: block;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}
header.site-header .navbar-nav li.current-menu-item > a, header.site-header .navbar-nav li.current-menu-parent > a, header.site-header .navbar-nav li.current-menu-ancestor > a, header.site-header .navbar-nav li:hover > a {
  position: relative;
  font-weight: 700;
  opacity: 1;
}
header.site-header .navbar-nav li.current-menu-item > a::before, header.site-header .navbar-nav li.current-menu-parent > a::before, header.site-header .navbar-nav li.current-menu-ancestor > a::before, header.site-header .navbar-nav li:hover > a::before {
  content: "";
  background-color: #007fca;
  opacity: 0.3;
  width: 1.5rem;
  height: 0.2em;
  position: absolute;
  bottom: 0.4em;
  left: 1rem;
}
header.site-header .navbar-nav li .dropdown-item, header.site-header .navbar-nav li .dropdown-item.active, header.site-header .navbar-nav li .dropdown-item:active, header.site-header .navbar-nav li .dropdown-item:focus, header.site-header .navbar-nav li .dropdown-item:hover {
  background-color: transparent;
  color: #222222;
}
header.site-header .navbar-nav li .sub-menu,
header.site-header .navbar-nav li .dropdown-menu {
  list-style: none;
}
@media (max-width: 1399.98px) {
  header.site-header .navbar-nav li .sub-menu,
  header.site-header .navbar-nav li .dropdown-menu {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding-left: 0.75rem;
    margin-left: 0.5rem;
    border-left: 2px solid rgba(0, 0, 0, 0.06);
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  }
  header.site-header .navbar-nav li .sub-menu.show,
  header.site-header .navbar-nav li .dropdown-menu.show {
    max-height: 1000px;
    opacity: 1;
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 1399.98px) {
  header.site-header .navbar-nav > li > a {
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.85;
  }
  header.site-header .navbar-nav .sub-menu a,
  header.site-header .navbar-nav .dropdown-menu a {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
  }
}
@media (min-width: 1400px) {
  header.site-header .navbar-nav {
    margin-left: auto;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    width: auto;
  }
  header.site-header .navbar-nav li a {
    white-space: nowrap;
    padding: 0.5rem 1rem;
  }
}

/* Admin Bar Adjustments */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Footer */
footer.site-footer {
  background-color: #FFFFFF;
}
footer.site-footer .footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #222222;
  font-weight: 700;
  margin-bottom: 1rem;
}
footer.site-footer a {
  color: #222222;
}
footer.site-footer a:hover {
  color: #007fca;
}
footer.site-footer .post-footer a {
  color: #888888;
}

/* Floating CTA */
.floating-cta {
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1040;
}
.floating-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.floating-cta a {
  display: block;
  text-decoration: none;
}
.floating-cta .btn-primary {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.5rem;
  border-radius: 50%;
}

/* Global Container Width Override */
@media (min-width: 1700px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1640px;
  }
}
/* Main SCSS Entry Point */
/* =========================================
   Page Module Styles (Premium Design)
   ========================================= */
/* 1. Hero Section */
.module-hero-section {
  position: relative;
  background-color: #FFFFFF;
  padding: 6rem 0;
  /* Pseudo-element removed for clean design */
}
.module-hero-section .hero-content {
  position: relative;
  z-index: 1;
}
.module-hero-section .hero-content h1,
.module-hero-section .hero-content h2 {
  font-size: 3.15rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #007FCA;
  /* Precise Design Color */
}
@media (max-width: 992px) {
  .module-hero-section .hero-content h1,
  .module-hero-section .hero-content h2 {
    font-size: 2.5rem;
  }
}
.module-hero-section .hero-content p {
  font-size: 1.25rem;
  color: #222222;
  margin-bottom: 2rem;
}
.module-hero-section .hero-images-wrapper {
  position: relative;
  z-index: 1;
}
.module-hero-section .hero-images-wrapper img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.module-hero-section .hero-images-wrapper .hero-image-primary img {
  border-radius: 24px;
  /* No shadow */
}
.module-hero-section .hero-images-wrapper .hero-image-primary img:hover {
  transform: translateY(-5px);
}
.module-hero-section .hero-images-wrapper .hero-image-secondary img {
  border-radius: 16px;
  /* No shadow */
}

/* 2. Services Slider */
.module-services-slider {
  background-color: #FFFFFF;
  padding: 5rem 0;
}
.module-services-slider .text-content-style h2 {
  font-weight: 400;
  color: #007FCA;
  margin-bottom: 2rem;
}
.module-services-slider .slider-navigation .swiper-button-prev-custom,
.module-services-slider .slider-navigation .swiper-button-next-custom {
  transition: transform 0.3s ease;
}
.module-services-slider .slider-navigation .swiper-button-prev-custom:hover,
.module-services-slider .slider-navigation .swiper-button-next-custom:hover {
  transform: scale(1.1);
}
.module-services-slider .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.module-services-slider .card .icon-wrapper {
  /* Icon styling handled by img width/height */
}
.module-services-slider .card h4 {
  font-weight: 700;
}
.module-services-slider .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.module-services-slider .card .card-text {
  font-size: 1.25rem;
}

.hide-slider {
  position: relative;
}
.hide-slider::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  position: absolute;
  top: -10px;
  left: -98%;
  z-index: -1;
}

/* 3. Testimonials */
.module-testimonials {
  background-color: #FFFFFF;
  padding: 5rem 0;
}
.module-testimonials .swiper-slide {
  padding: 2rem 1rem;
}
.module-testimonials {
  /* Star Icons */
}
.module-testimonials .d-flex img {
  display: block;
  /* Ensure proper spacing */
}
.module-testimonials {
  /* Name */
}
.module-testimonials h5 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #222222;
}
.module-testimonials {
  /* Separator handled by utility classes in PHP, but ensure clean rendering */
}
.module-testimonials hr {
  margin: 1.5rem 0;
}
.module-testimonials .testimonial-content {
  font-family: "Montserrat", sans-serif;
  /* Clean Sans-Serif */
  font-size: 1rem;
  line-height: 1.6;
  color: #222222;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}
.module-testimonials .testimonial-content p {
  margin-bottom: 0;
}
.module-testimonials .swiper-pagination-bullet {
  background-color: #94A3B8;
  opacity: 0.5;
}
.module-testimonials .swiper-pagination-bullet-active {
  background-color: #007fca;
  opacity: 1;
  transform: scale(1.2);
}

/* 4. Text Media Collage */
.module-text-media-collage {
  padding: 6rem 0;
}
.module-text-media-collage .collage-content h2,
.module-text-media-collage .collage-content h3,
.module-text-media-collage .collage-content h4 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  /* Regular weight by default */
  line-height: 1.2;
  color: #007FCA;
  /* Precise Design Color */
}
.module-text-media-collage .collage-content {
  /* Ensure text didn't get double bolded if user bolded it in WYSIWYG */
}
.module-text-media-collage .collage-content strong {
  font-weight: 700;
}
.module-text-media-collage .collage-content p {
  font-size: 1.1rem;
  color: #222222;
  margin-bottom: 1.5rem;
}
.module-text-media-collage .collage-wrapper {
  /* Reset Image Styles */
}
.module-text-media-collage .collage-wrapper img {
  border-radius: 32px;
  /* Large rounded corners as per design */
  box-shadow: none !important;
  border: none !important;
  background-color: transparent;
  display: block;
  width: 100%;
  height: auto;
}
.module-text-media-collage .collage-wrapper.image-amount-1 img {
  width: 100%;
}
.module-text-media-collage .collage-wrapper.image-amount-3 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* Right side slightly wider for the tall image */
  grid-template-rows: auto auto;
  gap: 1.5rem;
  /* Item 1: Top Left (Small, Aligned Right to Gutter) */
}
.module-text-media-collage .collage-wrapper.image-amount-3 .collage-image-Item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  width: 70%;
  justify-self: end;
  align-self: end;
}
.module-text-media-collage .collage-wrapper.image-amount-3 {
  /* Item 2: Bottom Left (Wide) */
}
.module-text-media-collage .collage-wrapper.image-amount-3 .collage-image-Item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
}
.module-text-media-collage .collage-wrapper.image-amount-3 {
  /* Item 3: Right (Tall, Spans Row) */
}
.module-text-media-collage .collage-wrapper.image-amount-3 .collage-image-Item:nth-child(3) {
  grid-column: 2;
  grid-row: 1/span 2;
  height: 100%;
}
.module-text-media-collage .collage-wrapper.image-amount-3 .collage-image-Item:nth-child(3) img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 5. Audience Nav (Pills) */
.module-audience-nav .audience-card {
  padding-block: 7rem 6rem;
  padding-inline: 1em;
}
@media (max-width: 992px) {
  .module-audience-nav .audience-card {
    padding-block: 3rem 3rem;
  }
}
.module-audience-nav .audience-item {
  padding: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
}
.module-audience-nav .audience-item .icon-wrapper {
  background-color: rgba(0, 127, 202, 0.05);
  color: #007fca;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 127, 202, 0.1);
}
.module-audience-nav .audience-item h5 {
  font-size: 1rem;
  margin-top: 1rem;
  transition: color 0.3s;
}
.module-audience-nav .audience-item:hover {
  transform: translateY(-5px);
}
.module-audience-nav .audience-item:hover .icon-wrapper {
  background-color: #007fca !important;
  color: #FFFFFF !important;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}
.module-audience-nav .audience-item:hover h5 {
  color: #007fca;
}
.module-audience-nav {
  /* Blue background shape behind cards.
     xl+: full-bleed to the right (slider lives in col-xl-8).
     Below xl: layout stacks, so contain it inside the column. */
}
.module-audience-nav .audience-bg-shape {
  height: 36%;
  z-index: 0;
  transform: scaleY(1.2);
  width: 100%;
  background-color: #CCE5F5 !important;
}
@media (min-width: 1200px) {
  .module-audience-nav .audience-bg-shape {
    width: 100vw;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
.module-audience-nav .bg-light {
  background-color: #CCE5F5 !important;
}
@media (min-width: 1200px) {
  .module-audience-nav .audience-swiper {
    margin-left: 5rem;
  }
}
.module-audience-nav {
  /* The white mask on .hide-slider only makes sense in the side-by-side
     xl layout; below that the column is full-width above the slider. */
}
@media (max-width: 1199.98px) {
  .module-audience-nav .hide-slider::before {
    display: none;
  }
  .module-audience-nav .audience-navigation {
    justify-content: flex-start !important;
  }
}

/* 6. Image Link List */
.module-image-link-list {
  padding: 5rem 0;
}
.module-image-link-list .custom-hover-card {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.module-image-link-list .custom-hover-card:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 127, 202, 0.2);
}
.module-image-link-list .custom-hover-card:hover .text-primary {
  opacity: 1 !important;
  transform: translateX(5px);
  transition: all 0.2s;
}
.module-image-link-list h2,
.module-image-link-list h3,
.module-image-link-list h4,
.module-image-link-list h5 {
  font-size: 35px;
}
.module-image-link-list .image-container {
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .module-image-link-list .image-container {
    padding-bottom: 50px;
  }
}

/* 7. Appointment Banner */
.module-appointment-banner {
  /* Card Transition Effect */
}
.module-appointment-banner .hover-scale-sm {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.module-appointment-banner .hover-scale-sm:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.module-appointment-banner .hover-scale-sm:hover .icon-wrapper img {
  transform: rotate(45deg) translate(2px, -2px);
}
.module-appointment-banner .icon-wrapper img {
  transition: transform 0.3s ease;
}
.module-appointment-banner .text-background {
  width: 200%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
}

/* 8. Contact Section & Forms */
.module-contact-section {
  padding: 6rem 0;
}
.module-contact-section .contact-info {
  background: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* 9. FAQ Accordion */
.module-faq-accordion {
  /* Headline Style override if needed */
}
.module-faq-accordion h2 {
  color: #007fca;
}
.module-faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: transparent;
  margin-bottom: 0;
}
.module-faq-accordion .accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  /* Keep border on last item if in design */
}
.module-faq-accordion .accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  padding: 1.5rem 0 !important;
  /* Vertical padding, no horizontal padding to align with text */
  /* Hide Default Bootstrap Icon */
}
.module-faq-accordion .accordion-button::after {
  display: none !important;
}
.module-faq-accordion .accordion-button {
  /* Hover State */
}
.module-faq-accordion .accordion-button:hover .icon-circle {
  background-color: rgba(0, 127, 202, 0.05);
  border-color: #007fca !important;
}
.module-faq-accordion .accordion-button {
  /* Active State (Expanded) */
}
.module-faq-accordion .accordion-button:not(.collapsed) {
  color: #007fca;
  /* Rotate Icon on Open */
}
.module-faq-accordion .accordion-button:not(.collapsed) .accordion-icon-img {
  transform: rotate(90deg) !important;
}
.module-faq-accordion .accordion-button .accordion-icon-img {
  transition: transform 0.3s ease;
}
.module-faq-accordion .accordion-body {
  padding: 0 0 1.5rem 0;
  /* Align with text, bottom padding */
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
  /* Limit width for readability */
}

/* Main SCSS Entry Point */
/* =========================================
   Forminator Overrides (Clean Design)
   ========================================= */
.forminator-ui .forminator-field-consent .forminator-label {
  display: none !important;
}
.forminator-ui .forminator-input,
.forminator-ui .forminator-input input,
.forminator-ui .forminator-iti-input .iti__selected-dial-code {
  font-size: 20px !important;
  color: #888888 !important;
}
.forminator-ui .forminator-checkbox,
.forminator-ui .forminator-checkbox__label,
.forminator-ui .forminator-checkbox__label p {
  color: #888888 !important;
}
.forminator-ui .forminator-checkbox span[aria-hidden]:not(.forminator-checkbox-image) {
  border-color: #888888 !important;
}
.forminator-ui .forminator-consent .forminator-checkbox-box {
  background-color: transparent !important;
}
.forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row-inside:not(:last-child), .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row:not(:last-child) {
  margin-bottom: 10px !important;
}

/* Main SCSS Entry Point */
/* Footer Styles */
.site-footer {
  background-color: #FFFFFF !important;
  font-size: 0.9rem;
  color: #666;
}
.site-footer a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer a:hover {
  color: #007fca;
}
.site-footer {
  /* Top Row: Logo & Contact */
}
.site-footer .footer-top {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.site-footer .footer-top .footer-logo img {
  max-height: 45px;
  width: auto;
}
.site-footer .footer-top .footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .site-footer .footer-top .footer-contact-list {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 1rem;
  }
}
.site-footer .footer-top .footer-contact-list li {
  display: inline-block;
}
.site-footer .footer-top .footer-contact-list li.contact-name {
  font-weight: 500;
  color: #222222;
}
.site-footer {
  /* Separator */
}
.site-footer hr {
  margin: 0;
  border-color: rgba(0, 0, 0, 0.1);
  opacity: 1;
}
.site-footer {
  /* Bottom Row: Copyright & Menu */
}
.site-footer .footer-bottom {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.site-footer .footer-bottom .footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom .footer-menu ul {
    justify-content: center;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-bottom {
    text-align: center;
  }
}

/* Floating CTA */
.floating-cta-link {
  transition: transform 0.3s ease;
  width: 130px;
  aspect-ratio: 1;
}
.floating-cta-link:hover {
  transform: scale(1.05);
}
.floating-cta-link .rotating-text-wrapper {
  transform-origin: center center;
}
.floating-cta-link .text-dark {
  fill: #222222;
}
@media (max-width: 768px) {
  .floating-cta-link {
    width: 100px;
  }
}/*# sourceMappingURL=main.css.map */