.elementor-2258 .elementor-element.elementor-element-9549e46{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:-20px;--margin-left:0px;--margin-right:0px;}.elementor-2258 .elementor-element.elementor-element-88dffec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2258 .elementor-element.elementor-element-ab05d6a{width:100%;max-width:100%;}.elementor-2258 .elementor-element.elementor-element-ab05d6a > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-25a8a16 *//* Scope everything under .amic-nav to avoid Elementor conflicts */
  .amic-nav, .amic-nav *,
  .amic-nav-dropdown, .amic-nav-dropdown *,
  .amic-nav-mobile, .amic-nav-mobile * { box-sizing: border-box; }
 
  .amic-nav {
    position: fixed;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: top 0.3s ease;
  }
 
  .amic-nav-inner {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border: 1px solid rgba(26, 26, 24, 0.06);
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 4px 16px rgba(26, 26, 24, 0.04);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
 
  .amic-nav.scrolled .amic-nav-inner {
    background: #FFFFFF;
    border-color: rgba(26, 26, 24, 0.1);
    box-shadow: 0 10px 30px rgba(26, 26, 24, 0.08);
  }
 
  /* Logo */
.amic-nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-right: 18px;
  flex-shrink: 0;
  line-height: 0;
}
.amic-nav-logo:hover { text-decoration: none; }
.amic-nav-logo-svg {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .amic-nav-logo-svg { height: 20px; }
  .amic-nav-logo { margin-right: 10px; }
}
  /* Links */
  .amic-nav-link {
    position: relative;
    padding: 9px 16px!important;
    font-size: 14px!important;
    font-weight: 400!important;
    color: #1A1A18;
    border-radius: 999px!important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    border: 0;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    box-shadow:none;
  }
  .amic-nav-link:hover { background: #F5F0E8; color: #1A1A18; text-decoration: none; }
  .amic-nav-link.is-active { background: #F5F0E8; }
 
  .amic-nav-chev {
    width: 10px;
    height: 10px;
    transition: transform 0.25s ease;
  }
  .amic-nav-link.is-open .amic-nav-chev { transform: rotate(180deg); }
 
  /* CTA */
  .amic-nav-cta {
    margin-left: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
    background: #1A1A18;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
  }
  .amic-nav-cta:hover { background: #2C2C2A; color: #FFFFFF; text-decoration: none; transform: translateY(-1px); }
  .amic-nav-cta-dot { width: 6px; height: 6px; border-radius: 50%; background: #FBBC04; }
 
  /* Dropdown */
  .amic-nav-dropdown {
    position: fixed;
    top: 112px;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    z-index: 9998;
    width: min(540px, calc(100vw - 32px));
    background: #FFFFFF;
    border: 1px solid rgba(26, 26, 24, 0.08);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 20px 50px rgba(26, 26, 24, 0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  }
  .amic-nav-dropdown.is-open {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
  }
 
  .amic-dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #1A1A18;
    transition: background 0.18s ease;
  }
  .amic-dd-item:hover { background: #F5F0E8; color: #1A1A18; text-decoration: none; }
  .amic-dd-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    line-height: 1;
  }
  .amic-dd-i-gbp { background: rgba(26, 115, 232, 0.12); }
  .amic-dd-i-web { background: rgba(255, 77, 28, 0.12); }
  .amic-dd-i-lsa { background: rgba(52, 168, 83, 0.12); }
  .amic-dd-i-seo { background: rgba(251, 188, 4, 0.18); }
  .amic-dd-i-nap { background: rgba(138, 135, 120, 0.18); }
  .amic-dd-i-apple { background: rgba(26, 26, 24, 0.08); }
 
  .amic-dd-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .amic-dd-title { font-size: 13.5px; font-weight: 500; color: #1A1A18; line-height: 1.2; }
  .amic-dd-sub { font-size: 11.5px; color: #8A8778; line-height: 1.2; }
 
  /* Hamburger (hidden on desktop) */
  .amic-nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    box-shadow: none!important;
    padding: 0!important;
    cursor: pointer;
    position: relative;
    margin-left: 4px;
    border-radius: 999px!important;
    transition: background 0.2s ease;
  }
  .amic-nav-burger:hover { background: #F5F0E8; }
  .amic-nav-burger span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 1.5px;
    background: #1A1A18;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease, top 0.3s ease;
  }
  .amic-nav-burger span:nth-child(1) { top: 14px; }
  .amic-nav-burger span:nth-child(2) { top: 19px; }
  .amic-nav-burger span:nth-child(3) { top: 24px; }
  .amic-nav-burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .amic-nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .amic-nav-burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
 
  /* Mobile overlay */
  .amic-nav-mobile {
    position: fixed;
    inset: 0;
    background: #F5F0E8;
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    padding: 90px 24px 40px;
    overflow-y: auto;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  }
  .amic-nav-mobile.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }
  .amic-mob-link {
    display: block;
    padding: 16px 4px;
    font-size: 22px;
    font-weight: 500;
    color: #1A1A18;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 26, 24, 0.1);
    letter-spacing: -0.01em;
  }
  .amic-mob-link:hover, .amic-mob-link:focus { color: #FF4D1C; text-decoration: none; }
  .amic-mob-section-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8A8778;
    margin: 28px 4px 4px;
    font-weight: 500;
  }
  .amic-mob-sub {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 4px;
    font-size: 15px;
    color: #1A1A18;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 26, 24, 0.08);
  }
  .amic-mob-sub:hover { color: #FF4D1C; text-decoration: none; }
  .amic-mob-sub .amic-dd-icon { width: 30px; height: 30px; font-size: 15px; border-radius: 8px; }
  .amic-mob-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding: 18px;
    background: #1A1A18;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    border-radius: 999px;
    text-decoration: none;
  }
  .amic-mob-cta:hover { color: #FFFFFF; text-decoration: none; }
 
 .amic-eyebrow-pin {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Gentle entrance cue */
  animation: amic-pin-drop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.pin-yellow{
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23FBBC04' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'/><circle cx='12' cy='9' r='2.5' fill='%23ffffff'/></svg>");
    /* Subtle lift so it feels like it's "dropped" onto the divider */
    filter: drop-shadow(0 2px 3px rgba(251, 188, 4, 0.5));
}

  /* Responsive */
  @media (max-width: 900px) {
    .amic-nav-inner { padding: 6px 6px 6px 16px; }
    .amic-nav-link, .amic-nav-cta { display: none; }
    .amic-nav-burger { display: inline-block; }
    .amic-nav-dropdown { display: none !important; }
  }
  @media (max-width: 480px) {
    .amic-nav { top: 12px; }
    .amic-nav-logo { font-size: 14px; margin-right: 8px; }
  }
 
  /* Add top spacing so page content is not hidden behind the fixed nav.
     Remove this rule if your Elementor layout already accounts for it. */
  body.amic-nav-active { padding-top: 0; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ab05d6a *//* ─── Variables ─── */
.amic-contact-page {
  --amic-cream: #F5F0E8;
  --amic-charcoal: #1A1A18;
  --amic-blue: #1A73E8;
  --amic-accent: #FF4D1C;
  --amic-white: #ffffff;
  --amic-muted: #6b7280;
  --amic-border: #e5e7eb;
  --amic-navy: #0d2137;
  --amic-red: #EA4335;
  --amic-yellow: #FBBC04;
  --amic-green: #34A853;
  font-family: 'Poppins', sans-serif;
}
 
/* ─── Hero Banner ─── */
.amic-contact-hero {
  background: var(--amic-navy);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.amic-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(26,115,232,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(52,168,83,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.amic-contact-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--amic-white);
  margin: 0;
  position: relative;
  z-index: 1;
}
 
/* ─── Wave ─── */
.amic-contact-wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
}
.amic-contact-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}
 
/* ─── Main Content Grid ─── */
.amic-contact-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 2.0fr 1fr;
  gap: 60px;
  align-items: center;
}
 
/* ─── Left: Form Column ─── */
.amic-contact-form-col {}
 
.amic-contact-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amic-muted);
  margin: 0 0 8px;
}
 
.amic-contact-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amic-charcoal);
  margin: 0 0 28px;
  line-height: 1.25;
}
 
.amic-contact-form-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: var(--amic-white);
  /* The iframe fills this container */
}
.amic-contact-form-wrap iframe {
  width: 100%;
  min-height: 620px;
  border: none;
  border-radius: 18px;
  display: block;
}
 
