/*
Theme Name: Amico Professional
Description: Custom lightweight WordPress theme for Amico Corp (no frameworks).
Author: Amico Development Team
Version: 0.1.0
Text Domain: amico-professional
*/

/* Load Gotham family weights/styles available in theme directory */
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-XLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-XLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-Ultra.otf') format('opentype');
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('gotham font/Gotham-UltraItalic.otf') format('opentype');
  font-weight: 950;
  font-style: italic;
  font-display: swap;
}

/* Explicit family name for 'Gotham Book' when used directly */
@font-face {
  font-family: 'Gotham Book';
  src: url('gotham font/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Book';
  src: url('gotham font/Gotham-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --amico-container-max: 1440px;
  --amico-gutter: 20px;
  --amico-header-height: 80px;
  --amico-color-text: #3b3b3b;
  --amico-color-border: #eeeeee;
  --amico-color-bg: #ffffff;
  --amico-mobile-breakpoint: 1024px;
  /* Mobile drawer gradient (adjust if needed) */
  --amico-grad-start: #1A7B9B;
  --amico-grad-end: #1A486A;
  /* Font family fallback for Gotham */
  --amico-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--amico-color-text);
  background: linear-gradient(184.6deg, #F6F8F9 29.3%, #FFFFFF 110.58%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Accessibility: skip link */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: absolute;
  z-index: 100000;
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  clip: auto;
  background: #000;
  color: #fff;
}

/* Layout helpers */
.amico-container {
  max-width: var(--amico-container-max);
  margin: 0 auto;
  padding: 0 var(--amico-gutter);
}

/* Page and content structure */
#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#content {
  flex: 1;
  width: 100%;
}

/* Footer styling - minimal to let Elementor control layout */
.site-footer,
#colophon {
  width: 100%;
  margin-top: auto;
}

.site-footer .site-info {
  text-align: center;
  color: #6c757d;
}

