 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Arial', sans-serif;
     background-color: #f0f4f8;
     color: #333;
 }

 /* Header */
 header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     padding: 2rem 3rem 0 3rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
     background: none;
     box-shadow: none;
 }

 .logo {
     height: 38px;
     width: auto;
     display: flex;
     align-items: center;
 }

 nav {
     display: flex;
     align-items: center;
     gap: 2.5rem;
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 2.5rem;
 }

 .nav-links a {
     text-decoration: none;
     color: #111;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 15px;
     font-weight: 600;
     letter-spacing: 0.01em;
     transition: color 0.2s;
 }

 .nav-links a:hover {
     color: #1e3a8a;
 }

 .start-btn {
     background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
     color: #fff;
     padding: 0.75rem 1.75rem;
     border: none;
     border-radius: 0;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 15px;
     font-weight: 600;
     letter-spacing: 0.01em;
     cursor: pointer;
     margin-left: 2rem;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     text-decoration: none;
     display: inline-block;
     box-shadow: 0 4px 20px rgba(241, 97, 69, 0.3);
     position: relative;
     overflow: hidden;
 }

 .start-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s;
 }

 .start-btn:hover::before {
     left: 100%;
 }

 .start-btn:hover {
     background: linear-gradient(135deg, #e55a3d 0%, #7c3aed 100%);
     transform: translateY(-2px);
     box-shadow: 0 8px 30px rgba(241, 97, 69, 0.4);
 }

 /* Main Content */
 .hero-section {
     height: 50vh;
     background-color: #f0f4f8;
     display: flex;
     align-items: flex-end;
     padding: 0 4rem;
     margin-top: 110px;
     position: relative;
 }

 .hero-text {
     max-width: 700px;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 50px;
     font-weight: 400;
     line-height: 60px;
     color: #111;
     position: relative;
 }

 .hero-arrow {
     margin-top: 2.5rem;
     display: flex;
     align-items: center;
     justify-content: flex-start;
 }

 /* Video Section */
 .video-section {
     width: 100%;
     overflow: hidden;
 }

 .video-container {
     width: 100%;
     position: relative;
 }

 .video-container video {
     width: 100%;
     display: block;
 }

 /* Index.php Clients Slider Section - Specific Styles */
.clients-section {
    padding: 20px 0;
    background: white;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
}

.clients-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1e293b;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.clients-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
    cursor: grab;
}

.clients-track:active {
    cursor: grabbing;
}

