/* Premium Mobile-First Design - Modern, Engaging & Professional */

/* ============================================
   MOBILE NAVIGATION - Premium Sticky Header
   ============================================ */
@media (max-width: 768px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 118, 163, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 4px 0;
    transition: all 0.3s ease;
  }

  .headerContent {
    padding: 0 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .logo {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0076a3 0%, #00b3e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .nav {
    display: none; /* Will be replaced with mobile menu */
  }

  /* Mobile Menu Toggle Button */
  .mobileMenuToggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .mobileMenuToggle span {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0076a3 0%, #00b3e6 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .mobileMenuToggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobileMenuToggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobileMenuToggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile Menu */
  .mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(20, 20, 32, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
  }

  .mobileMenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobileMenu .navLink {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 80%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .mobileMenu .navLink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 118, 163, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .mobileMenu .navLink:active::before {
    left: 100%;
  }

  .mobileMenu .navLink:active {
    background: rgba(0, 118, 163, 0.2);
    transform: scale(0.98);
    border-color: rgba(0, 118, 163, 0.5);
  }

  .mobileMenu .contactButton {
    margin-top: 1rem;
    padding: 16px 32px;
    font-size: 1.25rem;
    width: 80%;
    background: linear-gradient(135deg, #0076a3 0%, #00b3e6 100%);
    box-shadow: 0 8px 24px rgba(0, 118, 163, 0.4);
  }
}

/* ============================================
   PREMIUM HERO SECTION - Mobile
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 118, 163, 0.1) 0%, rgba(0, 179, 230, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 118, 163, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
  }

  .heroContent {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .heroLeft {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 0;
  }

  .heroBadge {
    font-size: 0.85rem;
    padding: 0.625rem 1.25rem;
    margin-bottom: 0;
    align-self: center;
    width: fit-content;
  }

  .title {
    font-size: 2.25rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .heroStats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .heroStat {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .heroStat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0076a3 0%, #00b3e6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .heroStat:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
  }

  .heroStat:active::before {
    transform: scaleX(1);
  }

  .heroStatNumber {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0076a3 0%, #00b3e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .heroStatLabel {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
  }

  .heroRight {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 1rem;
  }

  .enquiryForm {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
    margin: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  .enquiryTitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .enquirySubtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
  }

  .formGroup {
    margin-bottom: 1.25rem;
    width: 100%;
  }

  .formInput,
  .formTextarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transition: all 0.3s ease;
  }

  .formInput:focus,
  .formTextarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 118, 163, 0.2);
  }

  .enquiryButton {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 0.5rem;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 374px) {
  .hero {
    padding: 80px 15px 50px;
  }

  .heroContent {
    padding: 0 15px;
    gap: 2rem;
  }

  .title {
    font-size: 1.875rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 0.95rem;
    padding: 0 5px;
  }

  .heroStats {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .heroStat {
    padding: 1.25rem 0.875rem;
  }

  .heroStatNumber {
    font-size: 1.5rem;
  }

  .heroStatLabel {
    font-size: 0.8rem;
  }

  .enquiryForm {
    padding: 1.5rem 1.25rem;
  }

  .enquiryTitle {
    font-size: 1.35rem;
  }

  .enquirySubtitle {
    font-size: 0.85rem;
  }
}

/* Small Mobile Devices */
@media (min-width: 375px) and (max-width: 479px) {
  .hero {
    padding: 90px 18px 55px;
  }

  .heroContent {
    padding: 0 18px;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}

/* ============================================
   PREMIUM CARDS - Mobile
   ============================================ */
@media (max-width: 768px) {
  .industryCard,
  .serviceCard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .industryCard::before,
  .serviceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0076a3 0%, #00b3e6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .industryCard:active,
  .serviceCard:active {
    transform: translateY(-4px) scale(0.98);
    box-shadow: 0 12px 40px rgba(0, 118, 163, 0.3);
    border-color: rgba(0, 118, 163, 0.4);
  }

  .industryCard:active::before,
  .serviceCard:active::before {
    transform: scaleX(1);
  }

  /* Service Card Click Encouragement */
  .serviceCard {
    cursor: pointer;
  }

  .serviceCard:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 118, 163, 0.5);
  }

  .industryCardTitle,
  .serviceTitle {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
  }

  .industryCardDescription,
  .serviceDescription {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
  }

  .industryIcon,
  .serviceIcon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 118, 163, 0.2) 0%, rgba(0, 179, 230, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    border: 1px solid rgba(0, 118, 163, 0.3);
  }
}

/* ============================================
   PREMIUM SECTIONS - Mobile
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
    position: relative;
  }

  .sectionTitle {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
  }

  .sectionSubtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .industryScrollHint {
    display: block !important;
    text-align: center;
    color: var(--accent-primary);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
    padding: 0.5rem 1rem;
    background: rgba(0, 118, 163, 0.1);
    border-radius: 20px;
    display: inline-block;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.8;
      transform: scale(1.02);
    }
  }

  /* Industries Grid - Horizontal Scrollable on Mobile */
  .industriesGrid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 1.25rem;
    padding: 1rem 20px 2rem;
    margin: 0 -20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 118, 163, 0.5) rgba(255, 255, 255, 0.1);
  }

  .industriesGrid::-webkit-scrollbar {
    height: 6px;
  }

  .industriesGrid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 20px;
  }

  .industriesGrid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0076a3 0%, #00b3e6 100%);
    border-radius: 10px;
  }

  .industriesGrid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #0099cc 0%, #00b3e6 100%);
  }

  .industriesGrid .industryCard {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    min-width: 280px !important;
    scroll-snap-align: start;
    margin-right: 0;
  }

  /* Services Grid - Horizontal Scrollable on Mobile */
  .servicesGrid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 1.25rem;
    padding: 1rem 20px 2rem;
    margin: 0 -20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 118, 163, 0.5) rgba(255, 255, 255, 0.1);
  }

  .servicesGrid::-webkit-scrollbar {
    height: 6px;
  }

  .servicesGrid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 20px;
  }

  .servicesGrid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0076a3 0%, #00b3e6 100%);
    border-radius: 10px;
  }

  .servicesGrid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #0099cc 0%, #00b3e6 100%);
  }

  .servicesGrid .serviceCard {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    min-width: 300px !important;
    scroll-snap-align: start;
    margin-right: 0;
    cursor: pointer;
  }

  .serviceScrollHint {
    display: block !important;
    text-align: center;
    color: var(--accent-primary);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
    padding: 0.5rem 1rem;
    background: rgba(0, 118, 163, 0.1);
    border-radius: 20px;
    display: inline-block;
  }

  .aboutFeatures {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .aboutFeature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
  }

  .aboutFeature:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
  }
}

