/* ============================================
   OVERLAY FIXES - Complete Styling
   Dynamics 360 WordPress Theme
   ============================================ */

/* ============================================
   HAMBURGER MENU - EXACT LAYOUT MATCH
   ============================================ */

#hamburgerContainer {
  position: fixed;
  left: 0;
  width: 100vw;
  height: calc(100vh - 7.3vh);
  background: linear-gradient(
    60deg,
    rgba(61, 51, 147, 0.97) 0%,
    rgba(43, 118, 185, 0.97) 37%,
    rgba(44, 172, 209, 0.97) 65%,
    rgba(53, 235, 147, 0.97) 100%
  );
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#hamburgerContainer.show {
  display: block;
  opacity: 1;
}

/* Top Bar */
#hamburgerTopBar {
  display: none;
}

/* Left Column - Centered Vertically */
#hamburgerContentLeftDiv {
  position: absolute;
  left: 18.0114vw;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

#hamburgerContentLeft {
  list-style: none;
  padding: 0;
  margin: 0;
}

#hamburgerContentLeft li {
  cursor: pointer;
  font-family: "markProLight";
  font-size: 1.875vw;
  color: white;
  margin-bottom: 2.4074vh;
}

#hamburgerLine {
  position: absolute;
  display: none;
  left: 44.0104vw;
  top: 12.963vh;
  height: 64.8148vh;
  width: 0.1302vw;
  background-color: white;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   LINK CARDS SECTION
   ============================================ */

#linkCardsSection {
  position: relative;
  height: 50.3646vw;
  width: 99.375vw;
  clear: both;
  background: white;
  box-shadow: 0 0 12px 0.5px rgba(40, 84, 162, 0.8);
}

#linkCardsSectionTitle {
  position: absolute;
  top: 10.7813vw;
  left: 21.25vw;
  font-family: "markProExtraLight", sans-serif;
  font-size: 5.8854vw;
  line-height: 6.0938vw;
  letter-spacing: -0.3531vw;
  background-image: linear-gradient(
    60deg,
    #3d3393 0%,
    #2b76b9 37%,
    #2cacd1 65%,
    #35eb93 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#linkCardsWrapper {
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  height: 14.4057vw;
  width: 56.3021vw;
  left: 21.875vw;
  top: 23.4896vw;
}

.linkCard {
  position: relative;
  float: left;
  height: 14.4057vw;
  width: 13.0068vw;
  background: white;
  box-shadow: 0vw 0vw 0.13vw rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.linkCard:hover {
  animation: shadow ease-in-out 0.4s;
  box-shadow: 0 0 12px 0.5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.linkCardType {
  position: relative;
  font-family: "markProBold", sans-serif;
  font-size: 1.0417vw;
  letter-spacing: 0.0177vw;
  margin-top: 10.9375vw;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.iconCenterCard {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 5.7292vw;
  width: auto;
  height: auto;
}

#theTeamIcon {
  width: 6.4vw;
}

#supportIcon {
  width: 8.0729vw;
}

/* Shadow animation */
@keyframes shadow {
  0% {
    box-shadow: 0vw 0vw 0.13vw rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 12px 0.5px rgba(0, 0, 0, 0.2);
  }
}

/* Clear floats after link cards */
#linkCardsSection::after {
  content: "";
  display: table;
  clear: both;
}
/* ============================================
   SOCIAL LINKS SECTION - SIMPLE & CLEAN
   ============================================ */

#socialLinksSection {
  width: 100%;
  background: #ffffff;
  height: auto;
  min-height: 40vh;
  padding: 20vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#socialHeading {
  font-family: "markProExtraLight", sans-serif;
  font-size: 6vw;
  margin: 0 0 4vh 0;
  background: linear-gradient(
    90deg,
    #3d3393 0%,
    #2b76b9 30%,
    #2cacd1 60%,
    #35eb93 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#socialIconsWrapper {
  position: static; /* override absolute positioning from main.css */
  display: inline-flex;
  gap: 2vw;
}

