/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* DESIGN SYSTEM TOKENS */
:root {
  --bg:#EFF6FC;            /* icy blue page background */
  --bg-alt:#F7FBFE;        /* alternate section background */
  --card:#FFFFFF;
  --ink:#0F1D33;           /* headings/body */
  --ink-soft:#4A5A72;      /* secondary text */
  --line:#DDE9F4;          /* borders */
  --accent:#2E90E5;        /* primary blue */
  --accent-deep:#1E6FBF;
  --violet:#6D5BE8;
  --grad:linear-gradient(92deg,#2E90E5 20%,#6D5BE8 80%);
  --radius:16px;
  --shadow:0 10px 30px rgba(21,60,105,.08);
  --shadow-lift:0 16px 40px rgba(21,60,105,.14);
  --container:1360px;
  --sec-pad:80px;          /* section vertical padding, desktop */
  --sec-pad-m:48px;        /* section vertical padding, mobile */
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* --- SHARED COMPONENTS --- */

/* .container */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}

/* section */
section {
  padding-top: var(--sec-pad);
  padding-bottom: var(--sec-pad);
}

@media (max-width: 768px) {
  section {
    padding-top: var(--sec-pad-m);
    padding-bottom: var(--sec-pad-m);
  }
}

/* .eyebrow */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

/* .sec-head */
.sec-head {
  margin-bottom: 40px;
}
.sec-head h2, .sec-head h1 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

/* .btn */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* .btn-primary */
.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(46, 144, 229, 0.15);
}
.btn-primary:hover {
  background-color: var(--accent-deep);
  box-shadow: 0 8px 24px rgba(30, 111, 191, 0.25);
}

/* .btn-ghost */
.btn-ghost {
  background-color: #FFFFFF;
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background-color: var(--bg-alt);
}

/* .btn-light */
.btn-light {
  background-color: #FFFFFF;
  color: var(--accent-deep);
}
.btn-light:hover {
  background-color: var(--bg);
  box-shadow: var(--shadow);
}

/* .card */
.card {
  background-color: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* .chip */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background-color: var(--bg);
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
}

/* Sticky Header Bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  background-color: rgba(239, 246, 252, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header .logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.site-header .logo span {
  color: var(--accent);
}
.logo-image {
  height: 28px;
  width: auto;
  display: block;
}
.site-header .nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}
.site-header .nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--accent);
}

/* Footer */
.site-footer {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-top: var(--sec-pad);
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .logo {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}
.footer-brand .logo span {
  color: var(--accent);
}
.footer-brand p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 32px;
}

/* Blue CTA Band */
.cta-band {
  background: linear-gradient(120deg, #2E90E5 20%, #6D5BE8 80%);
  color: #FFFFFF;
  text-align: center;
  border-radius: var(--radius);
  padding: 64px 32px;
  overflow: hidden;
  position: relative;
}
.cta-band h2 {
  color: #FFFFFF;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 32px auto;
  font-size: 16px;
}

/* Responsive Grid Helper */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3-col {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- SHARED NAVIGATION DROPDOWN COMPONENT --- */
.nav-item-dropdown {
  position: relative;
}

/* Hover bridge to bridge the gap between trigger and panel, preventing dropdown closing on mousemove */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 290px;
  height: 28px;
  background: transparent;
  pointer-events: none;
  z-index: 999;
}

.nav-item-dropdown:hover::after {
  pointer-events: auto;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-trigger .caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.2s ease;
}

/* Desktop Hover Interaction */
@media (hover: hover) {
  .nav-item-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .nav-item-dropdown:hover .dropdown-trigger .caret {
    transform: rotate(180deg);
  }
}

/* Touch Toggle Interaction via JS .open class */
.nav-item-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-item-dropdown.open .dropdown-trigger .caret {
  transform: rotate(180deg);
}

/* Dropdown Panel Card styling */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background-color: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  pointer-events: none;
}

/* Arrow points */
.dropdown-panel::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 8px solid var(--line);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.dropdown-panel::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 7px solid var(--card);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  margin-bottom: -1px;
}

.dropdown-links {
  list-style: none;
}

.dropdown-links li {
  margin-bottom: 2px;
}