/* ============================================
   PREMIUM FORMS - Mobile & Tablet
   ============================================ */
@media (max-width: 1024px) {
  .enquiryForm,
  .multiStepForm {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    max-height: none !important;
  }

  .formInput,
  .formSelect,
  .formTextarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
  }

  .formInput:focus,
  .formSelect:focus,
  .formTextarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #0076a3;
    box-shadow: 0 0 0 4px rgba(0, 118, 163, 0.2);
    outline: none;
    transform: translateY(-2px);
  }

  .formNavigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
  }

  /* Premium Mobile Buttons - Unified Style System */
  .contactButton,
  .formButton,
  .enquiryButton,
  .newsletterButton,
  .ctaBannerButton,
  .roiCalculateBtn,
  .roiResetBtn,
  .ctaSectionButton {
    min-height: 48px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.3px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 118, 163, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Primary Button Style */
  .contactButton,
  .formButton.primary,
  .enquiryButton,
  .newsletterButton,
  .ctaBannerButton,
  .roiCalculateBtn,
  .ctaSectionButton.primary {
    background: linear-gradient(135deg, #0076a3 0%, #0099cc 50%, #00b3e6 100%);
    background-size: 200% 200%;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Secondary Button Style */
  .formButton.secondary,
  .roiResetBtn,
  .ctaBannerButton.secondary,
  .ctaSectionButton.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1.5px solid rgba(0, 118, 163, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Shimmer Effect for All Buttons */
  .contactButton::before,
  .formButton::before,
  .enquiryButton::before,
  .newsletterButton::before,
  .ctaBannerButton::before,
  .roiCalculateBtn::before,
  .roiResetBtn::before,
  .ctaSectionButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(255, 255, 255, 0.25) 50%, 
      transparent 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }

  /* Active State - Shimmer Animation */
  .contactButton:active::before,
  .formButton:active::before,
  .enquiryButton:active::before,
  .newsletterButton:active::before,
  .ctaBannerButton:active::before,
  .roiCalculateBtn:active::before,
  .roiResetBtn:active::before,
  .ctaSectionButton:active::before {
    left: 100%;
  }

  /* Primary Button Active States */
  .contactButton:active,
  .formButton.primary:active,
  .enquiryButton:active,
  .newsletterButton:active,
  .ctaBannerButton:active,
  .roiCalculateBtn:active,
  .ctaSectionButton.primary:active {
    transform: scale(0.97) translateY(1px);
    box-shadow: 0 4px 12px rgba(0, 118, 163, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    background: linear-gradient(135deg, #005a7a 0%, #0076a3 50%, #0099cc 100%);
  }

  /* Secondary Button Active States */
  .formButton.secondary:active,
  .roiResetBtn:active,
  .ctaBannerButton.secondary:active,
  .ctaSectionButton.secondary:active {
    transform: scale(0.97) translateY(1px);
    background: rgba(0, 118, 163, 0.15);
    border-color: rgba(0, 118, 163, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }

  /* Form Button Specific Styles */
  .formButton,
  .enquiryButton {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    width: 100%;
  }

  /* ROI Calculator Buttons */
  .roiCalculateBtn,
  .roiResetBtn {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  /* CTA Banner Button */
  .ctaBannerButton {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    padding: 16px 32px;
    font-size: 1.05rem;
  }

  /* Newsletter Button */
  .newsletterButton {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
    margin-top: 0.5rem;
  }

  /* Contact Button in Header */
  .contactButton {
    padding: 6px 18px;
    font-size: 0.9rem;
    min-height: 32px;
  }

  /* Disabled Button States */
  .contactButton:disabled,
  .formButton:disabled,
  .enquiryButton:disabled,
  .newsletterButton:disabled,
  .ctaBannerButton:disabled,
  .roiCalculateBtn:disabled,
  .roiResetBtn:disabled,
  .ctaSectionButton:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  }

  .contactButton:disabled::before,
  .formButton:disabled::before,
  .enquiryButton:disabled::before,
  .newsletterButton:disabled::before,
  .ctaBannerButton:disabled::before,
  .roiCalculateBtn:disabled::before,
  .roiResetBtn:disabled::before,
  .ctaSectionButton:disabled::before {
    display: none;
  }

  /* Button Focus States for Accessibility */
  .contactButton:focus-visible,
  .formButton:focus-visible,
  .enquiryButton:focus-visible,
  .newsletterButton:focus-visible,
  .ctaBannerButton:focus-visible,
  .roiCalculateBtn:focus-visible,
  .roiResetBtn:focus-visible,
  .ctaSectionButton:focus-visible {
    outline: 3px solid rgba(0, 118, 163, 0.5);
    outline-offset: 2px;
    border-radius: 14px;
  }

  /* Enhanced Button Text */
  .contactButton,
  .formButton,
  .enquiryButton,
  .newsletterButton,
  .ctaBannerButton,
  .roiCalculateBtn,
  .roiResetBtn,
  .ctaSectionButton {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  /* Button Loading State */
  .contactButton.loading,
  .formButton.loading,
  .enquiryButton.loading,
  .newsletterButton.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
  }

  .contactButton.loading::after,
  .formButton.loading::after,
  .enquiryButton.loading::after,
  .newsletterButton.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .formProgress {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .stepNumber {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .progressStep.active .stepNumber {
    box-shadow: 0 0 20px rgba(0, 118, 163, 0.5);
  }

  .roiActionButtons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .roiCalculateBtn {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    padding: 1rem 1.5rem;
  }

  .roiResetBtn {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ============================================
   PREMIUM FOOTER - Mobile
   ============================================ */
@media (max-width: 768px) {
  .footer {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 32, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 118, 163, 0.2);
  }

  .footerContent {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 20px;
  }

  .footerSection {
    text-align: center;
  }

  .footerSectionTitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0076a3 0%, #00b3e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* ============================================
   PREMIUM SOCIAL PROOF - Mobile
   ============================================ */
@media (max-width: 768px) {
  .socialProofBanner {
    padding: 2rem 20px;
    background: linear-gradient(135deg, rgba(0, 118, 163, 0.15) 0%, rgba(0, 179, 230, 0.1) 100%);
    border-bottom: 1px solid rgba(0, 118, 163, 0.2);
  }

  .socialProofContent {
    flex-direction: column;
    gap: 1.5rem;
  }

  .socialProofItem {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
  }

  .socialProofItem:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
  }

  .socialProofNumber {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0076a3 0%, #00b3e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* ============================================
   PREMIUM CTA BANNERS - Mobile & Tablet
   ============================================ */
@media (max-width: 1024px) {
  .ctaBanner {
    padding: 2rem 1.5rem;
    border-radius: 24px;
    margin: 3rem 20px 0;
  }

  .ctaBannerContent {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .ctaBannerTitle {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .ctaBannerActions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    flex-wrap: nowrap;
  }

  .ctaBannerButton {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    padding: 16px 28px;
    font-size: 1.05rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .ctaBannerButton.primary {
    background: linear-gradient(135deg, #0076a3 0%, #0099cc 50%, #00b3e6 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .ctaBannerButton.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1.5px solid rgba(0, 118, 163, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .ctaBannerButton.secondary:active {
    background: rgba(0, 118, 163, 0.15);
    border-color: rgba(0, 118, 163, 0.6);
  }

  .ctaBannerButton.link {
    background: transparent;
    color: var(--accent-secondary);
    border: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    box-shadow: none;
  }

  .ctaBannerButton.link:active {
    color: var(--accent-tertiary);
    transform: none;
  }

  .ctaBannerContent {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
  }

  .ctaBannerText {
    width: 100%;
    text-align: center;
  }

  .ctaBannerTitle {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .ctaBannerDescription {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
  }
}

/* ============================================
   TRUST BADGES SECTION - Mobile (2 cards per row)
   ============================================ */
@media (max-width: 768px) {
  .trustBadgesGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .trustBadgeCard {
    padding: 1.5rem 1rem;
    min-height: auto;
  }

  .trustBadgeIcon {
    width: 56px;
    height: 56px;
  }

  .trustBadgeIcon svg {
    width: 28px;
    height: 28px;
  }

  .trustBadgeTitle {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .trustBadgeDescription {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 374px) {
  .trustBadgesGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .trustBadgeCard {
    padding: 1.25rem 0.75rem;
  }

  .trustBadgeIcon {
    width: 48px;
    height: 48px;
  }

  .trustBadgeIcon svg {
    width: 24px;
    height: 24px;
  }

  .trustBadgeTitle {
    font-size: 0.9rem;
  }

  .trustBadgeDescription {
    font-size: 0.75rem;
  }
}

/* ============================================
   PREMIUM ANIMATIONS - Mobile
   ============================================ */
@media (max-width: 768px) {
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .industryCard,
  .serviceCard,
  .aboutFeature {
    animation: slideInUp 0.6s ease backwards;
  }

  .industryCard:nth-child(1),
  .serviceCard:nth-child(1),
  .aboutFeature:nth-child(1) {
    animation-delay: 0.1s;
  }

  .industryCard:nth-child(2),
  .serviceCard:nth-child(2),
  .aboutFeature:nth-child(2) {
    animation-delay: 0.2s;
  }

  .industryCard:nth-child(3),
  .serviceCard:nth-child(3),
  .aboutFeature:nth-child(3) {
    animation-delay: 0.3s;
  }

  .industryCard:nth-child(4),
  .serviceCard:nth-child(4),
  .aboutFeature:nth-child(4) {
    animation-delay: 0.4s;
  }
}

/* ============================================
   PREMIUM TOUCH INTERACTIONS
   ============================================ */
@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: rgba(0, 118, 163, 0.2);
  }

  .industryCard:active,
  .serviceCard:active,
  .aboutFeature:active,
  .formButton:active,
  .enquiryButton:active {
    transform: scale(0.97);
  }

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================
   PREMIUM EXIT INTENT POPUP - Mobile
   ============================================ */
@media (max-width: 768px) {
  .exitIntentPopup {
    padding: 20px;
  }

  .exitIntentContent {
    max-width: 100%;
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .exitIntentClose {
    right: 1rem;
    top: 1rem;
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   PREMIUM NEWSLETTER - Mobile & Tablet
   ============================================ */
@media (max-width: 1024px) {
  .newsletterSection {
    padding: 50px 20px 30px;
    background: linear-gradient(135deg, rgba(0, 118, 163, 0.1) 0%, rgba(0, 179, 230, 0.05) 100%);
    margin-bottom: 0;
  }

  .newsletterContainer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    text-align: center;
  }

  .newsletterContent {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .newsletterBadge {
    margin: 0 auto 1rem;
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
  }

  .newsletterHeading {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
  }

  .newsletterDescription {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .newsletterBenefits {
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.25rem 0;
    text-align: left;
    max-width: 100%;
  }

  .newsletterBenefits li {
    font-size: 0.9rem;
    line-height: 1.6;
    justify-content: flex-start;
  }

  .newsletterSubtext {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
  }

  .newsletterForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .newsletterInput {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 1rem;
    margin: 0;
  }

  .humanVerification {
    width: 100%;
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .verificationLabel {
    display: block;
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
  }

  .verificationInput {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
  }

  /* Newsletter Button already defined in unified button system */

  .footerMain {
    padding: 40px 20px 50px;
    margin-top: 0;
  }

  .footerContent {
    padding: 0;
  }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .newsletterSection {
    padding: 40px 15px 25px;
    margin-bottom: 0;
  }

  .newsletterContainer {
    gap: 2rem;
  }

  .newsletterHeading {
    font-size: 1.35rem;
  }

  .newsletterDescription {
    font-size: 0.9rem;
  }

  .newsletterBenefits li {
    font-size: 0.85rem;
  }

  .newsletterInput,
  .verificationInput {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .newsletterButton {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

