@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;
}

/* 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;
  }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE ENHANCEMENTS (APP-DEVELOPMENT PAGE)
   ========================================================================== */
@media (max-width: 960px) {
  .app-section-heading {
    font-size: 32px !important;
    line-height: 40px !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: 16px !important;
    padding-right: 16px !important;
  }

  .mobile-apps-features-row {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .mobile-apps-feature-item {
    width: 100% !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

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

  .project-card {
    padding: 12px !important;
    border-radius: 16px !important;
  }

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

  .phone-mockup-wrapper {
    width: 65% !important;
  }

  .project-card-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 4px !important;
  }

  .project-card-footer-right {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .app-why-card {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

  .app-service-include-card {
    padding: 18px 16px !important;
    border-radius: 12px !important;
  }
}

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

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

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

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

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

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

/* Left Align 'Why Businesses Choose Our App Development' and 'What You Get With Our App Development Services' content in Mobile View */
@media (max-width: 768px) {
  .app-why-choose-section .app-section-heading,
  .app-services-include-section .app-section-heading,
  body.app-dev-page .app-why-choose-section .app-section-heading,
  body.app-dev-page .app-services-include-section .app-section-heading {
    text-align: left !important;
  }

  .app-why-choose-grid,
  .app-services-include-grid {
    text-align: left !important;
  }

  .app-why-card,
  .app-service-include-card {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .app-why-title,
  .app-why-text,
  .app-service-include-title,
  .app-service-include-text {
    text-align: left !important;
  }
}