.dropdown-links a {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.dropdown-links a:hover {
  color: var(--accent);
  background-color: var(--bg);
}

/* Legal / Text Page Layout */
.legal-section {
  padding-top: 72px;
  padding-bottom: var(--sec-pad);
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-container h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.legal-container .last-updated {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  display: block;
}
.legal-container h2 {
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--ink);
}
.legal-container p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.7;
}
.legal-container ul {
  margin-bottom: 24px;
  padding-left: 20px;
  color: var(--ink-soft);
}
.legal-container li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Footer Copyright Link Styling */
.footer-copyright a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-copyright a:hover {
  color: var(--accent);
}

/* --- START A PROJECT / CONTACT FORM STYLES --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-panel h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.contact-info-panel h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.contact-info-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 48px;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  list-style-type: none !important;
}

.contact-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(46, 144, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-details-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-details-text p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

.contact-details-text a:hover {
  color: var(--accent);
}

.contact-features-box {
  background-color: rgba(46, 144, 229, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-features-box h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--ink);
}

.contact-features-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.contact-features-list li {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style-type: none !important;
}

.contact-features-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
}

/* Glassmorphic Contact Card & Form */
.contact-form-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-group {
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background-color: var(--bg-alt);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: #90A0B5;
}

.form-control:focus {
  border-color: var(--accent);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(46, 144, 229, 0.12);
}

select.form-control {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5A72' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}

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

/* Sliding input for Custom service name */
.custom-service-field {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.custom-service-field.visible {
  max-height: 80px;
  opacity: 1;
  margin-top: 12px;
}

/* Form Success Container */
.form-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0;
}

.success-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(93, 91, 232, 0.15);
  animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-circle svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success-container h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.form-success-container p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 24px;
}

.form-success-container .success-summary-box {
  background-color: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  font-size: 13.5px;
  text-align: left;
  width: 100%;
  max-width: 400px;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.form-success-container .success-summary-box strong {
  color: var(--ink);
}

/* Submit loading state */
.btn-submit-wrapper {
  position: relative;
}

.btn-loading {
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes scaleUp {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* --- START A PROJECT MODAL OVERLAY STYLES --- */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 29, 51, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-container {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
}

.contact-modal-overlay.open .contact-modal-container {
  transform: translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.2s ease;
  z-index: 10;
}

.contact-modal-close:hover {
  background-color: var(--line);
  color: var(--ink);
  transform: rotate(90deg);
}

.contact-modal-close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Scrollbar styling for the modal container */
.contact-modal-container::-webkit-scrollbar {
  width: 8px;
}

.contact-modal-container::-webkit-scrollbar-track {
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.contact-modal-container::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.contact-modal-container::-webkit-scrollbar-thumb:hover {
  background: #C2D2E4;
}

/* Adjust padding inside modal card to avoid duplication of card background */
.contact-modal-container .contact-form-card {
  box-shadow: none;
  border: none;
  background-color: transparent;
  padding: 0;
}

/* --- MOBILE & IPAD RESPONSIVE MENU SYSTEM --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Hamburger morph animation states */
.site-header.nav-open .menu-toggle .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .menu-toggle .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  /* Hide header standalone action button on mobile/tablet */
  .site-header > .container > .btn-primary {
    display: none !important;
  }

  /* Translate nav menu list to vertical drawer panel overlay */
  .site-header .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 64px);
    background-color: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 16px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    
    /* Off-screen animation defaults */
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  }

  /* Open state transitions */
  .site-header.nav-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .site-header .nav-link {
    font-size: 16px;
    display: block;
    padding: 12px;
    border-radius: var(--radius);
  }

  .site-header .nav-link:hover,
  .site-header .nav-link.active {
    background-color: var(--bg-alt);
  }

  /* Show mobile CTA inside the menu drawer list */
  .site-header .nav-menu .mobile-cta-item {
    margin-top: 16px;
    width: 100%;
    max-width: 320px;
    display: block !important;
  }

  .site-header .nav-menu .mobile-cta-item .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    box-sizing: border-box;
  }

  /* Handle development services dropdown within drawer list */
  .nav-item-dropdown.open .dropdown-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--line);
    background-color: var(--card);
    transform: none;
    opacity: 1;
    visibility: visible;
    display: block;
    margin-top: 8px;
    padding: 8px 16px;
    border-radius: var(--radius);
    pointer-events: auto;
    box-sizing: border-box;
  }

  .nav-item-dropdown .dropdown-panel {
    display: none;
    pointer-events: none;
  }
}