/* Force Elementor footer to behave exactly like on Elementor pages */
.elementor-location-footer,
.elementor-location-footer .elementor,
.elementor-location-footer .elementor-section-wrap,
.elementor-location-footer .elementor-section,
.elementor-location-footer .elementor-container,
.elementor-location-footer .e-con,
.elementor-location-footer .e-con-inner {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Override Bootstrap container constraints that might affect footer */
.elementor-location-footer .container,
.elementor-location-footer .container-fluid {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

/* Ensure boxed containers in footer don't get constrained */
.elementor-location-footer .e-con-boxed>.e-con-inner {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

/* Bootstrap-compatible grid system - exclude footer */
.container:not(.elementor-location-footer .container) {
  max-width: var(--amico-container-max);
  margin: 0 auto;
  padding: 0 var(--amico-gutter);
  width: 100%;
}

/* Completely remove theme container constraints from footer */
.elementor-location-footer .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* Extra small devices (portrait phones, less than 576px) */
.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Gap utilities */
.g-1 {
  --bs-gutter-x: 0.25rem;
  --bs-gutter-y: 0.25rem;
}

.g-2 {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.row.g-1>* {
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.row.g-2>* {
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.row.g-3>* {
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.row.g-4>* {
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.row.g-5>* {
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

/* Essential Bootstrap utilities */
.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

/* Auto-width columns */
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}

/* Margin utilities */
.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 576px) {
  .ms-sm-auto {
    margin-left: auto !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 768px) {
  .ms-md-auto {
    margin-left: auto !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 992px) {
  .ms-lg-auto {
    margin-left: auto !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 1200px) {
  .ms-xl-auto {
    margin-left: auto !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.position-fixed {
  position: fixed !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

/* Spacing utilities */
.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Card component - scoped to avoid conflicts with plugins */
.amico-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: 0;
}

.amico-card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.amico-card-title {
  margin-bottom: 0.5rem;
}

.amico-card-text:last-child {
  margin-bottom: 0;
}

.amico-card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* Border utilities */
.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-gray {
  border-color: #6c757d !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

/* Shadow utilities */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Embed responsive */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
}

.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/* Button utilities - scoped to avoid conflicts */
.amico-btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-decoration: none;
}

.amico-btn:hover {
  color: #212529;
  text-decoration: none;
}

/* Horizontal rules */
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

/* Modal components */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.show {
  display: block;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.show {
  opacity: 0.5;
}

/* Lists */
ul {
  list-style: disc;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

/* Typography improvements */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Flex utilities */
.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

/* Cursor utilities */
.cursor-pointer {
  cursor: pointer !important;
}

/* Theme-specific event page styles */
.addbtn-leess {
  /* Override Bootstrap's d-inline-block utility */
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: #007691;
  text-decoration: none;
  font-weight: 500;
  line-height: 24px;
}

/* Ensure the chevron icon and text sit on the same baseline */
.addbtn-leess img {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.addbtn-leess:hover {
  color: #005a73;
  text-decoration: none;
}

/* Remove horizontal padding from col-lg-3 */
.col-lg-3 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Force remove border radius from event images with highest specificity */
.container .event-banner-set .event-img-section.img-fluid.w-100 {
  border-radius: 0 !important;
  object-fit: cover;
}

.event-img-section {
  border-radius: 0px;
  object-fit: cover;
}

/* Force remove border radius from all card and gallery images */
.card img,
.card-img-top,
.upcoming-envent-crd img,
.event-gallery-img,
.gallery-item img,
.card .card-img-top,
.card,
.amico-card,
.upcoming-envent-crd,
.gallery-item,
.gallery-item .card {
  border-radius: 0 !important;
}

.event-hero-section {
  padding-right: 2rem;
}

.upcoming-events-heading {
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 36px;
  color: #3b3b3b;
  margin-bottom: 1rem;
}

.event-speakers-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.card-p-zero {
  padding: 1rem !important;
}

.news-date-all {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.card-text-description-event {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
}

.format-set-sibebar-event {
  background: #f8f9fa;
  border: 1px solid #e9ecef !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Event sidebar improvements */
.format-set-sibebar-event p {
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.format-set-sibebar-event span {
  font-weight: 600;
  color: #495057;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.25rem;
}

.format-set-sibebar-event p:last-of-type {
  margin-bottom: 1.5rem;
}

/* Join Event button styling */
.format-set-sibebar-event .btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0.25px;
  transition: all 0.3s ease;
}

/* Ensure proper alignment with cover image */
@media (min-width: 992px) {
  .event-hero-section {
    padding-right: 1rem;
  }

  /* Ensure sidebar columns have proper padding */
  .col-lg-4 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Fix sidebar alignment when using col-lg-auto ms-lg-auto to respect container padding */
  .col-lg-auto.ms-lg-auto {
    margin-right: 15px !important;
    /* Account for row's negative margin to maintain container's 20px padding */
  }

}

/* Mobile responsive improvements */
@media (max-width: 991.98px) {
  .event-hero-section {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .format-set-sibebar-event {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  /* Stack sidebar below content on mobile */
  .col-lg-4 {
    margin-top: 1rem;
  }


  /* Reset margin-right on mobile since col-lg-auto doesn't apply */
  .col-lg-auto.ms-lg-auto {
    margin-right: 0 !important;
  }
}

.format-set-sibebar-event p span {
  font-weight: 600;
  color: #212529;
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

.format-set-sibebar-event .btn {
  border-radius: 0 !important;
}

.event-back-button {
  margin-bottom: 1rem;
}

.event-banner-set {
  border-radius: 0;
  overflow: hidden;
}

.event-speakers-img {
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

.upcoming-envent-crd {
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.upcoming-envent-crd:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-title {
  /* font-size: 18px !important; */
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .event-hero-section {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .upcoming-events-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .timeline-heading-event {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 767.98px) {
  .upcoming-events-heading {
    font-size: 22px;
    line-height: 28px;
  }

  .timeline-heading-event {
    font-size: 22px;
    line-height: 28px;
  }
}

/* Missing CSS classes from single-event.php */

/* Specialty hover animation styles - Elegant & Luxurious */
.container-hover {
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.container-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 123, 155, 0.05) 0%, rgba(26, 72, 106, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.vertical-specialty-texts-container {
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1.5rem;
}

.visible-heading {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 0;
  overflow: hidden;
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.6;
  color: rgba(59, 59, 59, 0.85);
  margin-top: 0.5rem;
}

/* Hover effects - Luxurious animations */
.container-hover:hover::before {
  opacity: 1;
}

.container-hover:hover .reveal-text {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 120px;
  transition-delay: 0.1s;
}

.container-hover:hover .visible-heading {
  transform: translateY(-8px);
  color: #1A7B9B;
  text-shadow: 0 2px 8px rgba(26, 123, 155, 0.15);
}

.container-hover:hover .vertical-specialty-texts-container {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26, 123, 155, 0.12);
}

/* Ensure text is visible on mobile/tablet where hover doesn't work */
@media (max-width: 768px) {
  .reveal-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
    max-height: none !important;
  }
}

/* Partner logos center alignment override */
.elementor-element-2ec97830 img,
.elementor-element-2ec97830 .elementor-widget-container img,
.elementor-element-2ec97830 .elementor-image img {
  margin: 0 auto !important;
  display: block !important;
}

.elementor-element-2ec97830 .elementor-widget-container,
.elementor-element-2ec97830 .elementor-image {
  text-align: center !important;
}

.elementor-element-2ec97830 .elementor-widget {
  text-align: center !important;
}

/* Specific image centering for SVG components */
.elementor-widget-container img[src*=".svg"],
.elementor-widget-container img[alt=""] {
  margin: 0 auto !important;
  display: block !important;
}

.elementor-widget-image .elementor-widget-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Swiper.js components */
.swiper {
  width: 100%;
  height: 100%;
}

.mySwiper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

/* Make image carousel slides transparent */
.elementor-widget-image-carousel .swiper-slide {
  background: transparent !important;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007aff;
}

.swiper-button-next {
  right: 10px;
  left: auto;
}

.swiper-button-prev {
  left: 10px;
  right: auto;
}

/* Global override: Swiper pagination bullets (website-wide)
   - Inactive: small filled disc with soft teal + white overlay
   - Active: white inner dot with thin white outer ring (as per Figma)
   - Equal sizes for both states; inner circle is identical size in both
   - Mobile: 12x12  |  Desktop: 20x20
*/
.swiper-pagination-bullet {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  opacity: 1 !important; /* override Swiper default opacity */
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Inactive bullet (inner circle same size as active inner) */
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.5' cy='6' r='4' fill='%23BACECD'/%3E%3Ccircle cx='4.5' cy='6' r='4' fill='white' fill-opacity='0.7'/%3E%3C/svg%3E") no-repeat center/contain !important;
}

/* Active bullet (same outer box size; inner r=3.6 to match inactive) */
.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active-main,
.swiper-pagination-bullet-active-next,
.swiper-pagination-bullet-active-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='6' r='3.6' fill='white'/%3E%3Ccircle cx='6' cy='6' r='5.7' fill='none' stroke='white' stroke-width='0.6'/%3E%3C/svg%3E") !important;
}

/* Desktop sizing */
@media (min-width: 1025px) {
  .swiper-pagination-bullet,
  .swiper-pagination-bullet-active,
  .swiper-pagination-bullet-active-main,
  .swiper-pagination-bullet-active-next,
  .swiper-pagination-bullet-active-prev {
    width: 20px !important;
    height: 20px !important;
  }
}

/* Dark backgrounds often used under carousels: keep bullets visible */
.elementor-widget-image-carousel .swiper-pagination-bullet,
.elementor-widget-slides .swiper-pagination-bullet {
  mix-blend-mode: normal;
}

/* Modal components */
.modal-content-custom {
  position: relative;
  background-color: #fff;
  /* default for generic modals */
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 0.3rem;
  outline: 0;
  max-height: 90vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

/* Swiper text content */
.text {
  padding: 1rem;
  text-align: left;
}

/* Speakers & Hosts modal (cardModal) — full-bleed image with dark overlay and text over image */
#cardModal {
  background: rgba(0, 0, 0, 0.9);
}

#cardModal .modal-content-custom {
  background: transparent;
  border: 0;
  border-radius: 0;
  max-height: none;
  overflow: visible;
  box-shadow: none;
}

#cardModal .swiper.mySwiper {
  width: 100%;
  padding: 20px 10px;
  background: transparent !important;
}

#cardModal .swiper-slide {
  width: clamp(280px, 32vw, 420px);
  background: transparent !important;
}

#cardModal .card {
  position: relative;
  height: 80vh;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: transparent !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

#cardModal .card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  z-index: 0;
}

#cardModal .card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

#cardModal .card .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  color: #fff;
  text-align: center;
  z-index: 2;
  background: transparent !important;
}

#cardModal .card .text small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

#cardModal .swiper {
  overflow: visible;
}

#cardModal .swiper-button-next,
#cardModal .swiper-button-prev {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 1060;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

#cardModal .swiper-button-next {
  right: 24px;
  left: auto;
}

#cardModal .swiper-button-prev {
  left: 24px;
  right: auto;
}

#cardModal .swiper-button-next i,
#cardModal .swiper-button-prev i {
  color: #fff;
  font-size: 20px;
}

#cardModal .close {
  position: fixed !important;
  top: 24px !important;
  right: 32px !important;
  z-index: 1100 !important;
  color: #fff !important;
  text-shadow: none !important;
  font-size: 32px !important;
  line-height: 1 !important;
  background: transparent !important;
  border: none !important;
  padding: 8px !important;
  cursor: pointer !important;
  opacity: 0.9;
}

#cardModal .close:hover,
#cardModal .close:focus {
  opacity: 1 !important;
}

/* Event hero inner section */
.event-hero-inner {
  margin: 2rem 0;
}

.event-hero-inner h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.event-hero-inner ul {
  padding-left: 1.5rem;
}

.event-hero-inner li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Card swipe wrapper */
.card-swipe {
  position: relative;
  margin: 2rem 0;
}

/* Over-written overlay */
.over-written {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

/* Timeline components (ensure these are properly defined) */
.timeline {
  position: relative;
  padding-left: 0;
  margin-left: 0;
  background: none;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: 40px;
}

.timeline-time {
  width: 99px;
  min-width: 99px;
  max-width: 99px;
  flex: 0 0 99px;
  padding-right: 10px;
  text-align: right;
  font-weight: 400;
  font-family: 'Gotham Book', Arial, sans-serif;
  font-size: 18px;
  color: #666;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  flex: 0 0 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.timeline-circle {
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: 3px solid #BACECD;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  position: relative;
}

.timeline-content {
  flex: 1 1 auto;
  padding-left: 16px;
  min-width: 0;
}

.timeline-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Gallery item animations */
.gallery-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.event-gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHZpZXdCb3g9IjAgMCA0OCA0OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjQgNS4yNUMyMC4yOTE2IDUuMjUgMTYuNjY2NSA2LjM0OTY3IDEzLjU4MzEgOC40MDk5NEMxMC40OTk2IDEwLjQ3MDIgOC4wOTY0MSAxMy4zOTg2IDYuNjc3MjcgMTYuODI0N0M1LjI1ODEyIDIwLjI1MDggNC44ODY4MSAyNC4wMjA4IDUuNjEwMjggMjcuNjU3OUM2LjMzMzc2IDMxLjI5NTEgOC4xMTk1MiAzNC42MzYgMTAuNzQxOCAzNy4yNTgzQzEzLjM2NCAzOS44ODA1IDE2LjcwNDkgNDEuNjY2MiAyMC4zNDIxIDQyLjM4OTdDMjMuOTc5MiA0My4xMTMyIDI3Ljc0OTIgNDIuNzQxOS AzMS4xNzUzIDQxLjMyMjdDMzQuNjAxNCAzOS45MDM2IDM3LjUyOTggMzcuNTAwNCAzOS41OTAxIDM0LjQxNjlDNDEuNjUwMy AzMS4zMzM1IDQyLjc1IDI3LjcwODQgNDIuNzUgMjRDNDIuNzQ0NSAxOS4wMjg5IDQwLjc2NzQgMTQuMjYyOSAzNy4yNTIyIDEwLjc0NzhDMzMuNzM3MSA3LjIzMjY1IDI4Ljk3MTEgNS4yNTU0NiAyNCA1LjI1Wk0yNCA0MS4yNUMyMC41ODgzIDQxLjI1IDE3LjI1MzIgNDAuMjM4MyAxNC40MTY0IDM4LjM0MjhDMTEuNTc5NyAzNi40NDc0IDkuMzY4NyAzMy43NTMzIDguMDYzMDkgMzAuNjAxM0M2Ljc1NzQ3IDI3LjQ0OTMgNi40MTU4NyAyMy45ODA5IDcuMDgxNDYgMjAuNjM0N0M3Ljc0NzA2IDE3LjI4ODUgOS4zODk5NiAxNC4yMTQ5IDExLjgwMjQgMTEuODAyNEMxNC4yMTQ5IDkuMzg5OTUgMTcuMjg4NSA3Ljc0NzA1IDIwLjYzNDcgNy4wODE0NUMyMy45ODA5IDYuNDE1ODYgMjcuNDQ5MyA2Ljc1NzQ3IDMwLjYwMTMgOC4wNjMwOEMzMy43NTMzIDkuMzY4NjkgMzYuNDQ3NCAxMS41Nzk3 IDM4LjM0MjkgMTQuNDE2NEM0MC4yMzgzIDE3LjI1MzIgNDEuMjUgMjAuNTg4MyA0MS4yNS AyNEM0MS4yNDUgMjguNTczNSAzOS40MjYgMzIuOTU4MiAzNi4xOTIxIDM2LjE5MjFDMzIuOTU4MiAzOS40MjYgMjguNTczNSA0MS4yNDUgMjQgNDEuMjVaTTMyLjY0NzUgMjMuMzY0NEwyMC42NDc1IDE1Ljg2NDRDMjAuNTM0IDE1Ljc5MzQgMjAuNDAzNiAxNS43NTQyIDIwLjI2OTggMTUuNzUwNkMyMC4xMzYgMTUuNzQ3MSAyMC4wMDM3IDE1Ljc3OTQgMTkuODg2Ni AxNS44NDQzQzE5Ljc2OTUgMTUuOTA5MiAxOS42NzE5IDE2LjAwNDIgMTkuNjAzOSAxNi4xMTk1QzE5LjUzNi AxNi4yMzQ4IDE5LjUwMDEgMTYuMzY2MiAxOS41IDE2LjVWMzEuNUMxOS40OTk5IDMxLjYzMzkgMTkuNTM1NyAzMS43NjU0IDE5LjYwMzcgMzEuODgwOEMxOS42NzE2IDMxLjk5NjIgMTkuNzY5MiAzMi4wOTEzIDE5Ljg4NjMgMzIuMTU2MkMxOS45OTc4 IDMyLjIxNzQgMjAuMTIyOCAzMi4yNDk2IDIwLjI1IDMyLjI1QzIwLjM5MDYgMzIuMjQ5OSAyMC41MjgzIDMyLjIxMDMgMjAuNjQ3NSAzMi4xMzU2TDMyLjY0NzUgMjQuNjM1NkMzMi43NTUyIDI0LjU2ODIgMzIuODQ0IDI0LjQ3NDQgMzIuOTA1Ni AyNC4zNjMzQzMyLjk2NzEgMjQuMjUyMS AzMi45OTk0IDI0LjEyNzEgMzIuOTk5NCAyNEMzMi45OTk0 IDIzLjg3MjkgMzIuOTY3MSAyMy43NDc5IDMyLjkwNTYgMjMuNjM2N0MzMi44NDQgMjMuNTI1NS AzMi43NTUyIDIzLjQzMTggMzIuNjQ3NS AyMy4zNjQ0Wk0yMSAzMC4xNDYyVjE3Ljg1MzhMMzAuODM0NCAyNEwyMSAzMC4xNDYyWiIgZmlsbD0id2hpdGUiLz48L3N2Zz4=') center/contain no-repeat;
  z-index: 2;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.video-play-overlay::after {
  content: '';
}

/* More Events section styles */
.amico-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4px 0px 32px 0px;
  gap: 16px;
  margin: 0;
}

.amico-section-line {
  width: 205.55px;
  height: 1px;
  border: 1px solid #007691;
  background-color: #007691;
  margin: 0;
}

.amico-news-events-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 80px;
  /* desktop default */
}

.news-events-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

@media (max-width: 1400px) {
  .amico-news-events-wrapper .news-events-grid-container {
    grid-template-columns: 1fr !important;
  }
}

.news-event-item {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

/* Card styles are provided by plugin CSS (news-events-style.css). Theme intentionally avoids overrides here. */

/* Responsive adjustments for More Events */
@media (max-width: 991.98px) {
  .amico-section-title {
    padding: 4px 0px 24px 0px;
  }

  .amico-news-events-wrapper {
    margin-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  .amico-section-title {
    padding: 4px 0px 20px 0px;
  }

  .amico-section-line {
    width: 150px;
  }

  .amico-news-events-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .news-events-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: calc(100vw - 30px);
  }

  .event-card,
  .news-card {
    width: 100%;
    max-width: 100%;
  }

  .event-cover-section {
    height: 200px;
  }

  .event-title {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 400px) {
  .news-events-grid-container {
    max-width: calc(100vw - 20px);
  }

  .event-card,
  .news-card {
    min-height: 400px;
  }

  .event-title {
    font-size: 16px;
    line-height: 22px;
  }

  .event-subtitle-text,
  .event-description {
    font-size: 13px;
    line-height: 20px;
  }

  .event-date-badge {
    transform: scale(0.9);
    transform-origin: top right;
  }
}

/* Gallery Modal Classes */
.amico-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
}

.amico-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.amico-media-count {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Gotham', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 1001;
}

.amico-gallery-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 20px;
  box-sizing: border-box;
}

.amico-main-media {
  flex: 1;
  width: 100%;
  max-width: 90vw;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.amico-media-wrapper img,
.amico-media-wrapper video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.amico-thumbnails-container {
  width: 100%;
  max-width: 90vw;
  height: 100px;
  overflow: hidden;
}

.amico-thumbnails {
  display: flex;
  gap: 10px;
  height: 100%;
  overflow-x: auto;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
}

.amico-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.amico-thumbnails img:hover,
.amico-thumbnails img.active {
  opacity: 1;
  transform: scale(1.1);
  border: 2px solid #007691;
}

.amico-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
}

.amico-nav-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.amico-nav-prev {
  left: 20px;
}

.amico-nav-next {
  right: 20px;
}

.amico-nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.amico-nav-arrow:disabled:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1);
}

/* Header */
.amico-header {
  background: #fff;
  border-bottom: none;
  position: relative;
  z-index: 1000;
}

.amico-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--amico-header-height);
}

.amico-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 130px;
}

.amico-brand .site-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.amico-brand img {
  height: 24px;
  width: auto;
}

/* Desktop navigation */
.amico-nav {
  display: block;
}

.amico-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.amico-menu>li {
  position: relative;
  height: var(--amico-header-height);
  display: flex;
  align-items: center;
}

.amico-menu>li>a {
  display: inline-flex;
  align-items: center;
  padding: 8px 0 8px 0;
  /* bottom space reserves area for underline inside header */
  /* Header typography */
  font-family: Gotham, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  /* Figma: Book */
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  position: relative;
  /* for underline & chevron */
}

/* Underline animation (hover/active) */
.amico-menu>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* underline sits within reserved 8px bottom padding */
  height: 1px;
  /* thin line as per reference */
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

.amico-menu>li:hover>a::after,
.amico-menu>li:focus-within>a::after,
.amico-menu>li.current-menu-item>a::after,
.amico-menu>li.current-menu-ancestor>a::after {
  transform: scaleX(1);
}

/* Chevron for items with submenu (desktop) */
.amico-menu>li.menu-item-has-children>a {
  padding-right: 24px;
  /* 8px chevron + 16px gap for better spacing */
  pointer-events: none;
  /* Make parent menu items non-clickable */
  cursor: default;
}

.amico-menu>li.menu-item-has-children>a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  /* compact chevron */
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  /* Center perfectly and rotate around center point */
  transform: translate(-50%, -50%) rotate(45deg);
  /* chevron down - better cross-browser centering */
  transform-origin: center;
  margin-top: -2px;
  margin-left: -2px;
  transition: transform .2s ease;
  will-change: transform;
}

.amico-menu>li.menu-item-has-children:hover>a::before,
.amico-menu>li.menu-item-has-children:focus-within>a::before {
  transform: translate(-50%, -50%) rotate(225deg);
  /* chevron up, rotates in place */
  margin-top: 0px;
  margin-left: 0px;
}

/* Dropdowns on desktop */
.amico-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 8px 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
  z-index: 1100;
  
  /* Luxury animation properties */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-property: opacity, visibility, transform, box-shadow;
  
  /* Enhanced shadow for luxury feel */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.amico-menu li:hover>.sub-menu,
.amico-menu li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amico-menu .sub-menu li {
  list-style: none;
}

.amico-menu .sub-menu a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px 8px 16px;
  white-space: nowrap;
  /* Submenu typography */
  font-family: Gotham, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  /* Figma: Book */
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  /* for underline */
}

/* Submenu underline animation */
.amico-menu .sub-menu a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  /* align with horizontal padding */
  bottom: 0;
  /* draw within the padded area */
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

.amico-menu .sub-menu li:hover>a::after,
.amico-menu .sub-menu li:focus-within>a::after,
.amico-menu .sub-menu li.current-menu-item>a::after,
.amico-menu .sub-menu li.current-menu-ancestor>a::after {
  transform: scaleX(1);
}

/* Right-side tools */
.amico-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.amico-search-btn {
  background: transparent;
  border: 0;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  color: inherit;
}

.amico-search-btn svg {
  width: 24px;
  height: 24px;
}

/* Burger (mobile only) */
.amico-burger {
  background: transparent;
  border: 0;
  padding: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--amico-color-text);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.amico-burger svg {
  width: 24px;
  height: 24px;
}

/* Mobile drawer */
.amico-drawer {
  position: fixed;
  inset: 0;
  transform: translateX(100%);
  transition: transform .3s ease, opacity .3s ease;
  background: linear-gradient(90deg, var(--amico-grad-start) 0%, var(--amico-grad-end) 100%);
  color: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}

.amico-drawer.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.amico-drawer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--amico-header-height);
  position: relative;
}

