
    /* === App Download Section === */
    .app-download {
      background: var(--white);
      position: relative;
      overflow: hidden;
      padding: 150px 0;
    }

    .app-download::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c0d5ae' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.4;
      z-index: 1;
    }

    /* Floating background elements for app section */
    .app-download::after {
      content: '';
      position: absolute;
      top: -20%;
      right: -8%;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(192,213,174,0.06) 0%, transparent 70%);
      border-radius: 50%;
      animation: appFloat 14s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes appFloat {
      0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.06; 
      }
      50% { 
        transform: translateY(-60px) rotate(180deg) scale(1.2); 
        opacity: 0.12; 
      }
    }

    /* App Section Container */
    .app-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* App Text Content */
    .app-text {
      position: relative;
      z-index: 3;
    }

    .app-text::before {
      content: '';
      position: absolute;
      top: -30px;
      left: -30px;
      width: 60px;
      height: 60px;
      background: rgba(192,213,174,0.1);
      border-radius: 50%;
      z-index: -1;
    }

    .app-section-badge {
      display: inline-block;
      background: rgba(192,213,174,0.15);
      color: var(--rifle-green);
      padding: 10px 25px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 30px;
      border: 1px solid rgba(192,213,174,0.3);
    }

    .app-text h2 {
      font-family: 'EmotiveType', serif;
      font-size: 3.8rem;
      line-height: 1.2;
      color: var(--rifle-green);
      margin-bottom: 30px;
      position: relative;
    }

    .app-text h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 3px;
      background: var(--light-moss);
      opacity: 0.6;
    }

    .app-text p {
      font-size: 1.2rem;
      line-height: 1.8;
      color: var(--rifle-green);
      margin-bottom: 50px;
      opacity: 0.9;
      max-width: 500px;
    }

    /* App Features Grid */
    .app-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      margin-bottom: 50px;
    }

    .app-feature {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 20px;
      background: rgba(248,249,245,0.6);
      border-radius: 15px;
      border: 1px solid rgba(192,213,174,0.1);
      transition: all 0.4s ease;
    }

    .app-feature:hover {
      background: rgba(192,213,174,0.1);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

    .app-feature-icon {
      width: 40px;
      height: 40px;
      background: var(--light-moss);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .app-feature-icon i {
      color: var(--rifle-green);
      font-size: 1.1rem;
    }

    .app-feature-text {
      font-size: 0.95rem;
      color: var(--rifle-green);
      font-weight: 500;
    }

    /* Premium Download Buttons */
    .download-buttons {
      display: flex;
      gap: 20px;
      margin-top: 40px;
    }

    .download-btn {
      display: flex;
      align-items: center;
      padding: 18px 30px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(192,213,174,0.2);
      border-radius: 15px;
      color: var(--rifle-green);
      text-decoration: none;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
      position: relative;
      overflow: hidden;
    }

    .download-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--light-moss);
      transition: left 0.6s ease;
      z-index: -1;
    }

    .download-btn:hover::before {
      left: 0;
    }

    .download-btn:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(192,213,174,0.2);
      color: var(--rifle-green);
      border-color: var(--light-moss);
    }

    .download-btn i {
      font-size: 2.2rem;
      margin-right: 15px;
      transition: all 0.4s ease;
    }

    .download-btn:hover i {
      transform: scale(1.1);
    }

    .download-btn span {
      display: flex;
      flex-direction: column;
      text-align: left;
      font-size: 0.85rem;
      line-height: 1.3;
    }

    .download-btn span strong {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--rifle-green);
    }

    /* App Image Section */
    .app-image {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
    }

    .app-image::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(192,213,174,0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: phoneGlow 6s ease-in-out infinite;
      z-index: -1;
    }

    @keyframes phoneGlow {
      0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(1); 
      }
      50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1.1); 
      }
    }

    .app-phone-container {
      position: relative;
      perspective: 1200px;
    }

    .app-phone {
      max-width: 320px;
      height: auto;
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
      border-radius: 25px;
      animation: phoneFloat 4s ease-in-out infinite;
    }

    @keyframes phoneFloat {
      0%, 100% { 
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
      }
      50% { 
        transform: translateY(-25px) scale(1.05);
        filter: drop-shadow(0 40px 80px rgba(0,0,0,0.2));
      }
    }

    .app-image:hover .app-phone {
      transform: scale(1.12);
      filter: drop-shadow(0 50px 100px rgba(192,213,174,0.4));
      animation-play-state: paused;
    }

    /* Floating App Icons */
    .app-floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .floating-app-icon {
      position: absolute;
      width: 50px;
      height: 50px;
      background: var(--white);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      animation: floatIcon 8s ease-in-out infinite;
    }

    .floating-app-icon:nth-child(1) {
      top: 15%;
      left: 10%;
      animation-delay: 0s;
    }

    .floating-app-icon:nth-child(2) {
      top: 25%;
      right: 15%;
      animation-delay: 2s;
    }

    .floating-app-icon:nth-child(3) {
      bottom: 30%;
      left: 15%;
      animation-delay: 4s;
    }

    .floating-app-icon:nth-child(4) {
      bottom: 15%;
      right: 10%;
      animation-delay: 6s;
    }

    @keyframes floatIcon {
      0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.3; 
      }
      50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.6; 
      }
    }

    .floating-app-icon i {
      font-size: 1.5rem;
      color: var(--light-moss);
    }

    /* Responsive Design for App Section */
    @media (max-width: 1200px) {
      .app-content {
        gap: 60px;
      }
      
      .app-text h2 {
        font-size: 3.2rem;
      }
    }

    @media (max-width: 992px) {
      .app-content {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
      }
      
      .app-image {
        order: -1;
      }
      
      .app-features {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .app-download {
        padding: 100px 0;
      }
      
      .app-text h2 {
        font-size: 2.5rem;
      }
      
      .app-content {
        gap: 60px;
      }
      
      .download-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
      
      .app-phone {
        max-width: 250px;
      }
    }

    @media (max-width: 576px) {
      .app-text h2 {
        font-size: 2rem;
      }
      
      .app-features {
        gap: 15px;
      }
      
      .app-feature {
        padding: 15px;
      }
    }


    /* === Media Queries === */
    @media (max-width: 1200px) {
      .app-content {
        gap: 50px;
      }
    }

    @media (max-width: 992px) {
      .app-content {
        flex-direction: column;
        text-align: center;
      }

      .app-text {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .download-buttons {
        justify-content: center;
      }

    }

    
    @media (max-width: 576px) {
      .section-title h2 {
        font-size: 2.2rem;
      }

      .download-buttons {
        flex-direction: column;
        align-items: center;
      }
    }