.socialIcon {
  width: 43px;
  height: 43px;
  min-width: 43px;
  min-height: 43px;
  max-width: 43px;
  max-height: 43px;
  background: #000;
  border-radius: 8px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.socialIcon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.socialIcon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
/* ============================================
   FOOTER/SITEMAP SECTION - EXACT MATCH
   ============================================ */

#footerSection {
  background: #fff;
  padding: clamp(32px, 4.17vw, 60px) 0 clamp(16px, 2.08vw, 30px);
}

.footerContainer {
  max-width: 2560px;
  margin: auto;
  padding: 0 clamp(20px, 7.7vw, 111px);
}

/* TOP GRID */
.footerTop {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gap-lg, clamp(20px, 2.78vw, 40px));
  margin-bottom: clamp(25px, 3.47vw, 50px);
}

.footerBrand img {
  height: 45px;
}

.partnerBadge img {
  height: 60px;
  margin: 15px 0;
}

.footerTagline {
  font-size: 14px;
  color: #333;
}

/* COLUMNS */
.footerCol h4 {
  font-size: 14px;
  margin-bottom: 15px;
}

.footerCol ul {
  list-style: none;
  padding: 0;
}

.footerCol ul li {
  margin-bottom: 8px;
}

.footerCol ul li a {
  text-decoration: none;
  font-size: 13px;
  color: #666;
}

.footerCol ul li a:hover {
  color: #345cad;
}

/* MIDDLE */
.footerMiddle {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: start;
  gap: var(--gap-md, clamp(16px, 2.08vw, 30px));
  margin-bottom: clamp(20px, 2.78vw, 40px);
}

/* SOCIAL */
.footerSocial .icons {
  display: flex;
  gap: 10px;
}

.footerSocial i {
  font-size: 16px;
}

/* MAP */
.footerMap iframe {
  width: 100%;
  height: 120px;
  border: none;
  border-radius: 8px;
}

/* CONTACT */
.footerContact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #555;
  margin: 5px 0;
}

/* CTA */
.footerCTA {
  border-left: 2px solid #ddd;
  padding-left: 20px;
}

.footerCTA h3 {
  color: #345cad;
  margin-bottom: 10px;
  white-space: nowrap;
}

.footerCTA p {
  font-size: 13px;
  color: #555;
  margin: 5px 0;
  white-space: nowrap;
}

.ctaBtn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #345cad, #2ed47a);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

/* BOTTOM */
.footerBottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
}

