@import url('./index.css');

/* ==================== PAGE-LEVEL FONT OVERRIDE ====================
   Ensure all sections on this page use Outfit, consistent with the
   contact and CTA sections, overriding index.css Satoshi/DM Sans defaults.
   ================================================================= */
body,
main,
main * {
  font-family: 'Outfit', 'Inter', sans-serif;
}

body {
  background-color: #ffffff;
}

/* Preserve icon / SVG elements from inheriting font-family */
main svg,
main img {
  font-family: inherit;
}

/* Mobile Apps Hero Section CSS */
.mobile-apps-hero-section {
  width: 100%;
  background: #ffffff !important;
  padding: 0 40px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.mobile-apps-hero-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 24px 0 40px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tagline */
.mobile-apps-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.mobile-apps-hero-tagline span {
  color: var(--69686E, #69686E);
  font-family: Satoshi, 'Inter', sans-serif !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-apps-hero-title {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 56px;
  color: rgb(6, 6, 18);
  font-style: normal;
  margin: 0 0 clamp(16px, 2vw, 28px) 0;
  text-align: center;
}

/* Outer Card Frame */
.mobile-apps-card-frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1320px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  border: 1px solid #FFFFFF;
  background: #F5F5F5;
  box-shadow: 0 0 6px 1px rgba(6, 6, 18, 0.16) inset;
  box-sizing: border-box;
}

/* White Card Container */
.mobile-apps-card {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(6, 6, 18, 0.05);
  overflow: hidden;
  border: 1px solid #E5E4E2;
}

.mobile-apps-card-inner {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  box-sizing: border-box;
}

/* Left Column Styling */
.mobile-apps-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  padding: 40px 48px;
  box-sizing: border-box;
  background: #FFFFFF;
}

.mobile-apps-card-heading {
  color: var(--060612, #060612);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  margin: 0 0 12px 0;
}

.mobile-apps-card-heading .highlight-green {
  color: #599632;
}

.mobile-apps-card-description {
  color: var(--69686E, #69686E);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 8px 0;
}

.mobile-apps-divider-line {
  border: none;
  border-top: 1px solid #E5E4E2;
  margin: 16px 0;
  width: 100%;
}

/* Features Row */
.mobile-apps-features-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
}

.mobile-apps-feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.mobile-apps-feature-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(133, 189, 86, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.mobile-apps-feature-divider {
  width: 1px;
  background: #E5E4E2;
  margin: 0 16px;
  align-self: stretch;
}

.mobile-apps-feature-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #060612;
  margin: 0 0 4px 0;
}

.mobile-apps-feature-desc {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 11px;
  color: #69686E;
  margin: 0;
}

/* Right Column Styling: flush against the outer card's edge so the
   outer card's own border-radius + overflow:hidden clips it into one
   continuous rounded corner (same treatment as Contact Hero's image panel). */
.mobile-apps-card-right {
  width: 520px;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
}

.mobile-apps-mockup-image-container {
  width: 100%;
  height: 100%;
  min-height: 416px;
  background: #F3EFE9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mobile-apps-mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-apps-card:hover .mobile-apps-mockup-image {
  transform: scale(1.04);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .mobile-apps-card-frame {
    padding: 12px;
    border-radius: 20px;
  }

  .mobile-apps-card {
    border-radius: 14px;
  }

  .mobile-apps-card-inner {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .mobile-apps-card-right {
    width: 100%;
    height: auto;
    flex-shrink: 0;
  }

  .mobile-apps-mockup-image-container {
    height: 380px;
    min-height: 0;
  }

  .mobile-apps-card-left {
    padding: 32px 24px;
  }
}

@media (max-width: 960px) {
  .mobile-apps-hero-section {
    padding: 0 24px;
  }

  .mobile-apps-hero-container {
    padding: 24px 0 40px 0;
  }

  .mobile-apps-hero-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 12px;
  }

  .mobile-apps-card-heading {
    font-size: 28px;
    line-height: 38px;
  }

  .mobile-apps-features-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .mobile-apps-feature-item {
    flex: unset;
    width: calc(50% - 10px);
  }

  .mobile-apps-feature-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .mobile-apps-mockup-image-container {
    height: 280px;
    min-height: 0;
  }

  .mobile-apps-card-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .mobile-apps-feature-item {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mobile-apps-hero-section {
    padding: 0 16px;
  }

  .mobile-apps-hero-container {
    padding: 4px 0 24px 0;
  }

  .mobile-apps-mockup-image-container {
    height: 200px;
    min-height: 0;
  }

  .mobile-apps-card-frame {
    padding: 8px;
    border-radius: 16px;
  }

  .mobile-apps-card {
    border-radius: 12px;
  }

  .mobile-apps-card-inner {
    gap: 8px;
    padding: 8px;
  }

  .mobile-apps-hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .mobile-apps-card-description {
    font-size: 14px;
    line-height: 22px;
  }
}


/* Projects Section CSS */
.mobile-projects-section {
  width: 100%;
  background: #ffffff;
  padding: 0 40px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.mobile-projects-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 0;
  box-sizing: border-box;
}

/* Projects List Layout */
.mobile-projects-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.mobile-project-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  width: 100%;
}

.mobile-project-row.layout-image-left {
  flex-direction: row;
}

.mobile-project-row.layout-image-right {
  flex-direction: row-reverse;
}

/* Mockup Column & Rings */
.project-mockup-column {
  width: 520px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-mockup-wrapper {
  position: relative;
  width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ring Animations and Opacities */
.project-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--project-color);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.project-ring-inner {
  width: 400px;
  height: 400px;
  aspect-ratio: 1/1;
  border-radius: 400px;
  opacity: 0.32;
}

.project-ring-middle {
  width: 448px;
  height: 448px;
  aspect-ratio: 1/1;
  border-radius: 448px;
  opacity: 0.24;
}

.project-ring-outer {
  width: 496px;
  height: 496px;
  aspect-ratio: 1/1;
  border-radius: 496px;
  opacity: 0.16;
}

/* Hover Ring Scales */
.mobile-project-row:hover .project-ring-inner {
  transform: translate(-50%, -50%) scale(1.02);
}

.mobile-project-row:hover .project-ring-middle {
  transform: translate(-50%, -50%) scale(1.04);
}

.mobile-project-row:hover .project-ring-outer {
  transform: translate(-50%, -50%) scale(1.06);
}

/* Phone Mockup Styling */
.project-phone-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-phone-img {
  max-height: 480px;
  width: auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

/* Phone Mockup Hover */
.mobile-project-row:hover .project-phone-img {
  transform: translateY(-10px) scale(1.02);
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.14));
}

/* Text Details Column Styling */
.project-details-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.project-title {
  color: var(--060612, #060612);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  margin: 0 0 16px 0;
}

.project-description {
  color: var(--69686E, #69686E);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 28px 0;
  max-width: 608px;
  width: 100%;
}

/* Highlight Items */
.project-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.project-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.project-highlight-check {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.project-highlight-item:hover .project-highlight-check {
  transform: scale(1.1);
}

.project-highlight-text {
  color: var(--69686E, #69686E);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  max-width: 582px;
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .mobile-projects-list {
    gap: 24px;
  }

  .mobile-project-row,
  .mobile-project-row.layout-image-left,
  .mobile-project-row.layout-image-right {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .project-mockup-column {
    width: 100%;
  }

  .project-details-column {
    width: 100%;
    max-width: 680px;
    align-items: center;
    text-align: center;
  }

  .project-description {
    max-width: 100%;
  }

  .project-highlights {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .mobile-projects-section {
    padding: 0 24px;
  }

  .mobile-projects-container {
    padding: 20px 0;
  }

  .project-mockup-wrapper {
    width: 320px;
    height: 320px;
  }

  .project-ring-inner {
    width: 250px;
    height: 250px;
  }

  .project-ring-middle {
    width: 285px;
    height: 285px;
  }

  .project-ring-outer {
    width: 320px;
    height: 320px;
  }

  .project-phone-img {
    max-height: 300px;
  }

  .project-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 12px;
  }

  .project-description {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 20px;
  }

  .project-highlight-text {
    font-size: 13.5px;
    line-height: 20px;
  }
}

/* ==================== NEW MOBILE PROJECTS GRID ==================== */
.mobile-projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.project-card {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  justify-self: stretch;
  grid-row: span 1;
  grid-column: span 1;
  background-color: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.project-card-image-wrapper {
  height: 360px;
  align-self: stretch;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding-top: 40px;
  position: relative;
  transition: background-color 0.4s ease;
}

/* On hover the tinted backdrop fades to plain white */
.project-card:hover .project-card-image-wrapper {
  background-color: #ffffff !important;
}

.phone-mockup-wrapper {
  position: relative;
  width: 58%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle lift of the whole phone on card hover */
.project-card:hover .phone-mockup-wrapper {
  transform: translateY(-12px);
}

.project-card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.15));
  transform: translateY(0);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  border-radius: 42px;
}

/* Full Bleed Card Styling (for desktop & tablet UI/UX mockups) */
.project-card-image-wrapper.full-bleed-wrapper {
  height: auto;
  aspect-ratio: 1800 / 980;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card-image-wrapper.full-bleed-wrapper .phone-mockup-wrapper,
.project-card-image-wrapper.full-bleed-wrapper .card-mockup-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card-image-wrapper.full-bleed-wrapper .project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  filter: none;
  transform: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-image-wrapper.full-bleed-wrapper .project-card-img {
  transform: scale(1.015);
}

.project-card:hover .project-card-image-wrapper.full-bleed-wrapper .phone-mockup-wrapper,
.project-card:hover .project-card-image-wrapper.full-bleed-wrapper .card-mockup-wrapper {
  transform: none;
}

/* Scroll state pans the tall phone image up to reveal the lower portion
   of the app screen (property list + bottom nav bar). The exact pan
   distance is set inline by switchMobileScreen() so the bottom of the
   phone lands flush with the card window at any width/breakpoint. */

.project-card-float-group {
  position: absolute;
  right: 4%;
  bottom: 16px;
  top: auto;
  transform: none;
  width: clamp(44px, 12.5%, 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.project-card-float-btn {
  display: block;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  box-sizing: border-box;
}

.project-card-float-btn:hover {
  transform: scale(1.05);
}

.project-card-float-btn.active {
  border-color: var(--project-color);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transform: scale(1.03);
}

.project-card-float-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.float-btn-img-top {
  object-position: top center;
}

.float-btn-img-bottom {
  object-position: bottom center;
}

.project-card-footer {
  width: 100%;
  align-self: stretch;
  box-sizing: border-box;
  padding: 4px 8px 8px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.project-card-title {
  color: #111827;
  font-family: Satoshi, 'Inter', sans-serif !important;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 26.4px */
  margin: 0;
}

.project-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-card:hover .project-card-title a {
  color: var(--project-color, #111827);
}

.project-card-footer-right {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 32px;
}

.project-card-tags {
  display: flex;
  gap: 8px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.project-tag-pill {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: #F1F5F9;
  border: none;
  color: #6B7280;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: lowercase;
}

.project-card-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 8px;
  background: var(--project-color, #85BD56);
  color: #FFFFFF;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.28) inset, 0 0 0 2px color-mix(in srgb, var(--project-color, #85BD56) 35%, #ffffff);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  white-space: nowrap;
}

.project-card-view-more svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.project-card-view-more:hover {
  filter: brightness(1.08);
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, 0.38) inset, 0 0 0 3px color-mix(in srgb, var(--project-color, #85BD56) 45%, #ffffff), 0 6px 16px rgba(0, 0, 0, 0.15);
}

.project-card-view-more:hover svg {
  transform: translate(2px, -2px);
}

.project-card:hover .project-card-tags {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  pointer-events: none;
}

.project-card:hover .project-card-view-more {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .mobile-projects-grid {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

/* ==================== GLOBAL APP SECTION STYLES ==================== */
.app-section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
}

.app-section-heading {
  font-family: Satoshi, "DM Sans", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 56px;
  color: rgb(6, 6, 18);
  text-align: center;
  margin: 0 0 24px 0;
}

/* ==================== SECTION 3: WHY CHOOSE US ==================== */
.app-why-choose-section {
  background: #ffffff;
  width: 100%;
}

.app-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .app-why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .app-why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.app-why-card {
  background: #ffffff;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  padding: 30px;
  box-sizing: border-box;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.app-why-card:hover {
  transform: translateY(-6px);
  border-color: #C2E2A6;
  box-shadow: 0 12px 30px rgba(133, 189, 86, 0.08);
}

.app-why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #F4FBF0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid #D8EEC8;
}

.app-why-icon-box img {
  width: 22px;
  height: 22px;
}

.app-why-title {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #060612;
  margin: 0 0 12px 0;
  line-height: 26px;
}

.app-why-text {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 14.5px;
  color: #69686E;
  line-height: 24px;
  margin: 0;
}

/* ==================== SECTION 4: WHAT YOU GET ==================== */
.app-services-include-section {
  background: #ffffff !important;
  width: 100%;
}

.app-services-include-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .app-services-include-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .app-services-include-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .app-services-include-grid {
    grid-template-columns: 1fr;
  }
}

.app-service-include-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.app-service-include-card:hover {
  border-color: #85BD56;
  box-shadow: 0 8px 24px rgba(133, 189, 86, 0.05);
}

.app-service-icon-wrapper {
  margin-bottom: 16px;
}

.app-service-leaf-bullet {
  width: 20px;
  height: 20px;
}

.app-service-include-title {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #060612;
  margin: 0 0 10px 0;
  line-height: 22px;
}

.app-service-include-text {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 13.5px;
  color: #69686E;
  line-height: 22px;
  margin: 0;
}

/* ==================== SECTION 5: FAQ ==================== */
.app-faq-section {
  background: #ffffff;
  width: 100%;
}

.app-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-faq-item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.app-faq-item[open] {
  border-color: #85BD56;
}

.app-faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-family: Satoshi, Inter, sans-serif;
  box-sizing: border-box;
}

.app-faq-summary::-webkit-details-marker {
  display: none;
}

.app-faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #060612;
  margin: 0;
  font-family: Satoshi, Inter, sans-serif;
}

.app-faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.app-faq-icon::before,
.app-faq-icon::after {
  content: '';
  position: absolute;
  background-color: #69686E;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Horizontal line */
.app-faq-icon::before {
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
}

/* Vertical line */
.app-faq-icon::after {
  top: 3px;
  left: 9px;
  width: 2px;
  height: 14px;
}

.app-faq-item[open] .app-faq-icon::after {
  transform: rotate(90deg);
  background-color: #85BD56;
}

.app-faq-item[open] .app-faq-icon::before {
  background-color: #85BD56;
}

.app-faq-answer {
  padding: 0 28px 22px 28px;
  box-sizing: border-box;
  font-family: Satoshi, Inter, sans-serif;
  font-size: 14.5px;
  color: #69686E;
  line-height: 24px;
}

.app-faq-answer p {
  margin: 0;
}

/* ==================== SECTION 6: TESTIMONIALS ==================== */
.app-testimonials-section {
  background: #ffffff !important;
  width: 100%;
}

.app-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .app-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.app-testimonial-card {
  background: #ffffff;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.app-avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EFF7EA;
  color: #599632;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Satoshi, Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.app-testimonial-info {
  display: flex;
  flex-direction: column;
}

.app-client-name {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #060612;
  margin: 0;
}

.app-client-company {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 13px;
  color: #69686E;
  margin: 2px 0 0 0;
}

.app-testimonial-text {
  font-family: Satoshi, Inter, sans-serif;
  font-size: 14.5px;
  color: #475569;
  line-height: 24px;
  font-style: italic;
  margin: 0;
}

/* ==================== SECTION 7: CTA BANNER ==================== */
.app-cta-banner-section {
  background: #ffffff;
  width: 100%;
}

.app-cta-banner-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
  text-align: center;
  background: linear-gradient(135deg, #1C3322 0%, #0D1B11 100%);
  border-radius: 24px;
  color: #ffffff;
}

.app-cta-banner-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.app-cta-banner-desc {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  max-width: 720px;
  margin: 0 auto 32px auto;
  color: #D1D5DB;
}

.app-cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #85BD56;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.16) inset, 0 0 0 2px #E1FFC8;
  transition: all 0.3s ease;
}

.app-cta-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 2px 2px 2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px #E1FFC8, 0 6px 14px rgba(133, 189, 86, 0.2);
}

@media (max-width: 768px) {
  .app-section-container {
    padding: 60px 20px;
  }
  .app-section-heading {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 36px;
  }
  .app-cta-banner-title {
    font-size: 28px;
    line-height: 38px;
  }
  .app-cta-banner-container {
    padding: 60px 20px;
  }
}

/* ==========================================================================
   UNIFORM GLOBAL SECTION SPACING & WHITE BACKGROUNDS (MATCHING INDEX.HTML)
   ========================================================================== */
.mobile-apps-hero-section,
.mobile-projects-section,
.app-why-choose-section,
.app-services-include-section,
.app-testimonials-section,
.faqs-section,
.cta-section,
.contact-section,
#faqs,
#contact,
body.app-dev-page .mobile-apps-hero-section,
body.app-dev-page .mobile-projects-section,
body.app-dev-page .app-why-choose-section,
body.app-dev-page .app-services-include-section,
body.app-dev-page .app-testimonials-section,
body.app-dev-page .faqs-section,
body.app-dev-page .cta-section,
body.app-dev-page .contact-section,
body.app-dev-page #faqs,
body.app-dev-page #contact {
  background: #ffffff !important;
  background-color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 60px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.app-dev-page .mobile-apps-hero-section,
body.app-dev-page #mobile-app-section,
body.app-dev-page #uiux-hero-section,
.mobile-apps-hero-section,
#mobile-app-section,
#uiux-hero-section {
  padding-top: 24px !important;
  margin-bottom: 60px !important;
}

.mobile-apps-hero-container,
.mobile-projects-container,
.app-section-container,
.faqs-container,
.cta-container,
.contact-inner,
body.app-dev-page .mobile-apps-hero-container,
body.app-dev-page .mobile-projects-container,
body.app-dev-page .app-section-container,
body.app-dev-page .faqs-container,
body.app-dev-page .cta-container,
body.app-dev-page .contact-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Tablet Uniform Section Spacing (<= 960px) */
@media (max-width: 960px) {
  .mobile-apps-hero-section,
  .mobile-projects-section,
  .app-why-choose-section,
  .app-services-include-section,
  .app-testimonials-section,
  .faqs-section,
  .cta-section,
  .contact-section,
  #faqs,
  #contact,
  body.app-dev-page .mobile-apps-hero-section,
  body.app-dev-page .mobile-projects-section,
  body.app-dev-page .app-why-choose-section,
  body.app-dev-page .app-services-include-section,
  body.app-dev-page .app-testimonials-section,
  body.app-dev-page .faqs-section,
  body.app-dev-page .cta-section,
  body.app-dev-page .contact-section,
  body.app-dev-page #faqs,
  body.app-dev-page #contact {
    margin-top: 0 !important;
    margin-bottom: 44px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.app-dev-page .mobile-apps-hero-section,
  body.app-dev-page #mobile-app-section,
  body.app-dev-page #uiux-hero-section,
  .mobile-apps-hero-section,
  #mobile-app-section,
  #uiux-hero-section {
    padding-top: 20px !important;
    margin-bottom: 44px !important;
  }

  .mobile-apps-hero-container,
  .mobile-projects-container,
  .app-section-container,
  .faqs-container,
  .cta-container,
  .contact-inner,
  body.app-dev-page .mobile-apps-hero-container,
  body.app-dev-page .mobile-projects-container,
  body.app-dev-page .app-section-container,
  body.app-dev-page .faqs-container,
  body.app-dev-page .cta-container,
  body.app-dev-page .contact-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Mobile Uniform Section Spacing (<= 480px) */
@media (max-width: 480px) {
  .mobile-apps-hero-section,
  .mobile-projects-section,
  .app-why-choose-section,
  .app-services-include-section,
  .app-testimonials-section,
  .faqs-section,
  .cta-section,
  .contact-section,
  #faqs,
  #contact,
  body.app-dev-page .mobile-apps-hero-section,
  body.app-dev-page .mobile-projects-section,
  body.app-dev-page .app-why-choose-section,
  body.app-dev-page .app-services-include-section,
  body.app-dev-page .app-testimonials-section,
  body.app-dev-page .faqs-section,
  body.app-dev-page .cta-section,
  body.app-dev-page .contact-section,
  body.app-dev-page #faqs,
  body.app-dev-page #contact {
    margin-top: 0 !important;
    margin-bottom: 32px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.app-dev-page .mobile-apps-hero-section,
  body.app-dev-page #mobile-app-section,
  body.app-dev-page #uiux-hero-section,
  .mobile-apps-hero-section,
  #mobile-app-section,
  #uiux-hero-section {
    padding-top: 16px !important;
    margin-bottom: 32px !important;
  }

  .mobile-apps-hero-container,
  .mobile-projects-container,
  .app-section-container,
  .faqs-container,
  .cta-container,
  .contact-inner,
  body.app-dev-page .mobile-apps-hero-container,
  body.app-dev-page .mobile-projects-container,
  body.app-dev-page .app-section-container,
  body.app-dev-page .faqs-container,
  body.app-dev-page .cta-container,
  body.app-dev-page .contact-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ==========================================================================
   REDUCED SECTION TITLE TO SECTION CONTENT GAP
   ========================================================================== */
.app-section-heading,
.faqs-header,
body.app-dev-page .app-section-heading,
body.app-dev-page .faqs-header {
  margin-bottom: 24px !important;
}

.faqs-header .app-section-heading,
body.app-dev-page .faqs-header .app-section-heading {
  margin-bottom: 0 !important;
}

@media (max-width: 960px) {
  .app-section-heading,
  .faqs-header,
  body.app-dev-page .app-section-heading,
  body.app-dev-page .faqs-header {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .app-section-heading,
  .faqs-header,
  body.app-dev-page .app-section-heading,
  body.app-dev-page .faqs-header {
    margin-bottom: 16px !important;
  }
}

  .uiux-hero-list-title {
    font-family: Satoshi, Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #060612;
    margin: 0 0 12px 0;
  }

  .uiux-hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .uiux-hero-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: Satoshi, Inter, sans-serif;
    font-size: 14.5px;
    color: #69686E;
    line-height: 22px;
  }

  .uiux-hero-leaf {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
  }

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE ENHANCEMENTS
   ========================================================================== */
@media (max-width: 960px) {
  .app-section-heading {
    font-size: 32px !important;
    line-height: 40px !important;
  }

  .cta-inner-box {
    flex-direction: column !important;
    gap: 32px !important;
    padding: 36px 24px !important;
  }

  .cta-left-content,
  .cta-right-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .available-card-outer {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-row-main {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 32px !important;
    width: 100% !important;
  }

  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .contact-info-outer {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 12px !important;
    border-radius: 16px !important;
    margin: 0 !important;
  }

  .contact-info-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 24px 20px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 768px) {
  .mobile-apps-hero-section,
  .mobile-projects-section,
  .app-why-choose-section,
  .app-services-include-section,
  .app-testimonials-section,
  .faqs-section,
  .cta-section,
  .contact-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-main-heading {
    font-size: 26px !important;
    line-height: 34px !important;
  }

  .cta-description {
    font-size: 14.5px !important;
    line-height: 23px !important;
  }

  .cta-start-project-btn,
  .available-book-call-btn {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .faqs-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    text-align: left !important;
  }

  .faqs-main-heading,
  .faqs-header-desc {
    text-align: left !important;
  }

  .faqs-main-heading {
    font-size: 26px !important;
    line-height: 34px !important;
  }

  .faqs-inner-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-inner {
    padding: 24px 0 !important;
    width: 100% !important;
  }

  .contact-row-breadcrumb {
    margin-bottom: 8px !important;
  }

  .contact-breadcrumb {
    font-size: 13px !important;
    line-height: 22px !important;
  }

  .contact-row-intro {
    gap: 12px !important;
    margin-bottom: 24px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .contact-row-intro .contact-heading,
  .contact-heading {
    font-size: 26px !important;
    line-height: 34px !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    width: 100% !important;
  }

  .contact-row-intro .contact-intro-text,
  .contact-intro-text {
    font-size: 14px !important;
    line-height: 22px !important;
    text-align: left !important;
    width: 100% !important;
    padding-top: 0 !important;
    margin: 0 !important;
  }

  .contact-row-main {
    gap: 24px !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .contact-form {
    padding: 0 !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-form-row {
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .contact-field {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    gap: 8px !important;
  }

  .contact-field label {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
  }

  .contact-input-wrap {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    gap: 10px !important;
  }

  .contact-field-full .contact-input-wrap:not(.contact-textarea-wrap) {
    height: 48px !important;
  }

  .contact-input-wrap input,
  .contact-input-wrap select,
  .contact-input-wrap textarea,
  .contact-input-wrap input::placeholder,
  .contact-input-wrap textarea::placeholder,
  .contact-dropdown-selected-value {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .contact-textarea-wrap {
    padding: 12px 14px !important;
  }

  .contact-textarea-wrap textarea {
    min-height: 90px !important;
    line-height: 20px !important;
  }

  .contact-submit-btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 15px !important;
    padding: 13px 20px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    margin-top: 4px !important;
  }

  .contact-info-outer {
    padding: 10px !important;
    border-radius: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-info-card {
    padding: 20px 16px !important;
    gap: 20px !important;
    border-radius: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-info-row {
    gap: 12px !important;
    width: 100% !important;
    align-items: flex-start !important;
  }

  .contact-info-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }

  .contact-info-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .contact-info-text {
    flex: 1 !important;
    min-width: 0 !important;
    gap: 2px !important;
  }

  .contact-info-label {
    font-size: 12px !important;
    line-height: 18px !important;
  }

  .contact-info-value {
    font-size: 15px !important;
    line-height: 22px !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }

  .footer-top {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .mobile-apps-hero-section,
  .mobile-projects-section,
  .app-why-choose-section,
  .app-services-include-section,
  .app-testimonials-section,
  .faqs-section,
  .cta-section,
  .contact-section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .mobile-apps-hero-title {
    font-size: 28px !important;
    line-height: 36px !important;
    margin-bottom: 8px !important;
  }

  .mobile-apps-card-left {
    padding: 20px 14px !important;
  }

  .mobile-apps-card-heading {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 10px !important;
  }

  .mobile-apps-card-description {
    font-size: 13.5px !important;
    line-height: 22px !important;
    margin-bottom: 16px !important;
  }

  .uiux-hero-list-title {
    font-size: 13.5px !important;
    margin-bottom: 10px !important;
  }

  .uiux-hero-list-item {
    font-size: 13px !important;
    line-height: 20px !important;
    gap: 8px !important;
  }

  .mobile-apps-mockup-image-container {
    height: 220px !important;
    min-height: 0 !important;
    border-radius: 10px !important;
  }

  .mobile-projects-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
  }

  .project-card {
    padding: 10px !important;
    border-radius: 14px !important;
    gap: 8px !important;
  }

  .project-card-image-wrapper {
    height: 280px !important;
    padding-top: 24px !important;
    border-radius: 10px !important;
  }

  .project-card-image-wrapper.full-bleed-wrapper {
    height: auto !important;
    aspect-ratio: 1800 / 980 !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
  }

  .project-card-image-wrapper.full-bleed-wrapper .phone-mockup-wrapper,
  .project-card-image-wrapper.full-bleed-wrapper .card-mockup-wrapper {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .project-card-image-wrapper.full-bleed-wrapper .project-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 10px !important;
    display: block !important;
  }

  .project-card-float-group {
    width: clamp(32px, 10.5%, 40px) !important;
    right: 6px !important;
    bottom: 6px !important;
    gap: 4px !important;
  }

  .project-card-float-btn {
    border-radius: 5px !important;
  }

  .project-card-footer {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 4px 2px 2px 2px !important;
    gap: 8px !important;
  }

  .project-card-title {
    font-size: 16.5px !important;
    line-height: 22px !important;
  }

  .project-card-footer-right {
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    position: relative !important;
  }

  .project-card-tags {
    display: none !important;
  }

  .project-card-view-more {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 6px 13px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .cta-outer-box,
  .faqs-outer-card {
    padding: 6px !important;
    border-radius: 16px !important;
  }

  .cta-inner-box {
    padding: 24px 16px !important;
    gap: 22px !important;
    border-radius: 12px !important;
  }

  .cta-main-heading {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .available-card-inner {
    padding: 18px 14px !important;
  }

  .faq-item-card {
    padding: 14px 14px !important;
    border-radius: 12px !important;
  }

  .faq-question-text {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .faq-answer-text {
    font-size: 13px !important;
    line-height: 20px !important;
  }

  .contact-form-row {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .contact-info-card {
    padding: 20px 14px !important;
  }
}

@media (max-width: 480px) {
  .app-section-heading {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .mobile-apps-hero-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .mobile-apps-card-left {
    padding: 16px 12px !important;
  }

  .mobile-apps-card-heading {
    font-size: 18px !important;
    line-height: 25px !important;
  }

  .mobile-apps-mockup-image-container {
    height: 180px !important;
    min-height: 0 !important;
  }

  .project-card-title {
    font-size: 15.5px !important;
    line-height: 20px !important;
  }

  .cta-main-heading {
    font-size: 20px !important;
    line-height: 27px !important;
  }

  .faqs-main-heading {
    font-size: 22px !important;
    line-height: 28px !important;
  }

  .contact-section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .contact-inner {
    padding: 20px 0 !important;
  }

  .contact-row-intro .contact-heading,
  .contact-heading {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .contact-row-intro .contact-intro-text,
  .contact-intro-text {
    font-size: 13.5px !important;
    line-height: 21px !important;
  }

  .contact-input-wrap {
    padding: 10px 12px !important;
    border-radius: 8px !important;
    gap: 8px !important;
  }

  .contact-field-full .contact-input-wrap:not(.contact-textarea-wrap) {
    height: 44px !important;
  }

  .contact-input-wrap input,
  .contact-input-wrap select,
  .contact-input-wrap textarea,
  .contact-input-wrap input::placeholder,
  .contact-input-wrap textarea::placeholder,
  .contact-dropdown-selected-value {
    font-size: 13.5px !important;
  }

  .contact-submit-btn {
    font-size: 14.5px !important;
    padding: 12px 18px !important;
  }

  .contact-info-outer {
    padding: 8px !important;
    border-radius: 12px !important;
  }

  .contact-info-card {
    padding: 16px 14px !important;
    gap: 16px !important;
  }

  .contact-info-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 7px !important;
  }

  .contact-info-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .contact-info-label {
    font-size: 11.5px !important;
    line-height: 16px !important;
  }

  .contact-info-value {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

/* ==========================================================================
   UI/UX PREVIEW MODAL LIGHTBOX WITH BLURRED BACKDROP & ARROW NAVIGATION
   ========================================================================== */
.uiux-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 23, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
}

.uiux-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.uiux-modal-window {
  position: relative;
  width: 100%;
  max-width: 1120px;
  max-height: 92vh;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.uiux-modal-backdrop.is-active .uiux-modal-window {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.uiux-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #E5E7EB;
  background: #FAFAFA;
  flex-shrink: 0;
}

.uiux-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.uiux-modal-title {
  font-family: Satoshi, 'Inter', sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.uiux-modal-tags {
  display: flex;
  align-items: center;
  gap: 6px;
}

.uiux-modal-tag-pill {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #4B5563;
  background: #E5E7EB;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: lowercase;
}

.uiux-modal-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.uiux-modal-counter {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  background: #F3F4F6;
  padding: 4px 12px;
  border-radius: 8px;
}

.uiux-modal-close-btn {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #374151;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.uiux-modal-close-btn:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  transform: rotate(90deg);
}

/* Modal Body & Image Viewport */
.uiux-modal-body {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 360px;
  max-height: calc(92vh - 160px);
  background: #0B0F19;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.uiux-modal-image-container {
  width: 100%;
  height: 100%;
  max-height: calc(92vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  box-sizing: border-box;
}

.uiux-modal-image {
  max-width: 100%;
  max-height: calc(92vh - 192px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: opacity 0.22s ease, transform 0.22s ease;
  display: block;
}

.uiux-modal-image.is-loading {
  opacity: 0;
  transform: scale(0.98);
}

/* Floating Forward / Backward Navigation Buttons */
.uiux-modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #111827;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.uiux-modal-nav-btn.prev {
  left: 20px;
}

.uiux-modal-nav-btn.next {
  right: 20px;
}

.uiux-modal-nav-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.uiux-modal-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Modal Bottom Thumbnail Strip */
.uiux-modal-thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: #FAFAFA;
  border-top: 1px solid #E5E7EB;
  overflow-x: auto;
  flex-shrink: 0;
}

.uiux-modal-thumb {
  width: 54px;
  height: 38px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  background: #E5E7EB;
  flex-shrink: 0;
  padding: 0;
}

.uiux-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uiux-modal-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.uiux-modal-thumb.active {
  opacity: 1;
  border-color: #4F46E5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
  transform: translateY(-2px);
}

/* Responsive Modal Adjustments */
@media (max-width: 768px) {
  .uiux-modal-backdrop {
    padding: 12px;
  }

  .uiux-modal-window {
    border-radius: 16px;
    max-height: 94vh;
  }

  .uiux-modal-header {
    padding: 12px 16px;
  }

  .uiux-modal-title {
    font-size: 17px;
  }

  .uiux-modal-body {
    min-height: 280px;
  }

  .uiux-modal-nav-btn {
    width: 38px;
    height: 38px;
  }

  .uiux-modal-nav-btn.prev {
    left: 10px;
  }

  .uiux-modal-nav-btn.next {
    right: 10px;
  }

  .uiux-modal-thumb {
    width: 44px;
    height: 32px;
  }
}

/* Hide hover overlays and "Visit the Website" on mobile / touch viewports */
@media (max-width: 960px), (hover: none) {
  .featured-card-hover-veil,
  .hover-veil-content,
  .featured-coverflow-card:hover .featured-card-hover-veil,
  .coverflow-media-frame:hover .featured-card-hover-veil,
  .featured-card-item:hover .featured-card-hover-veil {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