/* ─── Right: Info Column ─── */
.amic-contact-info-col {}
 
.amic-contact-info-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amic-muted);
  margin: 0 0 8px;
}
 
.amic-contact-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amic-charcoal);
  margin: 0 0 36px;
  line-height: 1.25;
}
 
/* ─── Contact Info Items ─── */
.amic-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.amic-contact-item:hover {
  transform: translateX(4px);
}
 
.amic-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.amic-contact-icon--phone {
  background: var(--amic-blue);
}
.amic-contact-icon--email {
  background: var(--amic-green);
}
.amic-contact-icon--location {
  background: var(--amic-accent);
}
 
.amic-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--amic-white);
}
 
.amic-contact-detail {}
.amic-contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amic-muted);
  margin: 0 0 2px;
  line-height: 1.4;
}
.amic-contact-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--amic-charcoal);
  margin: 0;
  line-height: 1.4;
}
.amic-contact-item:hover .amic-contact-value {
  color: var(--amic-blue);
}
 
/* ─── Divider ─── */
.amic-contact-divider {
  border: none;
  border-top: 1px solid var(--amic-border);
  margin: 8px 0 32px;
}
 
/* ─── Hours / Extra Info ─── */
.amic-contact-hours {
  margin-top: 12px;
  padding: 20px 24px;
  background: var(--amic-cream);
  border-radius: 14px;
}
.amic-contact-hours-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amic-charcoal);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.amic-contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--amic-muted);
  margin-bottom: 4px;
}
.amic-contact-hours-row span:last-child {
  font-weight: 600;
  color: var(--amic-charcoal);
}
 
/* ─── Map Section ─── */
.amic-contact-map {
  max-width: 1140px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.amic-contact-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--amic-border);
}
.amic-contact-map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
 
/* ─── Responsive ─── */
@media (max-width: 768px) {
  .amic-contact-hero h1 {
    font-size: 2rem;
  }
  .amic-contact-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 24px;
  }
  .amic-contact-map {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .amic-contact-map-wrap iframe {
    height: 300px;
  }
}/* End custom CSS */