.amico-drawer-close {
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0;
}

.amico-drawer-close svg {
  width: 100%;
  height: 100%;
}

.amico-drawer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.amico-drawer-logo img {
  height: 24px;
  width: auto;
}

.amico-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Menu item entrance animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide menu items and logo by default */
.amico-mobile-menu>li {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.amico-drawer-logo {
  opacity: 0;
  transform: scale(0.9);
}

/* Fallback: Ensure menu items are visible when drawer is open, even if animations fail */
.amico-drawer.open .amico-mobile-menu>li {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.amico-drawer.open .amico-drawer-logo {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Respect reduced motion preferences - show items immediately without animation */
@media (prefers-reduced-motion: reduce) {
  .amico-mobile-menu>li,
  .amico-drawer-logo {
    transition: none;
  }
  
  .amico-drawer.open .amico-mobile-menu>li,
  .amico-drawer.open .amico-drawer-logo {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Animate menu items when drawer opens */
.amico-drawer.open .amico-mobile-menu>li {
  animation: slideInUp 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* Animate logo when drawer opens */
.amico-drawer.open .amico-drawer-logo {
  animation: fadeInScale 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

/* Staggered delays for menu items */
.amico-drawer.open .amico-mobile-menu>li:nth-child(1) {
  animation-delay: 0.2s;
}

.amico-drawer.open .amico-mobile-menu>li:nth-child(2) {
  animation-delay: 0.3s;
}

.amico-drawer.open .amico-mobile-menu>li:nth-child(3) {
  animation-delay: 0.4s;
}

.amico-drawer.open .amico-mobile-menu>li:nth-child(4) {
  animation-delay: 0.5s;
}

.amico-drawer.open .amico-mobile-menu>li:nth-child(5) {
  animation-delay: 0.6s;
}

.amico-drawer.open .amico-mobile-menu>li:nth-child(6) {
  animation-delay: 0.7s;
}

/* Submenu animations - Mobile */
.amico-mobile-menu li.open .sub-menu {
  animation: slideInSubmenu 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInSubmenu {
  0% {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* Top-level menu items */
.amico-mobile-menu>li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  cursor: pointer;
}

/* Make entire parent menu item tappable */
.amico-mobile-menu>li.menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.amico-mobile-menu>li>a {
  display: flex;
  padding: 0;
  color: #fff;
  font-family: 'Gotham Book', Gotham, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
}

/* Parent items with children - make non-clickable */
.amico-mobile-menu>li.menu-item-has-children>a {
  pointer-events: none;
  cursor: default;
}

/* Submenu toggle button (injected by JS) - make it part of the layout */
.amico-mobile-menu .submenu-toggle {
  background: transparent;
  border: none;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  pointer-events: none;
  /* Let parent handle clicks */
}

.amico-mobile-menu .submenu-toggle svg {
  height: 100%;
  width: auto; /* preserve aspect ratio, fill height of 20px button */
  transition: transform 0.2s ease;
}

.amico-mobile-menu li.open .submenu-toggle svg {
  transform: rotate(180deg);
}

/* Submenu */
.amico-mobile-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 16px;
  display: none;
  width: 100%; /* ensure submenu takes full row under parent */
}

.amico-mobile-menu li.open .sub-menu {
  display: flex;
  margin: 12px 0 0 12px;
  flex-basis: 100%; /* force wrap to next line below the parent row */
}

.amico-mobile-menu .sub-menu li {
  padding: 0;
}

.amico-mobile-menu .sub-menu a {
  display: block;
  padding: 0;
  color: #fff;
  font-family: 'Gotham Book', Gotham, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-decoration: none;
}

.amico-mobile-menu .sub-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Overlay */
.amico-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1000;
}

.amico-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  /* Header container gutter: tighten to 16px to match design */
  .amico-header .amico-container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .amico-nav {
    display: none;
  }

  .amico-burger {
    display: inline-flex;
  }

  .amico-search-btn {
    display: inline-flex;
  }

  /* Mobile & tablet header layout: burger left, logo centered, search right */
  .amico-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* center the brand visually */
    min-height: var(--amico-header-height, 80px);
  }

  /* Create an absolute tools layer across the header to split left/right */
  .amico-tools {
    position: absolute;
    top: 0;
    left: 0; /* align with .amico-container padding (no double gutter) */
    right: 0; /* align with .amico-container padding (no double gutter) */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* burger to left, search to right */
    pointer-events: none; /* let inner buttons be clickable only */
    flex-direction: row-reverse; /* flip order: search right, burger left */
  }

  .amico-tools .amico-burger,
  .amico-tools .amico-search-btn {
    pointer-events: auto;
  }

  /* Ensure the brand stays centered even with absolute tools */
  .amico-brand {
    margin: 0 auto;
  }

  /* Optional: normalize icon touch targets */
  .amico-burger,
  .amico-search-btn {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: 0; /* remove excess side spacing */
  }

        .amico-search-btn {
          margin-right: 8px;
        }
    
        .amico-burger {
          margin-left: 8px;
        }


}

/* Sticky Sidebar Card - Matching Figma Design */
.sticky-sidebar-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
  width: 308px;
  height: 408px;
  background: #FDFDFD;
  border: 1px solid #E8E8E8;
  box-shadow: 66px 163px 106px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 20px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.sidebar-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 6px;
  width: 260px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.sidebar-field:nth-child(1) {
  height: 48px;
  order: 0;
}

.sidebar-field:nth-child(2) {
  height: 48px;
  order: 1;
}

.sidebar-field:nth-child(3) {
  height: 48px;
  order: 2;
}

.sidebar-field:nth-child(4) {
  height: 72px;
  order: 3;
}

.sidebar-label {
  width: auto;
  height: 18px;
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #18191A;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.sidebar-value {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 6px;
  width: 260px;
  height: 24px;
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #18191A;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.location-field {
  min-height: 24px;
  line-height: 24px;
  height: auto;
  align-items: flex-start;
}

.sidebar-cta-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 12px;
  width: 260px;
  height: 48px;
  background: #007691;
  border: none;
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: none;
  order: 4;
  align-self: stretch;
  flex-grow: 0;
}

.sidebar-cta-btn:hover {
  background: #005f7a;
}

/* Sidebar card tweaks (minimal overrides) */
.sticky-sidebar-card {
  width: auto;
  /* do not force fixed width */
  max-width: 308px;
  /* keep design cap */
  padding-right: 24px;
  /* restore right padding so content isn't cropped */
}

.amico-newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 335px;
  color: #fff;
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.amico-newsletter__field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid #fff;
  width: 100%;
}

.amico-newsletter__mail-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.amico-newsletter__field input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  outline: none;
  width: 100%;
}

.amico-newsletter__field input[type="email"]::placeholder {
  color: #fff;
  opacity: 1;
}

.amico-newsletter__submit {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.amico-newsletter__submit:hover {
  opacity: 0.8;
}

.amico-newsletter__acceptance {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.amico-newsletter__acceptance input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.amico-newsletter__checkbox-custom {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  flex-shrink: 0;
  margin-top: 0;
  border-radius: 0; /* square, per Figma */
  position: relative;
}

/* Ensure the acceptance text aligns vertically with the checkbox */
.amico-newsletter__acceptance-text {
  display: inline-flex;
  align-items: center;
  line-height: 24px;
}

.amico-newsletter__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L5 9L13 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  -webkit-background-size: 10px 8px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.amico-newsletter__acceptance input[type="checkbox"]:checked+.amico-newsletter__checkbox-custom::after {
  opacity: 1;
}

.amico-newsletter__acceptance a,
.amico-newsletter__acceptance a:link,
.amico-newsletter__acceptance a:visited {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.amico-newsletter__acceptance a:hover {
  opacity: 0.8;
}

/* Ensure proper spacing between the text and the link inside the acceptance line */
.amico-newsletter__acceptance-text a {
  display: inline;
  margin-left: 4px; /* space after 'I agree to the' */
  vertical-align: baseline; /* align with surrounding text */
}

/* Hide MC4WP default response messages if needed */
.mc4wp-response {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
}

/* Override Elementor's default button icon sizing */
.elementor-button-icon svg {
  width: 16px !important;
  height: 16px !important;
}

/* Prevent get-in-touch-email-elementor-editor-class from becoming bold when href is added */
#get-in-touch-email-elementor-editor-class,
#get-in-touch-email-elementor-editor-class a,
#get-in-touch-email-elementor-editor-class a:link,
#get-in-touch-email-elementor-editor-class a:visited,
#get-in-touch-email-elementor-editor-class a:hover,
#get-in-touch-email-elementor-editor-class a:focus,
#get-in-touch-email-elementor-editor-class a:active {
  font-weight: normal !important;
  font-weight: 400 !important;
  font-family: inherit;
}

/* Additional override for Elementor heading widgets with links */
#get-in-touch-email-elementor-editor-class.elementor-heading-title a,
#get-in-touch-email-elementor-editor-class .elementor-heading-title a,
.elementor-widget-heading #get-in-touch-email-elementor-editor-class a {
  font-weight: 400 !important;
}

/* Prevent hover color change for media library title */
.media-library-title:hover {
  color: inherit !important;
}

/* Override plugin hover effects for media library title */
.amico-case-studies-listing-widget .media-library-brochure-card:hover .media-library-title,
.amico-case-studies-listing-widget .media-library-video-card:hover .media-library-title {
  color: inherit !important;
  transform: none !important;
}