/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  /* Full screen sections on tablet */
  .section {
    min-height: 100vh;
    padding: 4rem 0;
  }

  .hero {
    min-height: 100vh;
    padding: 5rem 0 2rem;
  }

  .hero-container {
    padding: 0 1.5rem;
  }
  
  .hero-grid {
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-card {
    padding: 1.75rem;
  }
  
  .brand-text {
    font-size: 3rem;
  }
  
  .subtitle-text {
    font-size: 1.375rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-card-title {
    font-size: 1rem;
  }
  
  .hero-actions-center {
    gap: 1.25rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .quick-stat .stat-number {
    font-size: 1.375rem;
  }
  
  .quick-stat .stat-label {
    font-size: 0.7rem;
  }
  
  .scroll-down-btn {
    bottom: 30px;
  }
  
  .chevron {
    width: 24px;
    height: 7px;
  }
  
  /* Optimized gaming elements for tablets - smaller and fewer */
  .gaming-element {
    transform-origin: center;
    font-size: 14px;
  }
  
  .gaming-element.xbox-a,
  .gaming-element.xbox-b,
  .gaming-element.xbox-x,
  .gaming-element.xbox-y {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .gaming-element.xbox-lt,
  .gaming-element.xbox-rt {
    width: 32px;
    height: 20px;
    font-size: 10px;
  }
  
  .gaming-element.ps-triangle,
  .gaming-element.ps-circle,
  .gaming-element.ps-square,
  .gaming-element.ps-cross {
    width: 28px;
    height: 28px;
  }
  
  .gaming-element.ps-l2,
  .gaming-element.ps-r2 {
    width: 30px;
    height: 18px;
    font-size: 8px;
  }
  
  /* Reduce circuit board activity on tablets */
  .circuit-board {
    opacity: 0.15;
  }
  
  .circuit-line:nth-child(n+6) {
    display: none;
  }
  
  .circuit-node:nth-child(n+8) {
    display: none;
  }
  
  /* Simplify hero background on tablets */
  .hero::after {
    opacity: 0.4;
  }
  
  /* Hide some floating orbs on tablets */
  .orb-hero-3,
  .hero-floating-orb:nth-child(n+3) {
    display: none;
  }
  
  .orb-hero-1 {
    width: 100px;
    height: 100px;
    opacity: 0.04;
  }
  
  .orb-hero-2 {
    width: 80px;
    height: 80px;
    opacity: 0.03;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .services-grid::before {
    display: none; /* Hide horizontal connection line on tablet */
  }

  .service-card {
    padding: 1.75rem;
    border-radius: 16px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .service-highlight {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }

  .features-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature,
  .process-card {
    padding: 1.5rem;
  }

  .feature {
    border-radius: 16px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .feature-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }

  .feature::after {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }

  .process-grid::before {
    display: none; /* Remove progress dots */
  }

  .process-grid::after {
    display: none; /* Hide progress bar on mobile */
  }

  .process-step::after {
    display: none; /* Hide old progress indicators */
  }

  .process-step {
    animation-delay: 0.1s !important; /* Faster load on tablet */
  }

  .process-step:nth-child(1) { animation-delay: 0.1s !important; }
  .process-step:nth-child(2) { animation-delay: 0.2s !important; }
  .process-step:nth-child(3) { animation-delay: 0.3s !important; }
  .process-step:nth-child(4) { animation-delay: 0.4s !important; }

  .process-card {
    border-radius: 16px;
  }

  .process-number {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .process-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .process-description {
    font-size: 0.9rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .cta {
    padding: 4rem 2rem;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-modern {
    padding: 3rem 0;
  }

  .cta-main-card {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }

  .cta-title-modern {
    font-size: 2.25rem;
  }

  .cta-subtitle-modern {
    font-size: 1rem;
  }

  .cta-stats-mini {
    gap: 1.5rem;
  }

  .cta-action-cards {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .cta-action-card {
    padding: 1.75rem;
  }

  /* About Us Section Tablet */
  .about-simple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .about-simple-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }

  .about-simple-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 1.25rem;
  }

  .about-simple-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .about-simple-text {
    font-size: 0.875rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  /* Full screen sections on mobile */
  .section {
    min-height: 100vh;
    padding: 3rem 0;
  }

  .hero {
    min-height: 100vh;
    padding: 4rem 0 2rem;
  }

  .hero-container {
    padding: 0 1rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto 2rem auto;
  }
  
  /* Stack cards vertically on mobile */
  .hero-brand-card,
  .hero-info-card {
    grid-column: 1;
  }
  
  /* Hide the info cards on mobile */
  .hero-info-card {
    display: none;
  }
  
  .hero-card {
    padding: 1.5rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.375rem 0.875rem;
  }
  
  .brand-text {
    font-size: 2.5rem;
  }
  
  .subtitle-text {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-card-title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-actions-center {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-quick-stats {
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }
  
  .quick-stat {
    padding: 0.875rem 0.5rem;
  }
  
  .quick-stat .stat-number {
    font-size: 1.25rem;
  }
  
  .quick-stat .stat-label {
    font-size: 0.7rem;
  }
  
  .hero-highlight {
    font-size: 0.8rem;
    padding: 0.625rem 0.875rem;
  }
  
  .scroll-down-btn {
    bottom: 20px;
  }
  
  .chevron {
    width: 20px;
    height: 6px;
  }
  
  /* Mobile-optimized gaming elements - fewer and smaller */
  .gaming-element {
    font-size: 12px;
    opacity: 0.8;
  }
  
  .gaming-element.xbox-a,
  .gaming-element.xbox-b,
  .gaming-element.xbox-x,
  .gaming-element.xbox-y {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  
  .gaming-element.xbox-lt,
  .gaming-element.xbox-rt {
    width: 28px;
    height: 16px;
    font-size: 8px;
  }
  
  .gaming-element.ps-triangle,
  .gaming-element.ps-circle,
  .gaming-element.ps-square,
  .gaming-element.ps-cross {
    width: 24px;
    height: 24px;
  }
  
  .gaming-element.ps-l2,
  .gaming-element.ps-r2 {
    width: 26px;
    height: 16px;
    font-size: 7px;
  }
  
  /* No circuit board on mobile */
  .circuit-board {
    display: none;
  }
  
  /* Simplified hero background on mobile */
  .hero::after {
    display: none;
  }
  
  /* Hide floating orbs on mobile */
  .hero-floating-orb {
    display: none;
  }
  
  .orb-hero-1 {
    display: none;
  }

  /* CTA Button Responsive Styles */
  .cta-ultra-primary {
    min-width: 200px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .cta-ultra-secondary {
    min-width: 180px;
    padding: 0.875rem 1.75rem;
  }
  
  /* Navigation */
  .navbar {
    left: 1rem;
    right: 1rem;
    top: 1rem;
  }
  
  /* Mobil sticky állapot - DISABLED */
  /* .navbar.sticky {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  } */
  
  /* Tablet sticky content padding - DISABLED */
  /* .navbar.sticky .nav-content {
    padding: 0.75rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
  } */
  
  .nav-content {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
  }
  
  .nav-menu-1,
  .nav-menu-2,
  .nav-menu-3 {
    display: none;
  }
  
  .logo {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1) !important;
    -webkit-transform: translate(-50%, -50%) scale(1) !important;
    transition: none !important;
  }

  .logo:hover {
    transform: translate(-50%, -50%) scale(1) !important;
    -webkit-transform: translate(-50%, -50%) scale(1) !important;
  }

  .logo::before {
    transition: none !important;
    clip-path: inset(0 100% 0 0) !important;
  }

  .logo:hover::before {
    clip-path: inset(0 100% 0 0) !important;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dashboard-menu-btn {
    display: flex; /* Show dashboard menu button on mobile/tablet */
  }
  
  /* Mobile menu display rules are handled in components.css */
  
  .mobile-menu-overlay {
    display: block;
  }
  
  /* Dashboard menu display rules are handled in components.css */
  
  .dashboard-menu-overlay {
    display: block; /* Ensure the dashboard overlay is displayed */
  }

  /* Dashboard Mobile Layout */
  .dashboard-content {
    padding: 1rem;
  }

  .dashboard-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dashboard-main-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dashboard-card {
    padding: 1rem;
  }

  .dashboard-card h3 {
    font-size: 1.125rem;
  }

  .dashboard-card p {
    font-size: 0.875rem;
  }

  /* Auth Pages Mobile Layout */
  .auth-container {
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .auth-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.5rem;
  }

  .auth-form {
    width: 100%;
  }

  .auth-form .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .auth-form input {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.9rem;
  }

  .auth-form .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
  }

  .auth-links {
    text-align: center;
    margin-top: 1.5rem;
  }

  .auth-links p {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}

/* Tablet and Small Desktop Auth Pages */
@media (max-width: 1024px) {
  .auth-container {
    padding: 1.5rem;
  }

  .auth-card {
    max-width: 500px;
    padding: 2rem;
  }

  .auth-form .grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .auth-form input {
    padding: 1rem;
    font-size: 1rem;
  }

  .auth-form .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Mobile Auth Pages */
@media (max-width: 768px) {
  .auth-container {
    padding: 1rem;
  }

  .auth-card {
    max-width: 100%;
    padding: 1.5rem;
    margin: 0;
  }

  .auth-form .grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .auth-form input {
    padding: 0.875rem;
    font-size: 0.9rem;
  }

  .auth-form .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .auth-links {
    margin-top: 1.5rem;
  }

  .auth-links p {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}

/* Tablet Dashboard Layout */
@media (max-width: 1024px) {
  .dashboard-content {
    padding: 1.5rem;
  }

  .dashboard-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .dashboard-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dashboard-card {
    padding: 1.5rem;
  }
}

/* Desktop Dashboard Layout */
@media (min-width: 1025px) {
  .dashboard-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .dashboard-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .dashboard-card {
    padding: 2rem;
  }
}

/* Profile Page Mobile Layout */
@media (max-width: 768px) {
  .profile-container {
    padding: 1rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .profile-card {
    padding: 1rem;
  }

  .profile-card h2 {
    font-size: 1.25rem;
  }

  .profile-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-phone-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-address-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-address-grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-billing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-billing-grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-password-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-button-group {
    flex-direction: column;
    gap: 1rem;
  }

  .profile-button-group button {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Profile Page Tablet Layout */
@media (max-width: 1024px) and (min-width: 769px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .profile-phone-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .profile-address-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .profile-address-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .profile-billing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .profile-billing-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
}

/* Extra Small Mobile - Very small screens */
@media (max-width: 480px) {
  .auth-container {
    padding: 0.75rem;
  }

  .auth-card {
    padding: 1.25rem;
  }

  .auth-form .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .auth-form input {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .auth-form .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .auth-links p {
    font-size: 0.8rem;
  }
}

/* Mobile Navbar and Menu */
@media (max-width: 768px) {
  .profile-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .profile-dropdown {
    min-width: 160px;
  }

  .login-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }

  .logout-btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.7rem;
  }
  
  /* Typography */
  .section-title {
    font-size: 1.75rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  /* Grids */
  .features-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .feature,
  .testimonial {
    padding: 1.5rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .services-grid::before,
  .services-grid::after {
    display: none; /* Hide connection lines on mobile */
  }

  .service-card {
    padding: 1.5rem;
    border-radius: 14px;
  }

  .service-card::after {
    display: none; /* Hide connection dots on mobile */
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 1.3rem;
  }

  .service-icon-container::before {
    display: none; /* Disable orbit animation on mobile */
  }

  .service-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }

  .service-highlight {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .features-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .feature,
  .process-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }

  .feature-title,
  .process-title {
    font-size: 0.95rem;
  }

  .feature-description,
  .process-description {
    font-size: 0.75rem;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .testimonial {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .testimonial-name {
    font-size: 0.9rem;
  }

  .testimonial-role {
    font-size: 0.75rem;
  }

  .cta {
    padding: 3rem 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }

  .cta-actions {
    gap: 0.75rem;
  }

  .cta-actions .btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }

  .cta-modern {
    padding: 2.5rem 0;
  }

  .cta-main-card {
    padding: 2rem 1.25rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 16px;
  }

  .cta-title-modern {
    font-size: 2rem;
    line-height: 1.1;
  }

  .cta-subtitle-modern {
    font-size: 0.95rem;
    margin: 0 auto 1.5rem;
  }

  .cta-stats-mini {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .cta-stat-number {
    font-size: 1.25rem;
  }

  .cta-stat-label {
    font-size: 0.75rem;
  }

  .cta-action-cards {
    gap: 1rem;
  }

  .cta-action-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  /* About Us Section Mobile */
  .about-simple-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .about-simple-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .about-simple-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .about-simple-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .about-simple-text {
    font-size: 0.8rem;
  }

  /* Simple Footer Responsive */
  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-content > :last-child {
    grid-column: 1;
    justify-self: start;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }

  .footer-company-description {
    font-size: 0.875rem;
  }

  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-social-links a {
    width: 32px;
    height: 32px;
    font-size: 1.125rem;
  }

  .footer-contact > div {
    font-size: 0.875rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  /* Full screen sections on small mobile */
  .section {
    min-height: 100vh;
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 100vh;
    padding: 3rem 0 2rem;
  }
  
  .hero-container {
    padding: 0 0.75rem;
  }
  
  .hero-grid {
    gap: 1.25rem;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
  }
  
  .hero-card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .brand-text {
    font-size: 2rem;
    line-height: 0.95;
  }
  
  .subtitle-text {
    font-size: 1.125rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-card-title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .hero-actions-center {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 12px;
  }
  
  .hero-quick-stats {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .quick-stat {
    padding: 0.75rem 0.375rem;
  }
  
  .quick-stat .stat-number {
    font-size: 1.125rem;
  }
  
  .quick-stat .stat-label {
    font-size: 0.65rem;
  }
  
  .hero-highlight {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
  
  .scroll-down-btn {
    bottom: 15px;
  }
  
  .chevron {
    width: 18px;
    height: 5px;
  }
  
  /* Hide floating orbs completely on small mobile */
  .hero-floating-orb {
    display: none;
  }
  
  /* Minimal hero background on small mobile */
  .hero::before {
    opacity: 0.5;
  }
  
  /* Container */
  .container {
    padding: 0 1rem;
  }
  
  /* Sections */
  .section {
    padding: 4rem 0;
  }
  
  /* Typography */
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  /* Cards */
  .service-card,
  .feature,
  .testimonial,
  .process-card {
    padding: 1.25rem;
  }
  
  /* Service icons */
  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
  
  /* Process numbers */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Testimonial avatars */
  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* CTA */
  .cta {
    padding: 4rem 0;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-white,
  .btn-outline-white {
    width: 100%;
    max-width: 280px;
  }

  /* Services */
  .services-grid {
    margin-top: 1.5rem;
  }

  .service-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.125rem;
  }

  .service-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .service-highlight {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .features-grid,
  .process-grid,
  .testimonials-grid {
    margin-top: 1.5rem;
  }

  .features-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .platform-text {
    font-size: 2rem;
    word-break: break-word;
    flex-wrap: wrap;
  }

  .process-grid::before {
    display: none; /* Hide progress line on mobile */
  }

  .process-grid::after {
    display: none; /* Hide progress bar on mobile */
  }

  .process-step::after {
    display: none; /* Hide old progress indicators */
  }

  .process-step {
    opacity: 1 !important; /* Show immediately on mobile */
    transform: none !important;
    animation: none !important;
  }

  .process-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .process-number {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .process-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .process-description {
    font-size: 0.85rem;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
  }

  .testimonial-name {
    font-size: 0.85rem;
  }

  .testimonial-role {
    font-size: 0.7rem;
  }

  .cta {
    padding: 2.5rem 1.25rem;
    border-radius: 14px;
    margin: 1.5rem 0;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 0.85rem;
  }

  .cta-actions .btn {
    font-size: 0.85rem;
    padding: 0.8rem 1.25rem;
  }

  .cta-modern {
    padding: 3rem 0;
  }

  .cta-main-card {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }

  .cta-title-modern {
    font-size: 2.25rem;
  }

  .cta-subtitle-modern {
    font-size: 1rem;
  }

  .cta-stats-mini {
    gap: 1.5rem;
  }

  .cta-action-cards {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .cta-action-card {
    padding: 1.75rem;
  }

  /* About Us Section Small Mobile */
  .about-simple-grid {
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .about-simple-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .about-simple-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 0.875rem;
  }

  .about-simple-title {
    font-size: 0.9rem;
    margin-bottom: 0.375rem;
  }

  .about-simple-text {
    font-size: 0.75rem;
  }

  /* Simple Footer Small Mobile */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .footer-content > :last-child {
    grid-column: 1;
    justify-self: start;
  }

  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .footer-company-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-social-label {
    font-size: 0.8rem;
  }

  .footer-social-links a {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-contact > div {
    font-size: 0.8rem;
    gap: 0.375rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .brand-text {
    font-size: 1.75rem;
  }
  
  .subtitle-text {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .service-card,
  .feature,
  .testimonial,
  .process-card {
    padding: 1rem;
  }
}

/* Dashboard Responsive Breakpoints */

/* Weather Widget - Hide below 1500px */
@media (max-width: 1500px) {
  .weather-widget {
    display: none !important;
  }
}

/* Stats Grid - 2x2 below 1400px */
@media (max-width: 1400px) {
  .dashboard-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}

/* Tablet Navbar Layout - 769px to 1300px */
@media (max-width: 1300px) and (min-width: 769px) {
  /* Dashboard Sidebar */
  .dashboard-sidebar {
    display: none !important;
  }
  
  /* Navbar Tablet Mode */
  .navbar {
    position: fixed !important;
    top: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
    z-index: 1000 !important;
  }
  
  .navbar .nav-menu-1,
  .navbar .nav-menu-2,
  .navbar .nav-menu-3 {
    display: none !important;
  }
  
  .navbar .nav-menu-4 {
    display: none !important; /* Hide profile menu on tablet */
  }
  
  .navbar .mobile-menu-btn {
    display: flex !important;
  }
  
  .navbar .dashboard-menu-btn {
    display: flex !important;
  }
  
  .navbar .logo {
    order: 1 !important;
  }
  
  .navbar .mobile-menu-btn {
    order: 2 !important;
  }
  
  .navbar .dashboard-menu-btn {
    order: 3 !important;
  }
}

/* Mobile Navbar Layout - below 768px */
@media (max-width: 768px) {
  /* Dashboard Sidebar */
  .dashboard-sidebar {
    display: none !important;
  }
  
  /* Navbar Mobile Mode */
  .navbar {
    position: fixed !important;
    top: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
    z-index: 1000 !important;
  }
  
  .navbar .nav-menu-1,
  .navbar .nav-menu-2,
  .navbar .nav-menu-3 {
    display: none !important;
  }
  
  .navbar .nav-menu-4 {
    display: none !important; /* Hide profile menu on mobile */
  }
  
  .navbar .mobile-menu-btn {
    display: flex !important;
  }
  
  .navbar .dashboard-menu-btn {
    display: flex !important;
  }
  
  .navbar .logo {
    order: 1 !important;
  }
  
  .navbar .mobile-menu-btn {
    order: 2 !important;
  }
  
  .navbar .dashboard-menu-btn {
    order: 3 !important;
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-container {
    max-width: 1400px;
    padding: 0 6rem;
  }
  
  .hero-grid {
    max-width: 1000px;
    gap: 3.5rem;
    margin: 0 auto 3.5rem auto;
  }
  
  .brand-text {
    font-size: 4rem;
  }
  
  .subtitle-text {
    font-size: 1.75rem;
  }
  
  .hero-actions-center {
    gap: 2rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 1.25rem 2.25rem;
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .cta-title {
    font-size: 3rem;
  }
  
  /* Services Grid for large screens */
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .scroll-down-btn {
    display: none;
  }
  
  .hero-container {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
}

/* High DPI Displays */
@media (min-resolution: 192dpi) {
  .icon::before {
    transform: scale(0.5);
    transform-origin: 0 0;
    width: 200%;
    height: 200%;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-down-btn {
    animation: none;
  }
  
  .chevron {
    animation: none;
    opacity: 0.7;
  }
  
  .gaming-element {
    animation: none;
  }
  
  .circuit-line,
  .circuit-node {
    animation: none;
  }
  
  .floating-orb {
    animation: none;
  }
}

.feature,
.process-card,
.testimonial {
  padding: 1rem;
  border-radius: 10px;
}

.feature {
  border-radius: 14px;
  min-height: auto;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.75rem;
}

.feature::after {
  width: 20px;
  height: 20px;
  font-size: 1rem;
  top: 0.75rem;
  right: 0.75rem;
}

/* Ultra Modern CTA Mobile - Light Theme */
.cta-section-ultra {
  padding: 4rem 0;
}

.cta-ultra-container {
  padding: 0 1rem;
}

.cta-ultra-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.cta-ultra-icon .icon {
  font-size: 3rem;
}

.cta-ultra-title {
  font-size: 2.75rem;
  line-height: 1.1;
}

.cta-ultra-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

.cta-ultra-actions {
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Remove global CTA button styles - they should be in sections.css */
/* .cta-ultra-primary {
  min-width: 280px;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

.cta-ultra-secondary {
  min-width: 240px;
  padding: 1rem 2rem;
} */

.cta-ultra-guarantee {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.4;
}

/* Dark Mode Responsive Adjustments */
[data-theme="dark"] .hero-card {
  background: #0000000d;
  border: 1px solid hsla(0, 0%, 100%, .2);;
}

[data-theme="dark"] .feature,
[data-theme="dark"] .process-card,
[data-theme="dark"] .testimonial {
  background: #2626260d;
    border: 1px solid hsla(0, 0%, 100%, .2);
}

[data-theme="dark"] .circuit-board {
  opacity: 0.1;
}

@media (max-width: 768px) {
  [data-theme="dark"] .hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  [data-theme="dark"] .feature,
  [data-theme="dark"] .process-card,
  [data-theme="dark"] .testimonial {
    background: #2626260d;
    border: 1px solid hsla(0, 0%, 100%, .2);
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Disable problematic animations on mobile */
  .hero::before,
  .hero::after {
    animation: none;
  }
  
  .hero-card {
    animation: none;
    transform: none;
  }
  
  .gaming-element {
    animation: none !important;
    transition: none !important;
  }
  
  .circuit-line,
  .circuit-node {
    animation: none !important;
  }
  
  /* Hardware acceleration for smooth scrolling */
  .hero {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: auto;
  }
  
  .hero-container {
    transform: translateZ(0);
  }
  
  /* Disable floating animations on mobile */
  @keyframes cardFloat {
    0%, 100% { transform: none; }
  }
  
  @keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
  }
  
  @keyframes gridMove {
    0%, 100% { transform: none; }
  }
}

/* Footer responsive */
/* Removed conflicting footer styles - now handled in footer.css */

/* Scroll-Triggered Animations - Performance Optimized */

/* Base animation classes with GPU acceleration */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000px;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Animations - GPU Optimized */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
  will-change: opacity;
}

.fade-in.animate-in {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.fade-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.fade-in-down.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.fade-in-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.fade-in-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale Animations - GPU Optimized */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.scale-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

.scale-in-up {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.scale-in-up.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Rotate Animations - GPU Optimized */
.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.rotate-in.animate-in {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.rotate-in-left {
  opacity: 0;
  transform: translateX(-50px) rotate(-15deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.rotate-in-left.animate-in {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.rotate-in-right {
  opacity: 0;
  transform: translateX(50px) rotate(15deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.rotate-in-right.animate-in {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

/* Slide Animations - GPU Optimized */
.slide-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-down {
  opacity: 0;
  transform: translateY(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Bounce Animations - GPU Optimized */
.bounce-in {
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.bounce-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

.bounce-in-up {
  opacity: 0;
  transform: translateY(60px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.bounce-in-up.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Flip Animations - GPU Optimized */
.flip-in-x {
  opacity: 0;
  transform: perspective(400px) rotateX(90deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.flip-in-x.animate-in {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
}

.flip-in-y {
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.flip-in-y.animate-in {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg);
}

/* Zoom Animations - GPU Optimized */
.zoom-in {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.zoom-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

.zoom-in-up {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.zoom-in-up.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Elastic Animations - GPU Optimized */
.elastic-in {
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.elastic-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

.elastic-in-up {
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.elastic-in-up.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger Animations for Grid Items - GPU Optimized */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.stagger-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for staggered animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }

/* Duration classes */
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }
.duration-700 { transition-duration: 0.7s; }
.duration-1000 { transition-duration: 1s; }

/* Performance optimizations for animations */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .fade-in,
  .fade-in-up,
  .fade-in-down,
  .fade-in-left,
  .fade-in-right,
  .scale-in,
  .scale-in-up,
  .rotate-in,
  .rotate-in-left,
  .rotate-in-right,
  .slide-in-up,
  .slide-in-down,
  .slide-in-left,
  .slide-in-right,
  .bounce-in,
  .bounce-in-up,
  .flip-in-x,
  .flip-in-y,
  .zoom-in,
  .zoom-in-up,
  .elastic-in,
  .elastic-in-up,
  .stagger-item {
    transition: opacity 0.3s ease-out !important;
    transform: none !important;
    will-change: auto !important;
  }
  
  .animate-in {
    opacity: 1 !important;
  }
}

/* High-performance animation container */
.animation-container {
  contain: layout style paint;
  will-change: transform;
}

/* Optimize for mobile devices */
@media (max-width: 768px) {
  .animate-on-scroll,
  .fade-in-up,
  .fade-in-down,
  .fade-in-left,
  .fade-in-right,
  .scale-in-up,
  .rotate-in-left,
  .rotate-in-right,
  .slide-in-up,
  .slide-in-down,
  .slide-in-left,
  .slide-in-right,
  .bounce-in-up,
  .flip-in-x,
  .flip-in-y,
  .zoom-in-up,
  .elastic-in-up {
    transition-duration: 0.6s;
  }
} 

/* Page Transition Styles */
.layout {
  position: relative;
  min-height: 100vh;
}

.page-content {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Remove the conflicting navbar styles from here - they should be in components.css */
/* The navbar positioning is handled by the original CSS */

/* Smooth page transitions */
.page-content {
  will-change: transform, opacity;
}

/* Optimize animations for better performance */
.page-content * {
  will-change: auto;
}

/* Ensure proper stacking context */
.page-content > * {
  position: relative;
  z-index: 1;
}

/* Prevent layout shift during transitions */
.page-content {
  transform-origin: center top;
}

/* Remove padding-top from pages that already have it */
.page-content .hero {
  padding-top: 0;
}

/* Keep about-page padding-top as defined in about.css */ 
/* Performance optimizations */
.floating-shape,
.organic-shape,
.smoke-element,
.smoke-wisp,
.star-element,
.energy-element,
.grid-dots-pattern {
  will-change: transform, opacity;
}

/* Background Animations for Section Backgrounds */

/* Services Section Background Animations */
@keyframes floatShape1 {
  0%, 100% { 
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 0.1;
  }
  25% { 
    transform: translate3d(20px, -15px, 0) rotate(90deg) scale(1.1);
    opacity: 0.15;
  }
  50% { 
    transform: translate3d(-10px, -25px, 0) rotate(180deg) scale(0.9);
    opacity: 0.08;
  }
  75% { 
    transform: translate3d(-20px, -10px, 0) rotate(270deg) scale(1.05);
    opacity: 0.12;
  }
}

@keyframes floatShape2 {
  0%, 100% { 
    transform: translate3d(0, 0, 0) rotate(45deg) scale(1);
    opacity: 0.08;
  }
  33% { 
    transform: translate3d(-25px, -20px, 0) rotate(135deg) scale(1.2);
    opacity: 0.12;
  }
  66% { 
    transform: translate3d(15px, -30px, 0) rotate(225deg) scale(0.8);
    opacity: 0.06;
  }
}

@keyframes floatShape3 {
  0%, 100% { 
    transform: translate3d(0, 0, 0) rotate(-30deg) scale(1);
    opacity: 0.06;
  }
  50% { 
    transform: translate3d(30px, -20px, 0) rotate(150deg) scale(1.15);
    opacity: 0.1;
  }
}

@keyframes gridMove {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(50px, 50px, 0); }
}

/* About Section Background Animations */
@keyframes waveFlow {
  0%, 100% {
    transform: translate3d(-100%, 0, 0);
    opacity: 0.05;
  }
  50% {
    transform: translate3d(0%, -20px, 0);
    opacity: 0.1;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.03;
    transform: scale(1);
  }
  50% {
    opacity: 0.08;
    transform: scale(1.1);
  }
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Process Section Background Animations */
@keyframes flowLines {
  0% {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    transform: translate3d(100%, -50px, 0);
    opacity: 0;
  }
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.05;
    transform: scale(1);
  }
  50% {
    opacity: 0.15;
    transform: scale(1.3);
  }
}

/* Testimonials Section Background Animations */
@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.05;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 0.15;
    transform: scale(1.2) rotate(90deg);
  }
  50% {
    opacity: 0.08;
    transform: scale(0.8) rotate(180deg);
  }
  75% {
    opacity: 0.12;
    transform: scale(1.1) rotate(270deg);
  }
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  33% {
    transform: translate3d(10px, -15px, 0);
  }
  66% {
    transform: translate3d(-10px, -5px, 0);
  }
}

/* CTA Section Background Animations */
@keyframes energyPulse {
  0%, 100% {
    opacity: 0.05;
    transform: scale(1);
  }
  50% {
    opacity: 0.12;
    transform: scale(1.2);
  }
}

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 0.1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* --- Tech/Gamer Neon Circuit Animációk a Services szekcióhoz --- */
@keyframes circuitLineAnim {
  0%   { opacity: 0.13; filter: drop-shadow(0 0 8px var(--primary)); }
  50%  { opacity: 0.28; filter: drop-shadow(0 0 24px var(--primary)); }
  100% { opacity: 0.13; filter: drop-shadow(0 0 8px var(--primary)); }
}

@keyframes circuitNodePulse {
  0%, 100% { opacity: 0.18; box-shadow: 0 0 16px 4px var(--primary); }
  50%      { opacity: 0.38; box-shadow: 0 0 32px 8px var(--accent); }
}

[data-theme="dark"] .services-background-tech .circuit-line-bg {
  opacity: 0.22;
  filter: drop-shadow(0 0 16px var(--primary));
}
[data-theme="dark"] .services-background-tech .circuit-node-bg {
  opacity: 0.28;
  box-shadow: 0 0 32px 8px var(--accent);
}
[data-theme="dark"] .services-background-tech .circuit-grid-bg {
  background-image:
    repeating-linear-gradient(90deg, rgba(0,255,128,0.06) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(180deg, rgba(0,255,255,0.06) 0 1px, transparent 1px 40px);
  opacity: 0.22;
}

/* Dark mode adjustments */
[data-theme="dark"] .floating-shape {
  opacity: 0.15;
}

[data-theme="dark"] .radial-overlay {
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

[data-theme="dark"] .wave-element {
  opacity: 0.08;
}

[data-theme="dark"] .pulse-element {
  opacity: 0.1;
}

[data-theme="dark"] .flow-line {
  opacity: 0.08;
}

[data-theme="dark"] .star-element {
  opacity: 0.12;
}

[data-theme="dark"] .energy-element {
  opacity: 0.1;
} 

/* --- Ultra-Subtle Minimal Animations for Services Section --- */
@keyframes subtleFloat {
  0%, 100% { 
    transform: translate3d(0, 0, 0); 
    opacity: 0.15; 
  }
  25% { 
    transform: translate3d(15px, -10px, 0); 
    opacity: 0.25; 
  }
  50% { 
    transform: translate3d(-5px, -20px, 0); 
    opacity: 0.2; 
  }
  75% { 
    transform: translate3d(-10px, -5px, 0); 
    opacity: 0.18; 
  }
}

/* Light mode adjustments for better visibility */
.services-background-subtle .subtle-gradient {
  background: linear-gradient(135deg, rgba(46, 189, 168, 0.12) 0%, rgba(29, 209, 161, 0.08) 100%);
}

.services-background-subtle .subtle-particle {
  opacity: 0.2;
}

.services-background-subtle .subtle-radial {
  background: radial-gradient(circle at 30% 20%, rgba(46, 189, 168, 0.08) 0%, transparent 70%);
}

/* Dark mode adjustments for subtle backgrounds */
[data-theme="dark"] .services-background-subtle .subtle-gradient {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}

[data-theme="dark"] .services-background-subtle .subtle-particle {
  opacity: 0.2;
}

[data-theme="dark"] .services-background-subtle .subtle-radial {
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
} 

/* --- About Section Sphere Animations --- */
@keyframes aboutSphereFloat2 {
  0%, 100% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.12;
    filter: blur(22px);
    box-shadow: 0 0 35px rgba(0, 87, 255, 0.25);
  }
  33% { 
    transform: translate3d(-60px, -40px, 0) scale(1.2);
    opacity: 0.18;
    filter: blur(25px);
    box-shadow: 0 0 45px rgba(0, 87, 255, 0.35);
  }
  66% { 
    transform: translate3d(-30px, -70px, 0) scale(0.8);
    opacity: 0.08;
    filter: blur(20px);
    box-shadow: 0 0 25px rgba(0, 87, 255, 0.2);
  }
}

@keyframes aboutSphereFloat3 {
  0%, 100% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.1;
    filter: blur(28px);
    box-shadow: 0 0 45px rgba(107, 190, 85, 0.2);
  }
  25% { 
    transform: translate3d(70px, -25px, 0) scale(1.25);
    opacity: 0.15;
    filter: blur(32px);
    box-shadow: 0 0 55px rgba(107, 190, 85, 0.3);
  }
  50% { 
    transform: translate3d(40px, -50px, 0) scale(0.75);
    opacity: 0.06;
    filter: blur(24px);
    box-shadow: 0 0 35px rgba(107, 190, 85, 0.15);
  }
  75% { 
    transform: translate3d(20px, -40px, 0) scale(1.12);
    opacity: 0.12;
    filter: blur(30px);
    box-shadow: 0 0 48px rgba(107, 190, 85, 0.25);
  }
}

/* Light mode adjustments for About sphere section */
.about-background-spheres .about-sphere-gradient {
  background: linear-gradient(45deg, rgba(107, 190, 85, 0.04) 0%, rgba(0, 87, 255, 0.03) 50%, rgba(107, 190, 85, 0.015) 100%);
}

.about-background-spheres .about-sphere {
  opacity: 0.12;
}

.about-background-spheres .about-sphere-radial.radial-1 {
  background: radial-gradient(circle, rgba(107, 190, 85, 0.03) 0%, transparent 70%);
}

.about-background-spheres .about-sphere-radial.radial-2 {
  background: radial-gradient(circle, rgba(0, 87, 255, 0.02) 0%, transparent 70%);
}

/* Dark mode adjustments for About sphere section */
[data-theme="dark"] .about-background-spheres .about-sphere-gradient {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.005) 100%);
}

[data-theme="dark"] .about-background-spheres .about-sphere {
  opacity: 0.12;
}

[data-theme="dark"] .about-background-spheres .about-sphere-radial.radial-1 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.01) 0%, transparent 70%);
}

[data-theme="dark"] .about-background-spheres .about-sphere-radial.radial-2 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.008) 0%, transparent 70%);
} 

/* --- Process Section Smoke Animations --- */
@keyframes smokeRise1 {
  0% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.12;
    filter: blur(20px);
    box-shadow: 0 0 50px rgba(46, 189, 168, 0.3);
  }
  25% { 
    transform: translate3d(30px, -200px, 0) scale(1.3);
    opacity: 0.18;
    filter: blur(25px);
    box-shadow: 0 0 60px rgba(46, 189, 168, 0.4);
  }
  50% { 
    transform: translate3d(-20px, -400px, 0) scale(1.6);
    opacity: 0.12;
    filter: blur(30px);
    box-shadow: 0 0 70px rgba(46, 189, 168, 0.3);
  }
  75% { 
    transform: translate3d(40px, -600px, 0) scale(1.9);
    opacity: 0.06;
    filter: blur(35px);
    box-shadow: 0 0 80px rgba(46, 189, 168, 0.2);
  }
  100% { 
    transform: translate3d(-30px, -800px, 0) scale(2.2);
    opacity: 0;
    filter: blur(40px);
    box-shadow: 0 0 90px rgba(46, 189, 168, 0.1);
  }
}

@keyframes smokeRise2 {
  0% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.1;
    filter: blur(18px);
    box-shadow: 0 0 40px rgba(29, 209, 161, 0.25);
  }
  30% { 
    transform: translate3d(-25px, -180px, 0) scale(1.4);
    opacity: 0.15;
    filter: blur(22px);
    box-shadow: 0 0 50px rgba(29, 209, 161, 0.35);
  }
  60% { 
    transform: translate3d(35px, -360px, 0) scale(1.7);
    opacity: 0.1;
    filter: blur(28px);
    box-shadow: 0 0 60px rgba(29, 209, 161, 0.25);
  }
  100% { 
    transform: translate3d(-15px, -540px, 0) scale(2.0);
    opacity: 0;
    filter: blur(32px);
    box-shadow: 0 0 70px rgba(29, 209, 161, 0.1);
  }
}

@keyframes smokeRise3 {
  0% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.08;
    filter: blur(15px);
    box-shadow: 0 0 35px rgba(46, 189, 168, 0.2);
  }
  40% { 
    transform: translate3d(20px, -120px, 0) scale(1.35);
    opacity: 0.12;
    filter: blur(20px);
    box-shadow: 0 0 45px rgba(46, 189, 168, 0.3);
  }
  80% { 
    transform: translate3d(-30px, -240px, 0) scale(1.7);
    opacity: 0.06;
    filter: blur(25px);
    box-shadow: 0 0 55px rgba(46, 189, 168, 0.2);
  }
  100% { 
    transform: translate3d(25px, -360px, 0) scale(2.0);
    opacity: 0;
    filter: blur(30px);
    box-shadow: 0 0 65px rgba(46, 189, 168, 0.1);
  }
}

@keyframes smokeWisp1 {
  0% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.08;
    filter: blur(12px);
  }
  50% { 
    transform: translate3d(25px, -100px, 0) scale(1.4);
    opacity: 0.12;
    filter: blur(16px);
  }
  100% { 
    transform: translate3d(-20px, -200px, 0) scale(1.8);
    opacity: 0;
    filter: blur(20px);
  }
}

@keyframes smokeWisp2 {
  0% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.06;
    filter: blur(10px);
  }
  60% { 
    transform: translate3d(-30px, -80px, 0) scale(1.5);
    opacity: 0.1;
    filter: blur(14px);
  }
  100% { 
    transform: translate3d(35px, -160px, 0) scale(1.9);
    opacity: 0;
    filter: blur(18px);
  }
}

@keyframes smokeWisp3 {
  0% { 
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.05;
    filter: blur(8px);
  }
  70% { 
    transform: translate3d(15px, -60px, 0) scale(1.3);
    opacity: 0.08;
    filter: blur(12px);
  }
  100% { 
    transform: translate3d(-25px, -120px, 0) scale(1.6);
    opacity: 0;
    filter: blur(16px);
  }
}

/* Light mode adjustments for Process smoke section */
.process-background-smoke .process-smoke-gradient {
  background: linear-gradient(180deg, rgba(46, 189, 168, 0.02) 0%, rgba(29, 209, 161, 0.015) 50%, transparent 100%);
}

.process-background-smoke .smoke-element {
  opacity: 0.12;
}

.process-background-smoke .smoke-wisp {
  opacity: 0.08;
}

.process-background-smoke .process-smoke-radial.radial-1 {
  background: radial-gradient(circle, rgba(46, 189, 168, 0.02) 0%, transparent 70%);
}

.process-background-smoke .process-smoke-radial.radial-2 {
  background: radial-gradient(circle, rgba(29, 209, 161, 0.015) 0%, transparent 70%);
}

/* Dark mode adjustments for Process smoke section */
[data-theme="dark"] .process-background-smoke .process-smoke-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.008) 50%, transparent 100%);
}

[data-theme="dark"] .process-background-smoke .smoke-element {
  opacity: 0.12;
}

[data-theme="dark"] .process-background-smoke .smoke-wisp {
  opacity: 0.08;
}

[data-theme="dark"] .process-background-smoke .process-smoke-radial.radial-1 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.008) 0%, transparent 70%);
}

[data-theme="dark"] .process-smoke-radial.radial-2 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.006) 0%, transparent 70%);
} 

/* --- CTA Section Grid Flow Animations --- */
@keyframes gridFlowDiagonal {
  0% {
    background-position: 0px 0px, 60px 60px;
    opacity: 0.15;
  }
  25% {
    background-position: -30px -30px, 30px 30px;
    opacity: 0.2;
  }
  50% {
    background-position: -60px -60px, 0px 0px;
    opacity: 0.15;
  }
  75% {
    background-position: -90px -90px, -30px -30px;
    opacity: 0.2;
  }
  100% {
    background-position: -120px -120px, -60px -60px;
    opacity: 0.15;
  }
}

/* Light mode adjustments for CTA grid section */
.cta-background .grid-dots-pattern {
  opacity: 0.15;
}

/* Dark mode adjustments for CTA grid section */
[data-theme="dark"] .cta-background {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.062) 0%, rgba(255, 255, 255, 0.041) 50%, rgba(255, 255, 255, 0.055) 100%) !important;
}

[data-theme="dark"] .cta-background .grid-dots-pattern {
  opacity: 0.15;
} 