.footerLinks {
  display: flex;
  gap: 10px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */


/* footer 767px grid layout-shift block removed — desktop 4-col grid applies from 481px up */

/* Restore footer mobile layout at ≤480px */
@media (max-width: 480px) {
  .footerTop,
  .footerMiddle {
    grid-template-columns: 1fr;
  }
  .footerBottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footerCTA {
    border-left: none;
    padding-left: 0;
  }
  .footerContact {
    margin-left: 0 !important;
  }
}

@media (max-width: 400px) {
  .ctaBtn {
    width: 100%;
    text-align: center;
  }
}

/* ========================= */
/* LARGE SCREEN (1441px+) SCALING */
/* ========================= */

/* footerContact base spacing (was inside max-width:1440px — now universal) */
.footerContact {
    margin-left: clamp(0px, 4.17vw, 60px);
    width: 90%;
}
.footerMap {
    left: 0;
}
.footerCTA {
    margin-left: clamp(12px, 1.04vw, 15px);
}
.footerCTA h3 {
    font-size: clamp(16px, 1.25vw, 18px);
}

/* footer 767px footerContact/footerMap override removed — base clamp handles scaling */


@media (min-width: 1441px) {
  #footerSection {
    padding: clamp(60px, 4.17vw, 107px) 0 clamp(30px, 2.08vw, 53px);
  }

  .footerContainer {
    padding: 0 clamp(111px, 7.71vw, 197px);
  }

  .footerTop {
    gap: clamp(40px, 2.78vw, 71px);
    margin-bottom: clamp(50px, 3.47vw, 89px);
  }

  .footerMiddle {
    gap: clamp(30px, 2.08vw, 53px);
    margin-bottom: clamp(40px, 2.78vw, 71px);
  }
.footerMap {
    left: 0;
}
  .footerBrand img {
    height: clamp(45px, 3.13vw, 80px);
  }

  .partnerBadge img {
    height: clamp(60px, 4.17vw, 107px);
    margin: clamp(15px, 1.04vw, 27px) 0;
  }

  .footerTagline {
    font-size: clamp(14px, 0.97vw, 25px);
  }

  .footerCol h4 {
    font-size: clamp(14px, 0.97vw, 25px);
    margin-bottom: clamp(15px, 1.04vw, 27px);
  }

  .footerCol ul li {
    margin-bottom: clamp(8px, 0.56vw, 14px);
  }

  .footerCol ul li a {
    font-size: clamp(13px, 0.9vw, 23px);
  }

  .footerContact p {
    display: flex;
    align-items: flex-start;
    gap: clamp(6px, 0.5vw, 12px);
    font-size: clamp(11px, 0.85vw, 16px);
    margin: clamp(5px, 0.35vw, 9px) 0;
  }

  .footerCTA {
    padding-left: clamp(20px, 1.39vw, 36px);
  }

  .footerCTA h3 {
    font-size: clamp(14px, 0.97vw, 25px);
    margin-bottom: clamp(10px, 0.69vw, 18px);
  }

  .footerCTA p {
    font-size: clamp(13px, 0.9vw, 23px);
  }

  .ctaBtn {
    font-size: clamp(13px, 0.9vw, 23px);
    padding: clamp(10px, 0.69vw, 18px) clamp(18px, 1.25vw, 32px);
    border-radius: clamp(6px, 0.42vw, 11px);
    margin-top: clamp(10px, 0.69vw, 18px);
  }

  .footerBottom {
    font-size: clamp(12px, 0.83vw, 21px);
    padding-top: clamp(20px, 1.39vw, 36px);
  }

  .footerLinks {
    gap: clamp(10px, 0.69vw, 18px);
  }

  .footerSocial .icons {
    gap: clamp(10px, 0.69vw, 18px);
  }

  .footerSocial i {
    font-size: clamp(16px, 1.11vw, 28px);
  }

  .footerMap iframe {
    height: clamp(120px, 8.33vw, 213px);
    border-radius: clamp(8px, 0.56vw, 14px);
  }

  /* Static Contact Section */
  #staticContactSection {
    padding: clamp(80px, 5.56vw, 142px) 0;
  }

  .staticContactWrapper {
    gap: clamp(60px, 4.17vw, 107px);
  }

  .staticContactHeading {
    font-size: clamp(3.5rem, 3.89vw, 6.25rem);
    width: auto;
  }

  .staticContactInfoItem {
    font-size: clamp(14px, 0.97vw, 25px);
    gap: clamp(15px, 1.04vw, 27px);
  }

  .staticContactSocials {
    gap: clamp(15px, 1.04vw, 27px);
  }

  .staticContactSocials a {
    width: clamp(24px, 1.67vw, 43px);
    height: clamp(24px, 1.67vw, 43px);
  }

  .staticContactRight input[type="text"],
  .staticContactRight input[type="email"],
  .staticContactRight textarea {
    padding: clamp(12px, 0.83vw, 21px) clamp(15px, 1.04vw, 27px);
    font-size: clamp(14px, 0.97vw, 25px);
    border-radius: clamp(6px, 0.42vw, 11px);
  }

  .staticContactRight textarea {
    min-height: clamp(120px, 8.33vw, 213px);
  }

  .staticContactRight input[type="submit"] {
    font-size: clamp(15px, 1.04vw, 27px);
    padding: clamp(14px, 0.97vw, 25px) clamp(32px, 2.22vw, 57px);
    border-radius: clamp(30px, 2.08vw, 53px);
  }
}