.client-item {
    flex: 0 0 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0%);
}

 .slider-controls {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin-top: 2rem;
 }

 .slider-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: #ddd;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 .slider-dot.active {
     background-color: #1e3a8a;
 }

   /* Hamburger Menu */
  .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1002;
  }
 
  .hamburger span {
      width: 25px;
      height: 3px;
      background: #111;
      margin: 3px 0;
      transition: 0.3s;
      border-radius: 2px;
  }
 
  .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
  }
 
  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }
 
  .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
  }
 
  /* Mobile Menu */
  .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      z-index: 1001;
      padding-top: 100px;
  }
 
  .mobile-menu.active {
      display: block;
  }
 
  .mobile-nav-links {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
  }
 
  .mobile-nav-links li {
      margin: 2rem 0;
  }
 
  .mobile-nav-links a {
     text-decoration: none;
     color: #111;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 18px;
     font-weight: 600;
     letter-spacing: 0.01em;
     transition: all 0.3s ease;
     display: block;
     padding: 15px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.1);
 }

 .mobile-nav-links a:hover {
     color: #1e3a8a;
     transform: translateX(10px);
 }

 .mobile-start-btn {
     background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
     color: #fff;
     padding: 12px 24px;
     border: none;
     border-radius: 0;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 16px;
     font-weight: 600;
     letter-spacing: 0.01em;
     cursor: pointer;
     margin-top: 20px;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     text-decoration: none;
     display: inline-block;
     box-shadow: 0 4px 20px rgba(241, 97, 69, 0.3);
     position: relative;
     overflow: hidden;
 }

 .mobile-start-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s;
 }

 .mobile-start-btn:hover::before {
     left: 100%;
 }

 .mobile-start-btn:hover {
     background: linear-gradient(135deg, #e55a3d 0%, #7c3aed 100%);
     transform: translateY(-2px);
     box-shadow: 0 8px 30px rgba(241, 97, 69, 0.4);
 }
 
  /* Responsive Design */
  @media (max-width: 768px) {
      header {
          padding: 1rem 1rem 0 1rem;
      }
 
      .nav-links {
          display: none;
      }
 
      .start-btn {
          display: none;
      }
 
      .hamburger {
          display: flex;
      }
 
      .hero-section {
          padding: 0 1rem;
          text-align: center;
      }
 
      .hero-text {
          font-size: 32px;
          line-height: 38px;
      }
 
      .clients-section {
          padding: 2rem 1rem;
      }
 
      .clients-title {
          font-size: 28px;
      }
 
      .client-item {
          flex: 0 0 180px;
          height: 110px;
      }
  }

 .examples-section {
     background: #f0f4f8;
     padding: 5rem 0 4rem 0;
 }

 .examples-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .examples-title {
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 2.5rem;
     font-weight: 600;
     text-align: center;
     margin-bottom: 2.5rem;
     letter-spacing: -1px;
 }

 .examples-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem;
 }

 .example-item iframe {
     width: 100%;
     height: 350px;
     border-radius: 16px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
     background: #fff;
 }

 @media (max-width: 600px) {
     .examples-title {
         font-size: 1.5rem;
     }

     .example-item iframe {
         height: 220px;
     }
 }

 .examples-btn-row {
     display: flex;
     justify-content: center;
     margin-top: 2.5rem;
 }

 .examples-btn {
     background: #111;
     color: #fff;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 999px;
     padding: 0.8rem 2.2rem;
     text-decoration: none;
     transition: background 0.2s;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
 }

 .examples-btn:hover {
     background: #1e3a8a;
 }

 .vtour-section {
     background: #fff;
     padding: 5rem 0 4rem 0;
 }

 .vtour-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .vtour-title {
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 2.5rem;
     font-weight: 600;
     text-align: center;
     margin-bottom: 2.5rem;
     letter-spacing: -1px;
 }

 .vtour-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem;
 }

 .vtour-item {
     background: #f0f4f8;
     border-radius: 16px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     text-align: center;
     transition: transform 0.2s;
 }

 .vtour-item:hover {
     transform: translateY(-6px) scale(1.03);
     box-shadow: 0 8px 32px rgba(30, 58, 138, 0.10);
 }

 .vtour-item img {
     width: 100%;
     height: auto;
     object-fit: contain;
     display: block;
 }

 .vtour-caption {
     display: block;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 1.1rem;
     font-weight: 500;
     color: #222;
     padding: 1.2rem 0 1.2rem 0;
 }

 @media (max-width: 600px) {
     .vtour-title {
         font-size: 1.5rem;
     }

     .vtour-item img {
         height: auto;
     }
 }

 .cta-section-dark {
     background: #0a1120;
     color: #fff;
     padding: 5rem 0 4rem 0;
 }

 .cta-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     gap: 3rem;
     align-items: flex-start;
     padding: 0 2rem;
 }

 .cta-left {
     flex: 1 1 320px;
     min-width: 320px;
     max-width: 400px;
 }

 .cta-headline {
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     line-height: 1.1;
 }

 .cta-desc {
     font-size: 1.1rem;
     margin-bottom: 2.5rem;
     color: #e0e6f0;
 }

 .cta-btn {
     background: #fff;
     color: #0a1120;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 1.1rem;
     font-weight: 700;
     border-radius: 999px;
     padding: 0.8rem 2.2rem;
     text-decoration: none;
     transition: background 0.2s, color 0.2s;
     display: inline-block;
     border: none;
 }

 .cta-btn:hover {
     background: #1e3a8a;
     color: #fff;
 }

 .cta-right {
     flex: 2 1 480px;
     min-width: 320px;
 }

 .cta-cols {
     display: flex;
     gap: 2.5rem;
     flex-wrap: wrap;
 }

 .cta-col {
     flex: 1 1 220px;
     min-width: 220px;
     background: rgba(255, 255, 255, 0.03);
     border-radius: 12px;
     padding: 2rem 1.5rem;
     margin-bottom: 1.5rem;
 }

 .cta-col h3 {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 1.2rem;
     color: #fff;
 }

 .cta-col ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .cta-col li {
     font-size: 1.05rem;
     margin-bottom: 1.1rem;
     color: #e0e6f0;
     position: relative;
     padding-left: 1.5rem;
 }

 .cta-col li:before {
     content: "•";
     color: #fff;
     position: absolute;
     left: 0;
     font-size: 1.2rem;
     top: 0.1rem;
 }

 /* Footer */
 .footer-dark {
     background: #0a1120;
     color: #fff;
     padding: 4rem 0 2rem 0;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
     align-items: flex-start;
     padding: 0 2rem;
 }

 .footer-left {
     flex: 1 1 320px;
     min-width: 220px;
 }

 .footer-big {
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 3.2rem;
     font-weight: 700;
     line-height: 1.05;
     color: #fff;
     letter-spacing: -2px;
 }

 .footer-center {
     flex: 1 1 320px;
     min-width: 220px;
     text-align: left;
 }

 .footer-title {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 1.2rem;
     color: #fff;
 }

 .footer-btn {
     background: #fff;
     color: #0a1120;
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 1rem;
     font-weight: 700;
     border-radius: 999px;
     padding: 0.6rem 1.6rem;
     text-decoration: none;
     transition: background 0.2s, color 0.2s;
     display: inline-block;
     border: none;
     margin-bottom: 1.5rem;
     margin-top: 0.5rem;
 }

 .footer-btn:hover {
     background: #1e3a8a;
     color: #fff;
 }

 .footer-arrow {
     font-size: 1.2em;
     margin-left: 0.5em;
     vertical-align: middle;
 }

 .footer-contact {
     font-size: 1.05rem;
     color: #e0e6f0;
     margin-bottom: 1.2rem;
 }

 .footer-right {
     flex: 1 1 220px;
     min-width: 180px;
     text-align: left;
 }

 .footer-socials {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
     margin-top: 0.5rem;
 }

 .footer-socials a {
     color: #fff;
     text-decoration: none;
     font-size: 1.05rem;
     transition: color 0.2s;
 }

 .footer-socials a:hover {
     color: #1e3a8a;
 }

 @media (max-width: 900px) {

     .cta-container,
     .footer-container {
         flex-direction: column;
         gap: 2.5rem;
     }

     .cta-left,
     .cta-right,
     .footer-left,
     .footer-center,
     .footer-right {
         max-width: 100%;
     }
 }

 @media (max-width: 600px) {

     .cta-headline,
     .footer-big {
         font-size: 2rem;
     }

     .cta-col {
         padding: 1.2rem 0.7rem;
     }

     .cta-section-dark,
     .footer-dark {
         padding-left: 0;
         padding-right: 0;
     }
 }

 .true-section-dark {
     background: #0a1120;
     color: #fff;
     padding: 4rem 0 3rem 0;
     text-align: center;
 }

 .true-container {
     max-width: 900px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 .true-title {
     font-family: 'Inter', 'Aktiv Grotesk', sans-serif;
     font-size: 2.3rem;
     font-weight: 700;
     margin-bottom: 1.2rem;
     letter-spacing: -1px;
 }

 .true-subtitle {
     font-size: 1.2rem;
     color: #e0e6f0;
     margin-bottom: 2.5rem;
 }

 .true-stats-row {
     display: flex;
     justify-content: center;
     gap: 3rem;
     flex-wrap: wrap;
 }

 .true-stat {
     min-width: 180px;
     margin-bottom: 2rem;
 }

 .true-stat-number {
     font-size: 3rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 0.7rem;
     letter-spacing: -2px;
 }

 .true-stat-label {
     font-size: 1.1rem;
     color: #e0e6f0;
 }

 @media (max-width: 700px) {
     .true-stats-row {
         flex-direction: column;
         gap: 1.5rem;
     }

     .true-stat {
         min-width: 0;
     }
 }


   /* Main Form Container */
  .form-container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 2rem 2rem;
      text-align: center;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      color: #1e3a8a;
      min-height: 100vh;
      height: 100%;
  }

 .form-content {
     max-width: 600px;
     width: 100%;
 }

 .form-title {
     font-size: 1.7rem;
     font-weight: 400;
     margin-bottom: 1rem;
     margin-top: 2rem;
     line-height: 1.2;
 }

   .form-divider {
      width: 60px;
      height: 2px;
      background: #1e3a8a;
      margin: 2rem auto;
  }

 .question-container {
     margin-bottom: 3rem;
 }

 .question-number {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 1rem;
     opacity: 0.9;
 }

 .question-text {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 1rem;
     line-height: 1.4;
 }

 .question-hint {
     font-size: 0.9rem;
     opacity: 0.8;
     margin-bottom: 2rem;
 }

 /* Form Elements */
 .form-group {
     margin-bottom: 2rem;
 }

 .radio-group {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     margin-bottom: 2rem;
 }

   .radio-option {
      display: flex;
      align-items: center;
      padding: 1rem 1.5rem;
      border: 2px solid #1e3a8a;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      background: transparent;
  }
 
  .radio-option:hover {
      background: rgba(30, 58, 138, 0.1);
  }

 .radio-option input[type="radio"] {
     margin-right: 1rem;
     transform: scale(1.2);
 }

 .radio-option input[type="checkbox"] {
     margin-right: 1rem;
     transform: scale(1.2);
 }

   .text-input {
      width: 100%;
      padding: 1rem 1.5rem;
      border: 2px solid #1e3a8a;
      border-radius: 8px;
      background: transparent;
      color: #1e3a8a;
      font-size: 1rem;
      font-family: inherit;
  }
 
  .text-input::placeholder {
      color: rgba(30, 58, 138, 0.7);
  }
 
  .text-input:focus {
      outline: none;
      background: rgba(30, 58, 138, 0.1);
  }

   .textarea-input {
      width: 100%;
      padding: 1rem 1.5rem;
      border: 2px solid #1e3a8a;
      border-radius: 8px;
      background: transparent;
      color: #1e3a8a;
      font-size: 1rem;
      font-family: inherit;
      min-height: 120px;
      resize: vertical;
  }
 
  .textarea-input::placeholder {
      color: rgba(30, 58, 138, 0.7);
  }
 
  .textarea-input:focus {
      outline: none;
      background: rgba(30, 58, 138, 0.1);
  }

 /* Navigation Buttons */
 .form-navigation {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 3rem;
 }

   .nav-btn {
      background: transparent;
      border: 2px solid #1e3a8a;
      color: #1e3a8a;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
  }
 
  .nav-btn:hover {
      background: #1e3a8a;
      color: white;
  }
 
  .nav-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
  }
 
  .nav-btn:disabled:hover {
      background: transparent;
      color: #1e3a8a;
  }
 
  .ok-btn {
      background: #1e3a8a;
      color: white;
      border: 2px solid #1e3a8a;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
  }
 
  .ok-btn:hover {
      background: #1e40af;
  }

 .keyboard-hint {
     font-size: 0.8rem;
     opacity: 0.7;
     margin-left: 1rem;
 }

 /* Progress Bar */
 .progress-container {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: rgba(30, 58, 138, 0.2);
     z-index: 1001;
 }

 .progress-bar {
     height: 100%;
     background: #1e3a8a;
     transition: width 0.3s ease;
 }

         .powered-by {
             background: white;
             color: #333;
             padding: 0.5rem 1rem;
             border-radius: 4px;
             font-size: 0.8rem;
             font-weight: 600;
         }

                  @media (max-width: 768px) {
                     
        
                      .form-title {
                          font-size: 1.3rem;
                      }
        
                      .question-text {
                          font-size: 1.3rem;
                      }
        
                      .form-navigation {
                          flex-direction: column;
                          gap: 1rem;
                      }
        
                      .keyboard-hint {
                          display: none;
                      }
                  }
        
                  /* Hidden form steps */
                  .form-step {
                      display: none;
                  }
        
                  .form-step.active {
                      display: block;
                  }