/* ============================================
   CONTACT OVERLAY - EXACT MATCH
   ============================================ */
/* 1. Modal Overlay */
#contactBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  /* dvh ensures it fills the screen even when mobile browser bars appear/disappear */
  height: 100dvh;
  background: linear-gradient(
    60deg,
    rgba(61, 51, 147, 0.98) 0%,
    rgba(43, 118, 185, 0.98) 37%,
    rgba(44, 172, 209, 0.98) 65%,
    rgba(53, 235, 147, 0.98) 100%
  );
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* 2. Modal Container */
#contactDiv {
  position: relative;
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 1000px;
  padding: 50px;
  padding-bottom: 30px;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  /* Custom scrollbar for better aesthetics inside the modal */
  scrollbar-width: thin;
  scrollbar-color: #2b76b9 #f0f0f0;
}

#contactDiv::-webkit-scrollbar {
  width: 6px;
}
#contactDiv::-webkit-scrollbar-thumb {
  background: #2b76b9;
  border-radius: 10px;
}

/* 3. Body Scroll Lock */
html.contact-open,
body.contact-open {
  overflow: hidden;
  height: 100%;
}

/* 4. Layout Structure */
.contactContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg, clamp(30px, 4.17vw, 60px));
}

.contactLeft {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md, clamp(16px, 2.08vw, 30px));
}

/* 5. Typography */
.contactHeading {
  font-family: "markProBlack", "markProHeavy", "markProBold", sans-serif;
  font-size: 4.3rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  word-break: break-word;
  background: linear-gradient(
    90deg,
    #3d3393 0%,
    #2b76b9 30%,
    #2cacd1 60%,
    #35eb93 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: "markProRegular", sans-serif;
  font-size: 14px;
  color: #333;
  word-break: break-word;
}

.contactInfoItem svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* 6. Socials & Interactions */
.contactSocials {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contactSocials a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.contactSocials a:hover {
  opacity: 0.7;
}

.closeBtnWrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 10;
  background: white;
  border-radius: 50%;
  padding: 4px;
}

.closeBtn {
  transition: transform 0.3s ease;
}

.closeBtnWrapper:hover .closeBtn {
  transform: rotate(90deg);
}

/* 7. Form Styling */
#contactDiv form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contactDiv form input,
#contactDiv form textarea {
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid #ddd; /* Softer border than pure black */
  border-radius: 4px;
  font-family: inherit;
  transition: border-color 0.3s;
  box-sizing: border-box;
  width: 100%;
}

#contactDiv form input:focus,
#contactDiv form textarea:focus {
  border-color: #2b76b9;
  outline: none;
}

#contactDiv form textarea {
  min-height: 120px;
  resize: vertical;
}

/* 8. The Send Button (Optimized) */
.sendMessageBtn {
  padding: 14px 30px;
  background: #345cad;
  color: white;
  border: none;
  border-radius: 5px;
  margin-top: 8px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.1s,
    box-shadow 0.3s;
}

.sendMessageBtn:hover {
  background: #284685;
  box-shadow: 0 4px 12px rgba(52, 92, 173, 0.3);
}

.sendMessageBtn:active {
  transform: scale(0.97);
}

/* 9. Responsive Queries */


/* Mobile Devices and Tablets */
@media (max-width: 800px) {
  #contactBg {
    padding: 15px;
    align-items: flex-start; /* Start from top so user can scroll down naturally */
  }

  #contactDiv {
    padding: 25px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-height: none; /* Let the container grow naturally */
    overflow: visible;
  }

  .contactContent {
    grid-template-columns: 1fr;
    gap: var(--gap-md, clamp(16px, 2.08vw, 30px));
  }

  .contactHeading {
    font-size: 2.2rem;
  }

  .sendMessageBtn {
    width: 100%;
  }
}