/* Essential styles from old style.css for gsv.php compatibility */

/* Grid System */
.grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.grid.masonry {
    display: block;
}

.grid.no-space {
    margin: 0;
}

/* Column System */
.column-1, .column-2, .column-3, .column-4, .column-5, .column-6, 
.column-7, .column-8, .column-9, .column-10, .column-11, .column-12 {
    padding: 0 15px;
    box-sizing: border-box;
}

.column-1 { width: 8.333333%; }
.column-2 { width: 16.666667%; }
.column-3 { width: 25%; }
.column-4 { width: 33.333333%; }
.column-5 { width: 41.666667%; }
.column-6 { width: 50%; }
.column-7 { width: 58.333333%; }
.column-8 { width: 66.666667%; }
.column-9 { width: 75%; }
.column-10 { width: 83.333333%; }
.column-11 { width: 91.666667%; }
.column-12 { width: 100%; }

/* Responsive columns */
@media screen and (max-width: 1024px) {
    .column-tablet-1 { width: 8.333333%; }
    .column-tablet-2 { width: 16.666667%; }
    .column-tablet-3 { width: 25%; }
    .column-tablet-4 { width: 33.333333%; }
    .column-tablet-5 { width: 41.666667%; }
    .column-tablet-6 { width: 50%; }
    .column-tablet-7 { width: 58.333333%; }
    .column-tablet-8 { width: 66.666667%; }
    .column-tablet-9 { width: 75%; }
    .column-tablet-10 { width: 83.333333%; }
    .column-tablet-11 { width: 91.666667%; }
    .column-tablet-12 { width: 100%; }
}