/* Laptop Height Fixes (Short Screens) */
@media (min-width: 801px) and (max-height: 850px) {
  #contactBg {
    padding: 20px;
  }

  #contactDiv {
    padding: 30px;
    max-height: 92vh;
  }

  .contactHeading {
    font-size: 3rem;
  }

  .contactLeft,
  .contactContent {
    gap: 20px;
  }

  #contactDiv form textarea {
    min-height: 80px;
  }

  #contactDiv form {
    gap: 12px;
  }
}

/* Tiny Mobile */
@media (max-width: 480px) {
  .contactHeading {
    font-size: 1.8rem;
    margin-top: 20px;
  }

  .contactInfoItem {
    font-size: 13px;
  }
}

#hamburgerContainer * {
  pointer-events: auto; /* But menu content is still clickable */
}

/* Make sure header and hamburger icon are always on top and clickable */
#header {
  pointer-events: auto !important;
}

#hamburgerIconDiv {
  pointer-events: auto !important;
  z-index: 10001 !important;
}

/* ============================================
   PRIVACY POLICY CONSENT CHECKBOX
   ============================================ */

/* Privacy Policy Consent Checkbox */
.consent-wrapper {
  margin: 0.4vw 0 0.2vw 0;
  padding: 0.5vw 0.7vw;
  background: #f8fafb;
  border-radius: 0.5vw;
  border-left: 0.3vw solid #345cad;
}

.consent-wrapper .wpcf7-list-item {
  margin: 0;
}

.consent-wrapper label {
  font-family: "markProRegular", sans-serif;
  font-size: 0.95vw;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 0.8vw;
  cursor: pointer;
}

.consent-wrapper input[type="checkbox"] {
  margin-top: 0.2vw;
  width: 1.2vw;
  height: 1.2vw;
  cursor: pointer;
  accent-color: #345cad;
}

.consent-wrapper a {
  color: #345cad;
  text-decoration: none;
  font-family: "markProMedium", sans-serif;
  transition: all 0.3s ease;
  position: relative;
}

.consent-wrapper a:hover {
  color: #1ed197;
}

.consent-wrapper a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #345cad 0%, #1ed197 100%);
  transition: width 0.3s ease;
}

.consent-wrapper a:hover::after {
  width: 100%;
}

.consent-note {
  font-family: "markProRegular", sans-serif;
  font-size: 0.85vw;
  color: #666;
  margin: 0.15vw 0 0 0;
}

.consent-note a {
  color: #345cad;
  text-decoration: none;
  font-family: "markProMedium", sans-serif;
}

/* Responsive */
@media (max-width: 767px) {
  .consent-wrapper {
    padding: 3vw;
    margin: 4vw 0;
  }

  .consent-wrapper label {
    font-size: 3vw;
  }

  .consent-wrapper input[type="checkbox"] {
    width: 4vw;
    height: 4vw;
  }

  .consent-note {
    font-size: 2.5vw;
  }
}

/* ========================================
   STATIC CONTACT SECTION
   ======================================== */
#staticContactSection {
  position: relative;
  width: 100%;
  background-color: #f4f8fc;
  padding: clamp(40px, 5.6vw, 80px) 0;
  justify-content: center !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.staticContactWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg, clamp(30px, 4.17vw, 60px));
  max-width: var(--home-content-max-width, 75.9375vw);
  margin: 0 auto;
  padding: 0;
}

.staticContactLeft {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md, clamp(16px, 2.08vw, 30px));
}

.staticContactHeading {
  font-family: "markProBlack", "markProHeavy", "markProBold", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(
    90deg,
    #3d3393 0%,
    #2b76b9 30%,
    #2cacd1 60%,
    #35eb93 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 23.44vw;
}

.staticContactInfo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.staticContactInfoItem {
  display: flex;
  align-items: center; /* ðŸ‘ˆ change this */
  gap: 15px;
  font-family: "markProRegular", sans-serif;
  font-size: 14px;
  color: #333;
}

.staticContactInfoItem svg {
  flex-shrink: 0;
  margin-top: 0; /* ðŸ‘ˆ remove margin */
}
.staticContactSocials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.staticContactSocials a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  color: #333;
}