@media screen and (max-width: 850px) {
    .column-mobile-1 { width: 8.333333%; }
    .column-mobile-2 { width: 16.666667%; }
    .column-mobile-3 { width: 25%; }
    .column-mobile-4 { width: 33.333333%; }
    .column-mobile-5 { width: 41.666667%; }
    .column-mobile-6 { width: 50%; }
    .column-mobile-7 { width: 58.333333%; }
    .column-mobile-8 { width: 66.666667%; }
    .column-mobile-9 { width: 75%; }
    .column-mobile-10 { width: 83.333333%; }
    .column-mobile-11 { width: 91.666667%; }
    .column-mobile-12 { width: 100%; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Sizes */
.section-size-1 { padding: 20px 0; }
.section-size-2 { padding: 40px 0; }
.section-size-3 { padding: 60px 0; }
.section-size-4 { padding: 80px 0; }
.section-size-5 { padding: 100px 0; }
.section-size-6 { padding: 120px 0; }

/* Padding and Spacing */
.pad-1 { padding: 10px; }
.pad-2 { padding: 20px; }
.pad-3 { padding: 30px; }
.pad-4 { padding: 40px; }
.pad-5 { padding: 50px; }
.pad-6 { padding: 60px; }

.space-1 { margin: 10px 0; }
.space-2 { margin: 20px 0; }
.space-3 { margin: 30px 0; }
.space-4 { margin: 40px 0; }
.space-5 { margin: 50px 0; }
.space-6 { margin: 60px 0; }

/* Background Colors */
.lighter-bg { background-color: #f8f9fa; }
.light-bg { background-color: #e9ecef; }
.grey-bg { background-color: #6c757d; }
.black-bg { background-color: #000; }

/* Text Colors */
.light-text, .light-text * { color: #fff; }
.grey-text, .grey-text * { color: #6c757d; }
.black-text, .black-text * { color: #000; }

/* Alignment */
.centered { text-align: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Button Styles */
.button {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid currentColor;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button:hover {
    background: currentColor;
    color: #fff;
}

.button25.link {
    padding: 0;
    color: #95969c;
}

.button25 {
border-color: #1d1e20;
    border-width: 0;
    color: #1d1e20;
    padding: .4rem .75rem;
    display: inline-block;
    vertical-align: top;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: color .3s, padding .6s, font-size .3s;
    font-weight: 400;
    font-size: 1rem;
    font-family: "hk-nova", serif;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    border-bottom: 1px solid;
    text-transform: capitalize;
    background: white;
}

.button25:hover {
    
}


/* Thumb/Content Boxes */
.thumb {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Stagger animation for multiple cards */
.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }
.tour-card:nth-child(5) { animation-delay: 0.5s; }
.tour-card:nth-child(6) { animation-delay: 0.6s; }

/* Modern Hero Section */
.modern-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(248, 250, 252, 0.6) 100%);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-text-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  animation: badgeFloat 3s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.title-line {
  display: block;
  margin-bottom: 8px;
}

.title-line.highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #475569;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
  color: white;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(241, 97, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(241, 97, 69, 0.4);
  background: linear-gradient(135deg, #e55a3d 0%, #7c3aed 100%);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 0;
  border: 1px solid rgba(241, 97, 69, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #f16145;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(241, 97, 69, 0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(241, 97, 69, 0.5);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Animations */
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-hero-section {
    min-height: 90vh;
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .hero-cta {
    gap: 20px;
  }
  
  .hero-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .hero-stats {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 12px;
  }
}

/* Opacity Classes */
.opacity-1 { opacity: 0.1; }
.opacity-2 { opacity: 0.2; }
.opacity-3 { opacity: 0.3; }
.opacity-4 { opacity: 0.4; }
.opacity-5 { opacity: 0.5; }
.opacity-6 { opacity: 0.6; }
.opacity-7 { opacity: 0.7; }
.opacity-8 { opacity: 0.8; }
.opacity-9 { opacity: 0.9; }
.opacity-10 { opacity: 1; }

/* Masonry Grid */
.grid.masonry {
    column-count: 3;
    column-gap: 20px;
}

.grid.masonry .grid-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .grid.masonry {
        column-count: 2;
    }
}

@media screen and (max-width: 850px) {
    .grid.masonry {
        column-count: 1;
    }
}

/* Width Classes */
.width-5 { max-width: 500px; margin: 0 auto; }

/* Responsive iframe */
.embed-responsive-item {
    width: 100%;
    height: auto;
    border: none;
}

/* Image styling */
.image img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .section-size-1 { padding: 15px 0; }
    .section-size-2 { padding: 30px 0; }
    .section-size-3 { padding: 45px 0; }
    .section-size-4 { padding: 60px 0; }
    .section-size-5 { padding: 75px 0; }
    .section-size-6 { padding: 90px 0; }
    
    .pad-1 { padding: 8px; }
    .pad-2 { padding: 15px; }
    .pad-3 { padding: 20px; }
    .pad-4 { padding: 25px; }
    .pad-5 { padding: 30px; }
    .pad-6 { padding: 35px; }
    
    .thumb {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Grid Filters */
ul.grid-filters {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.grid-filters a {
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.5rem .75rem !important;
  font-family: "hk-nova", serif;
  font-size: .65rem;
}

ul.grid-filters a:before, ul.grid-filters a:after {
  display: none;
}

ul.grid-filters li {
  display: inline-block;
}

ul.grid-filters li:first-child a {
  padding-left: 0 !important;
}

ul.grid-filters li:last-child a {
  padding-right: 0 !important;
}

/* Background image styling */
img.background {
    object-fit: cover;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

img.background+* {
    z-index: 1;
    position: relative;
}

div.background {
    position: absolute;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: -1;
}

div.background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 850px) {
  ul.grid-filters {
    padding: 1rem 0;
    margin: 1rem 0;
    position: relative;
    cursor: pointer;
  }
  ul.grid-filters:before, ul.grid-filters:after {
    content: '';
    display: block;
    position: absolute;
    width: 2rem;
    border-top: 2px solid #1d1e20;
    transition: all .15s;
  }
  ul.grid-filters:before {
    top: .75rem;
  }
  ul.grid-filters:after {
    top: 1.25rem;
  }
  ul.grid-filters li {
    display: none;
  }
  ul.grid-filters a {
    display: block;
    padding: 1rem 0 !important;
    font-size: 1rem;
  }
  ul.grid-filters.open {
    padding: 3rem 0 0;
  }
  ul.grid-filters.open:before, ul.grid-filters.open:after {
    top: 1rem;
  }
  ul.grid-filters.open:before {
    transform: rotate(45deg);
  }
  ul.grid-filters.open:after {
    transform: rotate(-45deg);
  }
  ul.grid-filters.open li {
    display: block;
  }
}

/* Modern Content Section */
.modern-content-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.modern-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.content-text {
  padding-right: 40px;
}

.content-wrapper {
  max-width: 500px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.content-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.secondary-btn {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  box-shadow: none;
}

.secondary-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.content-video {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 8px;
}

.modern-video {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Content Section */
@media (max-width: 1024px) {
  .content-grid {
    gap: 60px;
  }
  
  .content-text {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .modern-content-section {
    padding: 80px 0;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-text {
    padding-right: 0;
    text-align: center;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
  
  .modern-video {
    height: 300px;
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  .content-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .modern-content-section {
    padding: 60px 0;
  }
  
  .content-grid {
    gap: 30px;
  }
  
  .modern-video {
    height: 250px;
  }
  
  .video-container {
    padding: 4px;
  }
}

/* Modern Benefits Section */
.modern-benefits-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.modern-benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.benefits-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  animation: badgeFloat 3s ease-in-out infinite;
}

.benefits-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.benefits-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.benefits-cta {
  text-align: center;
  margin-bottom: 80px;
}

.booking-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.booking-content {
  max-width: 500px;
  margin: 0 auto;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.booking-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.booking-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.secondary-btn.light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn.light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Responsive Design for Benefits Section */
@media (max-width: 1024px) {
  .modern-benefits-section {
    padding: 100px 0 60px;
  }
  
  .benefits-grid {
    gap: 30px;
  }
  
  .benefit-card {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .modern-benefits-section {
    padding: 80px 0 40px;
  }
  
  .benefits-header {
    margin-bottom: 60px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  .benefits-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  
  .benefits-subtitle {
    font-size: 1.1rem;
  }
  
  .booking-section {
    padding: 40px 20px;
    margin: 0 20px;
  }
  
  .booking-title {
    font-size: 1.5rem;
  }
  
  .booking-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .modern-benefits-section {
    padding: 60px 0 30px;
  }
  
  .benefits-header {
    margin-bottom: 40px;
  }
  
  .benefit-card {
    padding: 25px 15px;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .benefit-title {
    font-size: 1.3rem;
  }
  
  .booking-section {
    padding: 30px 15px;
  }
}

/* Modern Stats Section */
.modern-stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.modern-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stats-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stats-description {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stats-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.stats-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.image-container:hover .stats-image {
  transform: scale(1.05);
}

/* Modern Clients Section */
.modern-clients-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.modern-clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.clients-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  animation: badgeFloat 3s ease-in-out infinite;
}

.clients-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.clients-subtitle {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.clients-cta {
  margin-bottom: 60px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.client-item {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.client-logo {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  object-fit: contain;
}

.client-logo:hover {
  filter: grayscale(0%);
}

/* Responsive Design for Stats and Clients Sections */
@media (max-width: 1024px) {
  .modern-stats-section,
  .modern-clients-section {
    padding: 80px 0;
  }
  
  .stats-images {
    gap: 30px;
  }
  
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .modern-stats-section,
  .modern-clients-section {
    padding: 60px 0;
  }
  
  .stats-images {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats-header,
  .clients-header {
    margin-bottom: 40px;
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .client-item {
    padding: 15px;
    min-height: 80px;
  }
  
  .client-logo {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .modern-stats-section,
  .modern-clients-section {
    padding: 40px 0;
  }
  
  .stats-title,
  .clients-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .stats-description,
  .clients-subtitle {
    font-size: 1rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .client-item {
    padding: 10px;
    min-height: 60px;
  }
  
  .client-logo {
    max-height: 30px;
  }
}

/* Examples Page Specific Styles */
.examples-hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.examples-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

/* Modern Page Title Section */
.modern-page-title {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.title-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.title-badge {
  display: inline-block;
  margin-bottom: 20px;
}

.title-badge .badge-text {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.page-title .title-line {
  display: block;
}

.page-title .title-line.highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Search Section */
.modern-search-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.modern-search-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.search-select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: white;
  color: #374151;
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-btn {
  padding: 12px 24px;
  height: fit-content;
}

/* Modern Portfolio Section */
.modern-portfolio-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.portfolio-title .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.portfolio-filters {
  display: flex;
  align-items: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.portfolio-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-iframe-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.portfolio-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* No Results Section */
.no-results {
  text-align: center;
  padding: 80px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.no-results-content {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.no-results-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #6b7280;
}

.no-results-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.no-results-description {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Modern CTA Section */
.modern-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
}

.modern-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cta-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Responsive Design for Examples Page */
@media (max-width: 1024px) {
  .modern-page-title {
    padding: 100px 0 40px;
  }
  
  .modern-search-section,
  .modern-portfolio-section,
  .modern-cta-section {
    padding: 60px 0;
  }
  
  .search-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .modern-page-title {
    padding: 80px 0 30px;
  }
  
  .page-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  
  .page-subtitle {
    font-size: 1.1rem;
  }
  
  .modern-search-section,
  .modern-portfolio-section,
  .modern-cta-section {
    padding: 40px 0;
  }
  
  .search-form {
    padding: 30px 20px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-title .section-title {
    font-size: 2rem;
  }
  
  .portfolio-iframe-container {
    height: 350px;
  }
  
  .no-results-content {
    padding: 40px 20px;
  }
  
  .no-results-title {
    font-size: 1.5rem;
  }
  
  .no-results-description {
    font-size: 1rem;
  }
  
  .cta-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .modern-page-title {
    padding: 60px 0 20px;
  }
  
  .title-badge .badge-text {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .page-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .search-form {
    padding: 20px 15px;
  }
  
  .search-select {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .portfolio-iframe-container {
    height: 300px;
  }
  
  .no-results {
    padding: 40px 10px;
  }
  
  .no-results-content {
    padding: 30px 15px;
  }
  
  .no-results-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}

/* Modern Button Styles */
.modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.primary-btn {
  background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(241, 97, 69, 0.25);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(241, 97, 69, 0.35);
  background: linear-gradient(135deg, #e55a3d 0%, #7c3aed 100%);
}

.secondary-btn {
  background: white;
  color: #374151;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.15);
  border-color: #f16145;
  color: #f16145;
}

.secondary-btn.light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.secondary-btn.light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-text {
  font-weight: 600;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.modern-btn:hover .btn-icon {
  transform: translateX(2px);
}

/* Virtual Tours Page Specific Styles */
.virtual-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.panorama-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

#navi,
#infoi {
  width: 100%;
  position: absolute;
  top: 20%;
  text-align: center;
  font-size: 70px;
  color: #fff;
  left: 0;
  font-family: "futura-pt", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  pointer-events: none;
  z-index: 10;
}

#infoi {
  z-index: 15;
}

.hero-cta-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.hero-cta-btn {
  pointer-events: auto;
  margin-top: 20px;
  font-size: 16px;
  padding: 15px 30px;
}

.pnlm-loading {
  display: none !important;
}

/* Features Banner */
.features-banner {
  background: linear-gradient(135deg, #ff225b 0%, #e91e63 100%);
  padding: 60px 0;
  text-align: center;
}

.banner-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Main Content Section */
.main-content-section {
  padding: 80px 0;
  background: white;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-image {
  position: relative;
}

.content-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.content-text {
  display: flex;
  align-items: center;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Virtual Tour Example */
.virtual-tour-example {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.example-content {
  text-align: center;
}

.example-header {
  margin-bottom: 40px;
}

.example-btn {
  font-size: 16px;
  padding: 15px 30px;
}

.example-iframe {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Features Grid Section */
.features-grid-section {
  padding: 80px 0;
  background: white;
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-item.reverse {
  direction: rtl;
}

.feature-item.reverse .feature-content,
.feature-item.reverse .feature-text {
  direction: ltr;
}

.feature-content {
  display: flex;
  align-items: center;
}

.feature-text {
  max-width: 500px;
}

.feature-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.text-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #1d4ed8;
}

.feature-image {
  position: relative;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-img:hover {
  transform: translateY(-5px);
}

/* VR Experience Section */
.vr-experience-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.vr-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.vr-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vr-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vr-features {
  margin: 40px 0;
}

.vr-feature {
  margin-bottom: 30px;
}

.vr-feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vr-feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vr-image {
  position: relative;
}

.vr-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Google Cardboard Section */
.cardboard-section {
  padding: 80px 0;
  background: white;
}

.cardboard-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.cardboard-image {
  position: relative;
}

.cardboard-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cardboard-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cardboard-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #64748b;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Examples Section */
.examples-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.examples-header {
  text-align: center;
  margin-bottom: 60px;
}

.examples-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.example-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.example-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.example-item-title {
  padding: 20px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.example-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.example-item-title a:hover {
  color: #3b82f6;
}

.example-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Clients Section */
.clients-section {
  padding: 20px 0;
  background: white;
}

.clients-header {
  text-align: center;
  margin-bottom: 20px;
}

.clients-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.clients-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Override Slick Slider Default Styles */
.clients-slider .slick-slide {
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px !important;
}

.clients-slider .slick-track {
  display: flex !important;
  align-items: center !important;
}

.clients-slider .slick-list {
  height: 80px !important;
}

.clients-slider .slide {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.client-logo {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  object-fit: contain;
}

.client-logo:hover {
  filter: grayscale(0%);
}

/* Badges Section */
.badges-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.badge-item {
  text-align: center;
}

.badge-img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.badge-img:hover {
  filter: grayscale(0%);
}

/* Responsive Design for Virtual Tours Page */
@media (max-width: 1024px) {
  .content-grid,
  .feature-item,
  .vr-content,
  .cardboard-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-item.reverse {
    direction: ltr;
  }
  
  .examples-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  #infoi {
    top: 40%;
    height: 100%;
    font-size: 50px;
  }
  
  .features-banner,
  .main-content-section,
  .virtual-tour-example,
  .features-grid-section,
  .vr-experience-section,
  .cardboard-section,
  .examples-section,
  .clients-section,
  .badges-section {
    padding: 60px 0;
  }
  
  .clients-section {
    padding: 15px 0;
  }
  
  /* Index.php Clients Section Mobile Styles */
  .clients-slider {
    padding: 0 10px;
  }
  
  .client-item {
    flex: 0 0 200px;
    height: 120px;
    padding: 0.5rem;
  }
  
  .clients-track {
    gap: 12px;
  }
  
  /* Virtual Tours Page Clients Section Mobile Styles */
  .clients-slider .slick-slide {
    height: 70px !important;
    padding: 8px !important;
  }
  
  .clients-slider .slick-list {
    height: 70px !important;
  }
  
  .clients-slider .slide {
    height: 70px;
    padding: 8px;
  }
  
  .client-logo {
    max-height: 50px;
    max-width: 150px;
  }
  
  .feature-item {
    margin-bottom: 60px;
  }
  
  .examples-grid {
    grid-template-columns: 1fr;
  }
  
  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  #infoi {
    font-size: 40px;
  }
  
  .hero-cta-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
  
  .features-banner,
  .main-content-section,
  .virtual-tour-example,
  .features-grid-section,
  .vr-experience-section,
  .cardboard-section,
  .examples-section,
  .clients-section,
  .badges-section {
    padding: 40px 0;
  }
  
  .clients-section {
    padding: 10px 0;
  }
  
  /* Index.php Clients Section Small Mobile Styles */
  .client-item {
    flex: 0 0 180px;
    height: 100px;
    padding: 0.25rem;
  }
  
  .clients-track {
    gap: 8px;
  }
  
  /* Virtual Tours Page Clients Section Small Mobile Styles */
  .clients-slider .slick-slide {
    height: 60px !important;
    padding: 5px !important;
  }
  
  .clients-slider .slick-list {
    height: 60px !important;
  }
  
  .clients-slider .slide {
    height: 60px;
    padding: 5px;
  }
  
  .client-logo {
    max-height: 40px;
    max-width: 120px;
  }
  
  .content-grid,
  .feature-item,
  .vr-content,
  .cardboard-content {
    gap: 30px;
  }
  
  .feature-title,
  .vr-title,
  .cardboard-title,
  .examples-title,
  .clients-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .banner-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* 2026 Cutting-Edge Design Styles */
.hero-2026 {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background-2026 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e7e7d4;
}

.hero-overlay-2026 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  width: 60px;
  height: 60px;
  color: rgba(241, 97, 69, 0.3);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(241, 97, 69, 0.2));
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 70px;
  height: 70px;
  top: 65%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.hero-content-2026 {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-text-2026 {
  color: #1e293b;
}

.hero-badge-2026 {
  margin-bottom: 40px;
}

.badge-text-2026 {
  background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(241, 97, 69, 0.3);
}

.hero-title-2026 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
}

.title-line-2026 {
  display: block;
  color: #1e293b;
  transform: translateX(-20px);
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}

.title-line-2026:nth-child(2) {
  animation-delay: 0.2s;
}

.title-line-2026:nth-child(3) {
  animation-delay: 0.4s;
}

.title-line-2026:nth-child(4) {
  animation-delay: 0.6s;
}

.highlight-2026 {
  background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent-2026 {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #64748b;
  margin-top: 20px;
  transform: translateX(50px);
  opacity: 0;
  animation: slideInRight 1s ease-out 0.8s forwards;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-subtitle-2026 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 50px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 600px;
}

.hero-cta-2026 {
  margin-bottom: 60px;
}

.cta-button-2026 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
  color: white;
  padding: 20px 40px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(241, 97, 69, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button-2026::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button-2026:hover::before {
  left: 100%;
}

.cta-button-2026:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(241, 97, 69, 0.6);
}

.cta-icon {
  transition: transform 0.3s ease;
}

.cta-button-2026:hover .cta-icon {
  transform: translateX(4px);
}

.hero-stats-2026 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: white;
}

.stat-item-2026 {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-item-2026:hover {
  transform: translateY(-5px);
}

.stat-number-2026 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #f16145;
  margin-bottom: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stat-label-2026 {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stat-divider-2026 {
  width: 2px;
  height: 20px;
  background: linear-gradient(135deg, #f16145, #8b5cf6);
  margin: 0 auto;
  border-radius: 1px;
}

.scroll-indicator-2026 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}

.scroll-arrow-2026 {
  width: 2px;
  height: 40px;
  background: linear-gradient(135deg, #f16145, #8b5cf6);
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow-2026::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #f16145;
  border-bottom: 2px solid #f16145;
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Content Section 2026 */
.content-section-2026 {
  padding: 120px 0;
  background: white;
  position: relative;
}

.content-section-2026::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.content-grid-2026 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.content-text-2026 {
  position: relative;
}

.content-wrapper-2026 {
  position: relative;
}

.section-subtitle-2026 {
  font-size: 12px;
  font-weight: 700;
  color: #f16145;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.content-title-2026 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.content-description-2026 {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.secondary-button-2026 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #1e293b;
  padding: 16px 32px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.secondary-button-2026:hover {
  transform: translateY(-2px);
  border-color: #f16145;
  color: #f16145;
  box-shadow: 0 8px 30px rgba(241, 97, 69, 0.2);
}

.button-icon {
  transition: transform 0.3s ease;
}

.secondary-button-2026:hover .button-icon {
  transform: translateX(4px);
}

.content-video-2026 {
  position: relative;
}

.video-container-2026 {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-3deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000;
}

.video-container-2026:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 60px 150px rgba(0, 0, 0, 0.3);
}

.video-iframe-2026 {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.video-container-2026::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #f16145, #8b5cf6, #ec4899);
  border-radius: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container-2026:hover::before {
  opacity: 1;
}

/* Benefits Section 2026 */
.benefits-section-2026 {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.benefits-header-2026 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.benefits-title-2026 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.benefits-subtitle-2026 {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.benefits-grid-2026 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.benefit-card-2026 {
  background: white;
  padding: 50px 40px;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card-2026::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
}

.benefit-card-2026:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.benefit-icon-2026 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  transition: transform 0.3s ease;
}

.benefit-card-2026:hover .benefit-icon-2026 {
  transform: scale(1.1) rotate(5deg);
}

.benefit-title-2026 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.benefit-description-2026 {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.benefits-cta-2026 {
  text-align: center;
  margin-top: 80px;
}

.primary-button-2026 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f16145 0%, #8b5cf6 100%);
  color: white;
  padding: 20px 40px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(241, 97, 69, 0.4);
  position: relative;
  overflow: hidden;
}

.primary-button-2026::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.primary-button-2026:hover::before {
  left: 100%;
}

.primary-button-2026:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(241, 97, 69, 0.6);
}

.primary-button-2026:hover .button-icon {
  transform: translateX(4px);
}

/* Booking Section 2026 */
.booking-section-2026 {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
}

.booking-content-2026 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.booking-title-2026 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.booking-description-2026 {
  font-size: 1.3rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 50px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.secondary-button-2026.light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}

.secondary-button-2026.light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Stats Section 2026 */
.stats-section-2026 {
  padding: 120px 0;
  background: white;
}

.stats-header-2026 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.stats-title-2026 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stats-description-2026 {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stats-images-2026 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.image-container-2026 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-container-2026:hover {
  transform: translateY(-10px);
}

.stats-image-2026 {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container-2026:hover .stats-image-2026 {
  transform: scale(1.05);
}

/* Clients Section 2026 */
.clients-section-2026 {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.clients-header-2026 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.clients-title-2026 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.clients-subtitle-2026 {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 50px;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.clients-grid-2026 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.client-item-2026 {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.client-item-2026:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.client-logo-2026 {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-item-2026:hover .client-logo-2026 {
  filter: grayscale(0%);
}

/* Responsive Design for 2026 */
@media (max-width: 1024px) {
  .hero-content-2026 {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .content-grid-2026 {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .video-iframe-2026 {
    height: 400px;
  }
  
  .benefits-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-images-2026 {
    grid-template-columns: 1fr;
  }
  
  .clients-grid-2026 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-2026,
  .content-section-2026,
  .benefits-section-2026,
  .booking-section-2026,
  .stats-section-2026,
  .clients-section-2026 {
    padding: 80px 0;
  }
  
  .video-iframe-2026 {
    height: 350px;
  }
  
  .hero-content-2026,
  .content-grid-2026 {
    padding: 0 20px;
  }
  
  .benefits-header-2026,
  .stats-header-2026,
  .clients-header-2026,
  .booking-content-2026 {
    padding: 0 20px;
  }
  
  .benefits-grid-2026,
  .stats-images-2026,
  .clients-grid-2026 {
    padding: 0 20px;
  }
  
  .benefits-grid-2026 {
    grid-template-columns: 1fr;
  }
  
  .benefit-card-2026 {
    padding: 40px 30px;
  }
  
  .cta-button-2026,
  .primary-button-2026 {
    padding: 16px 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-2026,
  .content-section-2026,
  .benefits-section-2026,
  .booking-section-2026,
  .stats-section-2026,
  .clients-section-2026 {
    padding: 60px 0;
  }
  
  .video-iframe-2026 {
    height: 250px;
  }
  
  .hero-content-2026,
  .content-grid-2026 {
    padding: 0 15px;
  }
  
  .benefits-header-2026,
  .stats-header-2026,
  .clients-header-2026,
  .booking-content-2026 {
    padding: 0 15px;
  }
  
  .benefits-grid-2026,
  .stats-images-2026,
  .clients-grid-2026 {
    padding: 0 15px;
  }
  
  .benefit-card-2026 {
    padding: 30px 20px;
  }
  
  .cta-button-2026,
  .primary-button-2026 {
    padding: 14px 28px;
    font-size: 12px;
  }
  
  .hero-stats-2026 {
    gap: 20px;
  }
  
  .stat-item-2026 {
    padding: 20px;
  }
}