.staticContactSocials a svg {
  width: 100%;
  height: 100%;
}

.staticContactSocials a:hover {
  opacity: 0.7;
}

.staticSocialHandle {
  font-family: "markProRegular", sans-serif;
  font-size: 14px;
  color: #333;
  margin-left: 10px;
}

.staticContactRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staticContactRight .wpcf7 {
  width: 100%;
}

.staticContactRight .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.staticContactRight input[type="text"],
.staticContactRight input[type="email"],
.staticContactRight textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "markProRegular", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

.staticContactRight input[type="text"]:focus,
.staticContactRight input[type="email"]:focus,
.staticContactRight textarea:focus {
  outline: none;
  border-color: #345cad;
}

.staticContactRight textarea {
  min-height: 120px;
  resize: vertical;
}

.staticContactRight input[type="submit"] {
  background: linear-gradient(90deg, #3d3393 0%, #2b76b9 50%, #35eb93 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: "markProMedium", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s;
  align-self: flex-start;
}

.staticContactRight input[type="submit"]:hover {
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 480px) {
  #staticContactSection {
    padding: 50px 0;
  }

  .staticContactWrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .staticContactHeading {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  /* Hamburger Menu Mobile */
  #hamburgerContainer {
    top: 60px;
    height: calc(100vh - 60px);
    width: 100vw;
    overflow-y: auto;
  }

  #hamburgerContentLeftDiv {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    padding: 8vw 6vw;
    display: block !important;
  }

  #hamburgerContentLeft {
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }

  #hamburgerContentLeft li {
    font-size: 6vw;
    margin-bottom: 0;
    padding: 3vw 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  #hamburgerContentLeft li:last-child {
    border-bottom: none;
  }

  #hamburgerContentLeft li::before {
    display: none;
  }

  #hamburgerLine {
    display: none !important;
  }

  #hamburgerContentRightDiv {
    display: none;
  }

  /* Contact Overlay Mobile */
  #contactDiv {
    padding: 20px 15px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .contactHeading {
    font-size: 1.75rem;
  }

  .contactSubheading {
    font-size: 0.9rem;
  }

  .contactFormLabel {
    font-size: 0.85rem;
  }

  .contactFormInput,
  .contactFormTextarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .sendMessageBtn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  /* Link Cards Section Mobile */
  #linkCardsSection {
    height: auto;
    padding: 40px 0;
  }

  #linkCardsSectionTitle {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    font-size: 8vw;
    line-height: 1.2;
    padding: 0 20px;
    margin-bottom: 30px;
  }

  #linkCardsWrapper {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }

  .linkCard {
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  /* Static Contact Section Mobile */
  #staticContactSection {
    padding: 30px 0;
  }

  .staticContactWrapper {
    padding: 0 15px;
    gap: 25px;
  }

  .staticContactHeading {
    font-size: 1.5rem;
  }

  .staticContactSubheading {
    font-size: 0.85rem;
  }

  .staticContactRight input[type="text"],
  .staticContactRight input[type="email"],
  .staticContactRight textarea {
    padding: 10px;
    font-size: 14px;
  }

  .staticContactRight input[type="submit"] {
    width: 100%;
    padding: 14px;
  }

  /* Footer Mobile */
  .footerColumns {
    padding: 0 15px;
  }

  .footerHeading {
    font-size: 1rem;
  }

  .footerLink {
    font-size: 0.85rem;
  }

  .footerBottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px 15px;
  }

  .footerCopyright {
    font-size: 0.8rem;
  }

  /* Consent Wrapper Mobile */
  .consent-wrapper {
    padding: 12px;
    margin: 15px 0;
    border-radius: 8px;
  }

  .consent-wrapper label {
    font-size: 12px;
    gap: 8px;
  }

  .consent-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .consent-note {
    font-size: 11px;
  }
}
