﻿/**
Theme Name:Apto - App Landing Page
Author:Themarlab
Version:1.0;

*/
/**
* Table of Contents
  * 1.0 - Fonts
 * 2.0 - Reset css
 * 3.0 - Common
 * 4.0 - Theme color
 * 5.0 - Navbar
 * 6.0 - Banner
 * 7.0 - Screenshot
 * 8.0 - testimonial
 * 9.0 - Pricing
 * 10.0 - Blog
 * 11.0 - Footer
 * 12.0 - Responsive

/* ==========================================
   PREMIUM NAVBAR - CLEAN & MODERN
   ========================================== */

/* Main Navbar Container */
.rsto-navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

.rsto-navbar.rsto-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

.rsto-navbar-inner {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Logo */
.rsto-navbar-logo a {
  display: inline-block !important;
  line-height: 0 !important;
}

.rsto-navbar-logo img {
  display: block !important;
  height: 45px !important;
  width: auto !important;
  transition: transform 0.3s ease !important;
}

.rsto-navbar-logo a:hover img {
  transform: scale(1.05) !important;
}

/* Desktop Menu */
.rsto-navbar-menu {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.rsto-navbar-item {
  display: inline-block !important;
  padding: 10px 18px !important;
  color: #1e293b !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.rsto-navbar-item::before {
  content: '' !important;
  position: absolute !important;
  bottom: 8px !important;
  left: 18px !important;
  right: 18px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #1e40af, #06b6d4) !important;
  transform: scaleX(0) !important;
  transition: transform 0.3s ease !important;
}

.rsto-navbar-item:hover {
  color: #1e40af !important;
  background: rgba(255, 150, 113, 0.08) !important;
}

.rsto-navbar-item:hover::before {
  transform: scaleX(1) !important;
}

/* CTA Button */
.rsto-navbar-btn {
  display: inline-block !important;
  padding: 12px 26px !important;
  margin-left: 16px !important;
  background: linear-gradient(135deg, #1e40af, #06b6d4) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(255, 150, 113, 0.3) !important;
}

.rsto-navbar-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(255, 150, 113, 0.4) !important;
  color: #ffffff !important;
}

/* Mobile Toggle Button */
.rsto-navbar-toggle {
  display: none !important;
  flex-direction: column !important;
  gap: 5px !important;
  width: 30px !important;
  height: 24px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.rsto-navbar-toggle span {
  display: block !important;
  width: 100% !important;
  height: 3px !important;
  background: #1e293b !important;
  border-radius: 3px !important;
  transition: all 0.3s ease !important;
}

.rsto-navbar-toggle.rsto-active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px) !important;
}

.rsto-navbar-toggle.rsto-active span:nth-child(2) {
  opacity: 0 !important;
}

.rsto-navbar-toggle.rsto-active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px) !important;
}

/* Mobile Menu */
.rsto-navbar-mobile {
  display: none !important;
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  padding: 20px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: all 0.4s ease !important;
}

.rsto-navbar-mobile.rsto-active {
  display: block !important;
  max-height: 500px !important;
  opacity: 1 !important;
}

.rsto-mobile-item {
  display: block !important;
  padding: 16px 20px !important;
  color: #1e293b !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  margin-bottom: 4px !important;
}

.rsto-mobile-item:hover {
  background: rgba(255, 150, 113, 0.1) !important;
  color: #1e40af !important;
}

.rsto-mobile-btn {
  display: block !important;
  margin-top: 16px !important;
  padding: 16px 26px !important;
  background: linear-gradient(135deg, #1e40af, #06b6d4) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  text-align: center !important;
  box-shadow: 0 4px 15px rgba(255, 150, 113, 0.3) !important;
  transition: all 0.3s ease !important;
}

.rsto-mobile-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(255, 150, 113, 0.4) !important;
  color: #ffffff !important;
}

/* Responsive */
@media (max-width: 992px) {
  .rsto-navbar-inner {
    padding: 0 24px !important;
    height: 70px !important;
  }

  .rsto-navbar-logo img {
    height: 38px !important;
  }

  .rsto-navbar-menu {
    display: none !important;
  }

  .rsto-navbar-toggle {
    display: flex !important;
  }

  .rsto-navbar-mobile {
    top: 70px !important;
  }
}

@media (max-width: 576px) {
  .rsto-navbar-inner {
    padding: 0 20px !important;
  }
}

/* ==========================================================================
   MODERN HERO SECTION
   ========================================================================== */
.rsto-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

/* Background Gradient Orbs */
.rsto-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.rsto-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.rsto-orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.rsto-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #06b6d4, #1e40af);
  bottom: -150px;
  right: -50px;
  animation-delay: 7s;
}

.rsto-orb-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  top: 50%;
  right: 10%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Container */
.rsto-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.rsto-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Content */
.rsto-hero-left {
  max-width: 600px;
}

/* Badge */
.rsto-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 150, 113, 0.2);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  animation: slideInDown 0.6s ease-out;
}

/* Title */
.rsto-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.rsto-gradient-text {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Description */
.rsto-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 32px;
}

/* Features List */
.rsto-hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.rsto-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #475569;
  font-weight: 500;
}

/* CTA Buttons */
.rsto-hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.rsto-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(255, 150, 113, 0.4);
  transition: all 0.3s ease;
}

.rsto-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 150, 113, 0.5);
  color: #ffffff;
}

.rsto-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #1e293b;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.rsto-btn-secondary:hover {
  background: #ffffff;
  border-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  color: #1e40af;
}

/* Trust Indicators */
/* Trust Indicators - Ultra Modern Badge Design */
.rsto-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.rsto-trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 150, 113, 0.2);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.rsto-trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.rsto-trust-badge:hover::before {
  left: 100%;
}

.rsto-trust-badge:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 150, 113, 0.4);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 150, 113, 0.15);
}

.rsto-badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.375rem;
  color: white;
  position: relative;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.rsto-trust-badge:hover .rsto-badge-icon {
  transform: rotate(8deg) scale(1.15);
}

.rsto-badge-users {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

.rsto-badge-star {
  background: linear-gradient(135deg, #1e40af 0%, #ef4444 100%);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25);
}

.rsto-badge-support {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.rsto-badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rsto-badge-number {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rsto-badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
  line-height: 1;
}

/* ===================================
   MODERN PLATFORM DOWNLOADS
   =================================== */
.rsto-downloads-section {
  padding: 0px 40px 0px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.rsto-section-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.rsto-section-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.rsto-downloads-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.rsto-downloads-header {
  text-align: center;
  margin-bottom: 48px;
}

.rsto-downloads-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.rsto-downloads-subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  font-weight: 500;
}

.rsto-downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.rsto-download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rsto-download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rsto-download-card:hover::before {
  opacity: 1;
}

.rsto-download-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: currentColor;
}

.rsto-download-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.875rem;
  color: white;
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.rsto-download-card:hover .rsto-download-icon {
  transform: rotate(-5deg) scale(1.15);
}

.rsto-download-ios .rsto-download-icon {
  background: linear-gradient(135deg, #000000 0%, #434343 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.rsto-download-ios {
  color: #000000;
}

.rsto-download-ios:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.rsto-download-android .rsto-download-icon {
  background: linear-gradient(135deg, #3ddc84 0%, #07c160 100%);
  box-shadow: 0 8px 24px rgba(61, 220, 132, 0.3);
}

.rsto-download-android {
  color: #07c160;
}

.rsto-download-android:hover {
  box-shadow: 0 12px 40px rgba(61, 220, 132, 0.2);
}

.rsto-download-windows .rsto-download-icon {
  background: linear-gradient(135deg, #0078d4 0%, #0053a6 100%);
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.3);
}

.rsto-download-windows {
  color: #0078d4;
}

.rsto-download-windows:hover {
  box-shadow: 0 12px 40px rgba(0, 120, 212, 0.2);
}

.rsto-download-support .rsto-download-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.rsto-download-support {
  color: #ef4444;
}

.rsto-download-support:hover {
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
}

.rsto-download-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.rsto-download-store {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.rsto-download-platform {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1;
}

.rsto-download-arrow {
  font-size: 1.25rem;
  color: currentColor;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.rsto-download-card:hover .rsto-download-arrow {
  transform: translateX(6px);
}

/* ===================================
   MODERN CUSTOMERS SECTION
   =================================== */
.rsto-customers-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.rsto-customers-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rsto-customers-header {
  text-align: center;
  margin-bottom: 30px;
}

.rsto-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.rsto-section-badge i {
  font-size: 1.125rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rsto-section-badge span {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rsto-customers-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.rsto-customers-subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

/* ===================================
   ULTRA MODERN CTA SECTION
   =================================== */
.rsto-cta-section {
  padding: 0 40px 80px;
}

@media (max-width: 768px) {
  .rsto-cta-section {
    padding: 0 10px 60px;
  }
}

.rsto-cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  border-radius: 32px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 150, 113, 0.35);
}

/* Floating Gradient Orbs */
.rsto-cta-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px);
  z-index: 1;
}

.rsto-cta-orb-1 {
  width: 200px;
  height: 200px;
  top: -80px;
  right: -60px;
  animation: float-orb-1 8s ease-in-out infinite;
}

.rsto-cta-orb-2 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -40px;
  animation: float-orb-2 10s ease-in-out infinite;
}

.rsto-cta-orb-3 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: float-orb-3 6s ease-in-out infinite;
}

@keyframes float-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.1); }
}

@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -15px) scale(0.9); }
}

@keyframes float-orb-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.rsto-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.rsto-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: scale(1.03);
  }
}

.rsto-cta-badge i {
  font-size: 1.25rem;
  color: white;
}

.rsto-cta-badge span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.rsto-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rsto-cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.6;
}

.rsto-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 450px;
  margin: 0 auto;
}

.rsto-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.rsto-cta-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.rsto-cta-phone:hover::before {
  left: 100%;
}

.rsto-cta-phone-primary {
  background: white;
  color: #1e40af;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.rsto-cta-phone-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: #e8704d;
}

.rsto-cta-phone-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.rsto-cta-phone-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rsto-cta-phone i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.rsto-cta-phone:hover i {
  transform: rotate(15deg) scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .rsto-cta-container {
    padding: 40px 25px;
    border-radius: 24px;
  }
  
  .rsto-cta-title {
    font-size: 2rem;
  }
  
  .rsto-cta-subtitle {
    font-size: 1rem;
  }
  
  .rsto-cta-phone {
    padding: 16px 24px;
    font-size: 1rem;
  }
  
  .rsto-cta-orb-1 {
    width: 150px;
    height: 150px;
  }
  
  .rsto-cta-orb-2 {
    width: 120px;
    height: 120px;
  }
}

/* Right Content - Image */
@media (max-width: 1024px) {
  .rsto-downloads-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .rsto-downloads-grid {
    grid-template-columns: 1fr;
  }
  
  .rsto-downloads-title {
    font-size: 1.75rem;
  }
  
  .rsto-download-card {
    padding: 20px 24px;
  }
  
  .rsto-download-icon {
    width: 50px;
    height: 50px;
    font-size: 1.625rem;
  }
}

/* Right Content - Image */
.rsto-hero-right {
  position: relative;
}

.rsto-hero-image-wrapper {
  position: relative;
  animation: floatImage 6s ease-in-out infinite;
}

.rsto-hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  display: block;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Floating Cards */
.rsto-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: floatCard 4s ease-in-out infinite;
}

.rsto-card-1 {
  top: 10%;
  left: -40px;
  animation-delay: 0s;
}

.rsto-card-2 {
  bottom: 15%;
  right: -40px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.rsto-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 150, 113, 0.1), rgba(255, 199, 95, 0.1));
  border-radius: 12px;
}

.rsto-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rsto-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.rsto-card-desc {
  font-size: 13px;
  color: #64748b;
}

/* Bottom Wave */
.rsto-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.rsto-hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .rsto-hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rsto-hero-left {
    max-width: 100%;
  }
}

/* ==========================================================================
   MODERN BENTO GRID FEATURES SECTION
   ========================================================================== */
.rsto-bento-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: visible;
}

.rsto-bento-section .rsto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rsto-bento-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

/* Bento Card Base */
.rsto-bento-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rsto-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(6, 182, 212, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.rsto-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(30, 64, 175, 0.2);
}

.rsto-bento-card:hover::before {
  opacity: 1;
}

/* Large Card (Image) */
.rsto-bento-large {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.rsto-bento-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rsto-bento-image img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.rsto-bento-large:hover img {
  transform: scale(1.05) rotate(2deg);
}

.rsto-bento-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.rsto-bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.rsto-bento-badge i {
  color: #1e40af;
}

/* Highlight Cards */
.rsto-bento-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 150, 113, 0.05), rgba(255, 199, 95, 0.05));
  border: 2px solid rgba(255, 150, 113, 0.2);
}

/* Wide Card */
.rsto-bento-wide {
  grid-column: span 2;
}

/* Bento Icons */
.rsto-bento-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.rsto-bento-card:hover .rsto-bento-icon {
  transform: scale(1.1) rotate(5deg);
}

.rsto-icon-gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.rsto-icon-gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.rsto-icon-gradient-blue {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  color: white;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.rsto-icon-gradient-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.rsto-icon-gradient-purple {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: white;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

/* Bento Content */
.rsto-bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.rsto-bento-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Bento Stats */
.rsto-bento-stats {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.rsto-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rsto-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rsto-stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Bento Grid */
@media (max-width: 1024px) {
  .rsto-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .rsto-bento-large,
  .rsto-bento-highlight,
  .rsto-bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .rsto-bento-section {
    padding: 60px 20px;
  }

  .rsto-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .rsto-bento-card {
    padding: 24px;
    min-height: 200px;
  }

  .rsto-bento-large,
  .rsto-bento-highlight,
  .rsto-bento-wide {
    grid-column: span 1;
  }

  .rsto-bento-large {
    min-height: 400px;
  }

  .rsto-bento-title {
    font-size: 1.125rem;
  }

  .rsto-bento-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   MODERN FEATURES SECTION (OLD - BACKUP)
   ========================================================================== */
.rsto-features {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.rsto-section-header {
  text-align: center;
  margin-bottom: 70px;
}

.rsto-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 150, 113, 0.1), rgba(255, 199, 95, 0.1));
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 20px;
}

.rsto-section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.rsto-gradient-text {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rsto-section-desc {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.rsto-features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.rsto-feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.rsto-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.rsto-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 150, 113, 0.1), rgba(255, 199, 95, 0.1));
  border-radius: 18px;
  font-size: 32px;
  color: #1e40af;
}

.rsto-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.rsto-feature-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.rsto-feature-center {
  background: linear-gradient(135deg, rgba(255, 150, 113, 0.05), rgba(255, 199, 95, 0.05));
  padding: 40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rsto-feature-center img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* ==========================================================================
   MODERN SPLIT SECTIONS
   ========================================================================== */
.rsto-split-section {
  padding: 100px 20px;
  position: relative;
  overflow: visible;
  background: #ffffff;
}

/* Wave Separator */
.rsto-split-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,48L48,42.7C96,37,192,27,288,26.7C384,27,480,37,576,42.7C672,48,768,48,864,42.7C960,37,1056,27,1152,26.7C1248,27,1344,37,1392,42.7L1440,48L1440,80L1392,80C1344,80,1248,80,1152,80C1056,80,960,80,864,80C768,80,672,80,576,80C480,80,384,80,288,80C192,80,96,80,48,80L0,80Z"/></svg>') no-repeat;
  background-size: cover;
  z-index: 1;
}

/* Warm Orange Gradient Sections (Brand Color) */
.rsto-split-warm {
  background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
}

.rsto-split-warm::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%231e40af" d="M0,48L48,42.7C96,37,192,27,288,26.7C384,27,480,37,576,42.7C672,48,768,48,864,42.7C960,37,1056,27,1152,26.7C1248,27,1344,37,1392,42.7L1440,48L1440,80L1392,80C1344,80,1248,80,1152,80C1056,80,960,80,864,80C768,80,672,80,576,80C480,80,384,80,288,80C192,80,96,80,48,80L0,80Z"/></svg>') no-repeat;
  background-size: cover;
}

.rsto-split-warm .rsto-split-title,
.rsto-split-warm .rsto-split-desc,
.rsto-split-warm .rsto-split-feature h4,
.rsto-split-warm .rsto-split-feature p {
  color: white !important;
}

.rsto-split-warm .rsto-split-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.rsto-split-warm .rsto-split-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Soft Peach Alternative (Lighter Brand Tone) */
.rsto-split-peach {
  background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
}

.rsto-split-peach::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%23dbeafe" d="M0,48L48,42.7C96,37,192,27,288,26.7C384,27,480,37,576,42.7C672,48,768,48,864,42.7C960,37,1056,27,1152,26.7C1248,27,1344,37,1392,42.7L1440,48L1440,80L1392,80C1344,80,1248,80,1152,80C1056,80,960,80,864,80C768,80,672,80,576,80C480,80,384,80,288,80C192,80,96,80,48,80L0,80Z"/></svg>') no-repeat;
  background-size: cover;
}

/* Keep green for success/CTA contexts only */
.rsto-split-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.rsto-split-green::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%2310b981" d="M0,48L48,42.7C96,37,192,27,288,26.7C384,27,480,37,576,42.7C672,48,768,48,864,42.7C960,37,1056,27,1152,26.7C1248,27,1344,37,1392,42.7L1440,48L1440,80L1392,80C1344,80,1248,80,1152,80C1056,80,960,80,864,80C768,80,672,80,576,80C480,80,384,80,288,80C192,80,96,80,48,80L0,80Z"/></svg>') no-repeat;
  background-size: cover;
}

.rsto-split-green .rsto-split-title,
.rsto-split-green .rsto-split-desc,
.rsto-split-green .rsto-split-feature h4,
.rsto-split-green .rsto-split-feature p {
  color: white !important;
}

.rsto-split-green .rsto-split-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.rsto-split-green .rsto-split-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.rsto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Inner Container with Soft Edges */
.rsto-split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.rsto-split-reverse {
  direction: rtl;
}

.rsto-split-reverse > * {
  direction: ltr;
}

.rsto-split-text {
  max-width: 540px;
}

.rsto-split-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(255, 150, 113, 0.1), rgba(255, 199, 95, 0.1));
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 24px;
}

.rsto-badge-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
  color: #3b82f6;
}

.rsto-badge-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.1));
  color: #a855f7;
}

.rsto-badge-blue {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(6, 182, 212, 0.1));
  color: #1e40af;
}

.rsto-split-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rsto-split-desc {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
}

.rsto-split-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rsto-split-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rsto-split-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 150, 113, 0.1), rgba(255, 199, 95, 0.1));
  border-radius: 12px;
  font-size: 20px;
  color: #1e40af;
}

.rsto-split-feature h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.rsto-split-feature p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.rsto-split-image {
  position: relative;
}

.rsto-split-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.rsto-split-image img:hover {
  transform: scale(1.02);
}

/* Soft Button with Rounded Edges */
.rsto-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #1e40af;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #1e40af;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rsto-btn-outline:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 150, 113, 0.3);
  border-radius: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet */
@media (max-width: 992px) {
  .rsto-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .rsto-feature-center {
    grid-column: 1 / -1;
  }

  .rsto-split-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rsto-split-reverse {
    direction: ltr;
  }

  .rsto-section-title {
    font-size: 2.25rem;
  }

  .rsto-split-title {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .rsto-features {
    padding: 60px 20px;
  }

  .rsto-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rsto-section-title {
    font-size: 1.875rem;
  }

  .rsto-split-section {
    padding: 60px 20px;
  }

  .rsto-split-title {
    font-size: 1.75rem;
  }

  .rsto-split-desc {
    font-size: 1rem;
  }

  .rsto-split-content {
    gap: 40px;
  }
}

/* ==========================================================================
   MODERN FOOTER
   ========================================================================== */
.rsto-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 40px 40px;
  position: relative;
  overflow: visible;
  border-radius: 0;
}

/* Wave Separator for Footer */
.rsto-footer::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%230f172a" d="M0,48L48,53.3C96,59,192,69,288,69.3C384,69,480,59,576,53.3C672,48,768,48,864,53.3C960,59,1056,69,1152,69.3C1248,69,1344,59,1392,53.3L1440,48L1440,80L1392,80C1344,80,1248,80,1152,80C1056,80,960,80,864,80C768,80,672,80,576,80C480,80,384,80,288,80C192,80,96,80,48,80L0,80Z"/></svg>') no-repeat;
  background-size: cover;
  z-index: 1;
}

.rsto-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.rsto-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rsto-footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.rsto-footer-section h3.rsto-footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.rsto-footer-section h3.rsto-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  border-radius: 2px;
}

.rsto-footer-contact,
.rsto-footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rsto-footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.rsto-footer-link:hover {
  color: #1e40af;
  transform: translateX(4px);
}

.rsto-footer-link i {
  width: 20px;
  color: #1e40af;
}

.rsto-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rsto-social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rsto-social-btn:hover {
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 150, 113, 0.3);
  border-color: transparent;
  border-radius: 18px;
}

.rsto-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 40px 0;
}

.rsto-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.rsto-footer-company p,
.rsto-footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0;
}

.rsto-footer-copyright strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

@media (max-width: 768px) {
  .rsto-footer {
    padding: 60px 15px 30px;
  }

  .rsto-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .rsto-footer-section {
    text-align: left;
  }
  
  .rsto-footer-section h3.rsto-footer-title {
    font-size: 1.125rem;
  }

  .rsto-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    align-items: center;
  }
  
  .rsto-footer-company,
  .rsto-footer-copyright {
    width: 100%;
  }
  
  .rsto-footer-company {
    text-align: center;
  }
  
  .rsto-footer-social {
    justify-content: flex-start;
  }
  
  .rsto-footer-link {
    font-size: 14px;
  }
  
  .rsto-social-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

  .rsto-hero-title {
    font-size: 48px;
  }

  .rsto-hero-right {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .rsto-hero {
    padding: 100px 0 60px;
  }

  .rsto-hero-container {
    padding: 0 24px;
  }

  .rsto-hero-title {
    font-size: 36px;
  }

  .rsto-hero-desc {
    font-size: 16px;
  }

  .rsto-hero-cta {
    flex-direction: column;
  }

  .rsto-btn-primary,
  .rsto-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .rsto-hero-trust {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .rsto-trust-divider {
    width: 100%;
    height: 1px;
  }

  .rsto-floating-card {
    padding: 12px 16px;
  }

  .rsto-card-1 {
    left: 10px;
    top: 5%;
  }

  .rsto-card-2 {
    right: 10px;
    bottom: 10%;
  }

  .rsto-card-icon {
    width: 40px;
    height: 40px;
  }

  .rsto-card-title {
    font-size: 14px;
  }

  .rsto-card-desc {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .rsto-hero-title {
    font-size: 32px;
  }

  .rsto-orb-1,
  .rsto-orb-2,
  .rsto-orb-3 {
    width: 200px;
    height: 200px;
  }
}

/* ==========================================================================
   1.0 Fonts
   ========================================================================== */
/*Montserrat font*/

.testimonials {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  position: relative;
}

.testimonial-container {
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
}

.testimonial-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  padding: 10px;
  animation: scroll 25s linear infinite;
}

#musterilogolari {
  display: flex;
  animation: scroll 30s linear infinite !important;

}

#musterilogolari:hover {
  animation-play-state: paused;
}

.testimonial-grid:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-330px * 4));
  }
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  flex-shrink: 0;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.quote {
  color: #444;
  line-height: 1.6;
  margin: 15px 0;
  font-style: italic;
}

.name {
  font-weight: bold;
  color: #333;
  margin: 5px 0;
}

.role {
  color: #666;
  font-size: 14px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev-btn {
  left: 0;
  width: 40px;
  height: 40px;
}

.next-btn {
  right: 0;
  width: 40px;
  height: 40px;
}

.gradiant {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/isletmeci.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.ball {
  animation: bounce 2s infinite alternate;
  -webkit-animation: bounce 2s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat/montserrat-bold-webfont.eot");
  src: url("../fonts/montserrat/montserrat-bold-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/montserrat/montserrat-bold-webfont.woff2") format("woff2"),
    url("../fonts/montserrat/montserrat-bold-webfont.woff") format("woff"),
    url("../fonts/montserrat/montserrat-bold-webfont.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat/montserrat-semibold-webfont.eot");
  src: url("../fonts/montserrat/montserrat-semibold-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/montserrat/montserrat-semibold-webfont.woff2") format("woff2"),
    url("../fonts/montserrat/montserrat-semibold-webfont.woff") format("woff"),
    url("../fonts/montserrat/montserrat-semibold-webfont.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat/montserrat-regular-webfont.eot");
  src: url("../fonts/montserrat/montserrat-regular-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/montserrat/montserrat-regular-webfont.woff2") format("woff2"),
    url("../fonts/montserrat/montserrat-regular-webfont.woff") format("woff"),
    url("../fonts/montserrat/montserrat-regular-webfont.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat/montserrat-light-webfont.eot");
  src: url("../fonts/montserrat/montserrat-light-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/montserrat/montserrat-light-webfont.woff2") format("woff2"),
    url("../fonts/montserrat/montserrat-light-webfont.woff") format("woff"),
    url("../fonts/montserrat/montserrat-light-webfont.ttf") format("truetype");
  font-weight: 300;
}

/*open sans font*/
@font-face {
  font-family: "open sans";
  src: url("../fonts/open-sans/opensans-bold-webfont.eot");
  src: url("../fonts/open-sans/opensans-bold-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/open-sans/opensans-bold-webfont.woff2") format("woff2"),
    url("../fonts/open-sans/opensans-bold-webfont.woff") format("woff"),
    url("../fonts/open-sans/opensans-bold-webfont.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "open sans";
  src: url("../fonts/open-sans/opensans-semibold-webfont.eot");
  src: url("../fonts/open-sans/opensans-semibold-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/open-sans/opensans-semibold-webfont.woff2") format("woff2"),
    url("../fonts/open-sans/opensans-semibold-webfont.woff") format("woff"),
    url("../fonts/open-sans/opensans-semibold-webfont.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "open sans";
  src: url("../fonts/open-sans/opensans-regular-webfont.eot");
  src: url("../fonts/open-sans/opensans-regular-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/open-sans/opensans-regular-webfont.woff2") format("woff2"),
    url("../fonts/open-sans/opensans-regular-webfont.woff") format("woff"),
    url("../fonts/open-sans/opensans-regular-webfont.ttf") format("truetype");
  font-weight: 400;
}

/* ==========================================================================
   2.0 Reset css
   ========================================================================== */
html,
body {
  overflow-x: hidden !important;
  font-size: 1em;
  color: #848c99;
  font-family: "montserrat", "open sans", sans-serif;
  font-weight: 400;
  line-height: 1.9;
  white-space: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "montserrat", "open sans", sans-serif;
  font-weight: 600;
  color: #37404d;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

h1 {
  font-size: 3.5em;
}

h2 {
  font-size: 3em;
}

h3 {
  font-size: 2.5em;
}

h4 {
  font-size: 2.25em;
}

h5 {
  font-size: 1.75em;
}

h6 {
  font-size: 1.25em;
}

#kucuk {
  font-size: 1.75em;
}

h6 {
  font-size: 1.25em;
}

ul {
  padding: 0px;
}

li {
  list-style: none;
  margin-bottom: 10px;
}

a {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  text-decoration: none;
  outline: 0;
  color: inherit;
}

li>a:focus,
li>a:hover,
.nav>li>a:focus,
.nav>li>a:hover {
  background-color: transparent;
  border-color: transparent;
}

.nav>li>a {
  padding: 0;
}

a:active,
a:focus {
  outline: 0;
  -moz-outline: 0;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #fff;
}

/* ==========================================================================
   3.0 Common css
   ========================================================================== */
.sec-pad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.sec-pad-lg {
  padding: 150px 0px;
}

img {
  max-width: 100%;
  height: auto;
}

.section-text {
  max-width: 600px;
  margin: 0 auto 0px auto;
}

.meta {
  font-size: 14px;
  line-height: 0;
}

.meta-head {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.light,
.light .icon,
.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6 {
  color: #fff;
}

.icon {
  color: #cacbcc;
  margin-bottom: 10px;
}

.icon-lg {
  color: #cacbcc;
  font-size: 3em;
  margin-bottom: 10px;
}

.icon-md {
  font-size: 2.5em;
}

.icon-sm {
  font-size: 2em;
}

.icon-xs {
  font-size: 1.5em;
}

.parallax-bg {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 20% 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.sub-input .custom-form {
  position: relative;
}

.sub-input .custom-form .form-control {
  height: 65px;
  border: 0;
  background-color: #fff;
  border-radius: 70px;
  padding: 0 0 0 20px;
  font-size: 18px;
}

.custom-form .form-control:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0),
    0 0 8px rgba(102, 175, 233, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0);
}

.sub-input .result-box {
  font-size: 24px;
}

.sub-input .custom-form .btn {
  text-transform: uppercase;
  border-radius: 0 70px 70px 0;
  -webkit-border-radius: 0 70px 70px 0;
  -moz-border-radius: 0 70px 70px 0;
  position: absolute;
  margin: 0;
  top: 0;
  right: 0;
  height: 100%;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.bg-grey {
  background: #f8f8f8;
}

.grdnt-blue:not(.overly) {
  background-image: -webkit-linear-gradient(45deg,
      #812dbd 0%,
      #066ce0 51%,
      #812dbd 100%);
  background-image: linear-gradient(45deg,
      #812dbd 0%,
      #066ce0 51%,
      #812dbd 100%);
}

.grdnt-yellow:not(.overly) {
  background-image: -webkit-linear-gradient(45deg,
      #dac46f 0%,
      #dac46f 51%,
      #dac46f 100%);
  background-image: linear-gradient(45deg,
      #dac46f 0%,
      #dac46f 51%,
      #dac46f 100%);
}

.grdnt-purple:not(.overly) {
  background-image: -webkit-linear-gradient(45deg,
      #fd81b5 0%,
      #c961f7 51%,
      #8089ff 100%);
  background-image: linear-gradient(45deg,
      #fd81b5 0%,
      #c961f7 51%,
      #8089ff 100%);
}

.grdnt-orange:not(.overly) {
  background-image: -webkit-linear-gradient(45deg,
      #fe60a1 0%,
      #ff8765 51%,
      #fe60a1 100%);
  background-image: linear-gradient(45deg,
      #fe60a1 0%,
      #ff8765 51%,
      #fe60a1 100%);
}

.grdnt-cyan:not(.overly) {
  background-image: -webkit-linear-gradient(45deg,
      #8089ff 0%,
      #54ceff 51%,
      #8089ff 100%);
  background-image: linear-gradient(45deg,
      #8089ff 0%,
      #54ceff 51%,
      #8089ff 100%);
}

.grdnt-green:not(.overly) {
  background-image: -webkit-linear-gradient(45deg, #00c9fd 0%, #81ee8e 51%, #00c9fd 100%);
  background-image: linear-gradient(45deg, #1e40af 0%, #06b6d4 51%, #1e40af 100%);
}

.grdnt-blue.overly:before {
  background-image: -webkit-linear-gradient(45deg,
      #812dbd 0%,
      #066ce0 51%,
      #812dbd 100%);
  background-image: linear-gradient(45deg,
      #812dbd 0%,
      #066ce0 51%,
      #812dbd 100%);
}

.grdnt-purple.overly:before {
  background-image: -webkit-linear-gradient(45deg,
      #fd81b5 0%,
      #c961f7 51%,
      #8089ff 100%);
  background-image: linear-gradient(45deg,
      #fd81b5 0%,
      #c961f7 51%,
      #8089ff 100%);
}

.grdnt-orange.overly:before {
  background-image: -webkit-linear-gradient(45deg,
      #fe60a1 0%,
      #ff8765 51%,
      #fe60a1 100%);
  background-image: linear-gradient(45deg,
      #fe60a1 0%,
      #ff8765 51%,
      #fe60a1 100%);
}

.grdnt-cyan.overly:before {
  background-image: -webkit-linear-gradient(45deg,
      #8089ff 0%,
      #54ceff 51%,
      #8089ff 100%);
  background-image: linear-gradient(45deg,
      #8089ff 0%,
      #54ceff 51%,
      #8089ff 100%);
}

.grdnt-green.overly:before {
  background-image: -webkit-linear-gradient(45deg, #00c9fd 0%, #81ee8e 51%, #00c9fd 100%);
  background-image: linear-gradient(45deg, #00c9fd 0%, #81ee8e 51%, #00c9fd 100%);
}

div[class*="grdnt-"],
section[class*="grdnt-"],
footer[class*="grdnt-"],
header[class*="grdnt-"],
nav[class*="grdnt-"],
a[class*="grdnt-"],
button[class*="grdnt-"],
div[class*="grdnt-"].overly:before,
section[class*="grdnt-"].overly:before,
footer[class*="grdnt-"].overly:before,
header[class*="grdnt-"].overly:before {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  background-size: 200% auto;
}

.btn[class*="grdnt-"] {
  -webkit-box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

a[class*="grdnt-"]:hover,
button[class*="grdnt-"]:hover {
  color: #fff;
  background-position: right center;
}

.bg-solid {
  background: #3ac8fc;
}

.overly {
  position: relative;
}

.overly * {
  position: relative;
  z-index: 1;
}

.overly:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.7;
}

.pad-0 {
  padding: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pb-0 {
  padding-bottom: 0;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.scroll-item {
  position: absolute;
}

.spce {
  clear: both;
  height: 20px;
  width: 100%;
}

.tamsayfaresim {
  padding: 60px 10px 60px 10px;
}

.spce.md {
  height: 40px;
}

.spce.lg {
  height: 60px;
}

.flx-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.align-flx-end {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.align-flx-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  /* justify-content */
}

.nav-tabs li a,
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
  background: transparent;
  border: 0;
  color: inherit;
}

.nav-tabs {
  border-bottom: 0;
}

.tab-container {
  z-index: 10;
}

.tab-vertical .tab-menu {
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.tab-vertical .tab-menu .tab-list li:first-child {
  margin-bottom: 0;
  margin-top: 40px;
}

.tab-vertical .tab-menu .tab-list li {
  margin-bottom: 0;
  position: relative;
  display: block;
  padding: 20px;
  color: inherit;
}

.tab-vertical .tab-menu .tab-list li.active {
  border-color: transparent;
  box-shadow: 0 1px 25px rgba(0, 0, 0, 0.1);
}

.tab-vertical .tab-pane {
  padding-left: 20px;
  padding-top: 10px;
}

.tab-horizon .tab-menu .tab-list {
  margin-bottom: 0;
  width: 100%;
  display: table;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.tab-horizon .tab-menu .tab-list li {
  margin-bottom: 0;
  width: 33.3%;
  display: table-cell;
  flex: 1 0;
  position: relative;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 7px 0;
  color: #fff;
  background: #ade5ff;
  cursor: pointer;
}

.tab-horizon .tab-menu .tab-list li a {
  line-height: 1;
}

.tab-horizon .tab-menu .tab-list li>a .icon,
.tab-horizon .nav-tabs>li.active>a,
.tab-horizon .nav-tabs>li.active>a:focus,
.tab-horizon .nav-tabs>li.active>a:hover {
  color: #fff;
}

.tab-horizon .tab-menu .tab-list li>a .glyphicon,
.tab-horizon .tab-menu .tab-list li>a .fa {
  color: #39c05e;
}

.tab-horizon .tab-menu .tab-list li:first-child {
  border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
}

.tab-horizon .tab-menu .tab-list li:last-child {
  border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
}

.tab-horizon .tab-menu .tab-list li.active,
.tab-horizon .tab-menu .tab-list li.active .glyphicon {
  background-color: #0facf3;
}

.tab-horizon .tab-menu .tab-list li.active .icon {
  color: #fff;
}

.tab-horizon .tab-menu .tab-list li.active:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  border-left: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0facf3;
  transform: translateX(-50%);
}

div[class*="grdnt-"] .tab-menu .tab-list li,
[class*="grdnt-"] .tab-menu .tab-list li,
[class*="grdnt-"] .tab-horizon .tab-pane,
[class*="grdnt-"] .tab-horizon .tab-pane h4 {
  background: transparent;
  color: #fff;
}

div[class*="grdnt-"] .tab-horizon .tab-menu .tab-list li.active,
[class*="grdnt-"] .tab-horizon .tab-menu .tab-list li.active,
[class*="grdnt-"] .tab-horizon .tab-menu .tab-list li.active .glyphicon {
  background-color: #fff;
  border-color: transparent;
  color: #0facf3;
}

div[class*="grdnt-"] .tab-horizon .tab-menu .tab-list li>a.active .icon,
[class*="grdnt-"] .tab-horizon .tab-menu .tab-list li>a.active .icon {
  color: #0facf3;
}

div[class*="grdnt-"] .tab-horizon .tab-menu .tab-list li>a.active::after,
[class*="grdnt-"] .tab-horizon .tab-menu .tab-list li>a.active::after {
  border-top-color: #fff;
}

.list-style {
  position: relative;
  margin-top: 30px;
}

.list-style li {
  padding-left: 30px;
}

div[class*="grdnt-"] .list-style li:before,
[class*="grdnt-"] .list-style li:before {
  color: #fff;
}

.list-style li:before {
  position: absolute;
  content: "\f00c";
  top: 3;
  left: 0;
  color: #10b981;
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.clr-green {
  color: #46da60;
}

.clr-blue {
  color: #0facf3;
}

.clr-red {
  color: #ff4954;
}

.clr-yellow {
  color: #ffbe00;
}

.social-holder a {
  margin-right: 15px;
}

.social-holder a:last-child {
  margin-right: 0px;
}

.btn-holder {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0;
  color: #fff;
  padding: 14px 25px;
  background: transparent;
  font-family: "montserrat", "open sans", sans-serif;
  font-weight: 600;
  font-size: 0.875em;
  letter-spacing: 1.7px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  border-radius: 70px;
  border: 0;
  margin-top: 5px;
}

.btn:not([class*="grdnt-"]) {
  padding: 0;
}

.btn p {
  line-height: 20px;
  font-size: 0.9em;
  text-align: left;
  margin: 0;
  float: right;
  text-transform: capitalize;
}

.btn span {
  font-size: 1.4em;
}

.btn i {
  margin-right: 10px;
  margin-top: 5px;
  font-size: 24px;
  float: left;
}

.btn+.btn {
  margin-left: 0px;
}

.btn-sm {
  font-size: 0.575em;
  padding: 10px 30px;
}

.btn-round i {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 24px;
  height: 80px;
  width: 80px;
  text-align: center;
  padding-top: 25px;
  color: #fff;
  display: inline-block;
  margin-right: 10px;
}

.btn-round i:hover {
  background-color: #fff;
  color: #0facf3;
}

.btn-round span {
  color: #fff;
  font-size: 18px;
}

.btn-white {
  background-color: #fff;
  color: #66686a;
  border: 1px solid #fff;
}

.btn-border {
  color: #fff;
  background: transparent;
  border-color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.btn-border:hover {
  background: #fff;
  color: #37404d;
}

.icon[class*="icon-bg"] {
  border-radius: 50%;
  color: #fff;
  margin: 0 auto;
  text-align: center;
}

.icon-bg {
  width: 100px;
  height: 100px;
  padding-top: 15px;
  margin-bottom: 15px;
  font-size: 2.5em;
}

.icon-bg-md {
  width: 60px;
  height: 60px;
  padding-top: 8px;
  font-size: 1.5em;
}

.app-slide .owl-item {
  visibility: hidden;
}

.app-slide .owl-item.active.center {
  visibility: visible;
}

.app-slide {
  position: absolute;
  top: 60px;
  right: 0;
  overflow: hidden;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 230px;
  left: 50%;
}

.carousel,
.item,
.active {
  height: 100%;
}

.carousel-inner {
  height: 100%;
  overflow: visible;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.fade-left {
  -webkit-animation: fadeinLeft 600ms ease-in-out;
  -moz-animation: fadeinLeft 600ms ease-in-out;
  animation-duration: 600ms;
  -o-animation: fadeinLeft 600ms ease-in-out;
  -ms-animation: fadeinLeft 600ms ease-in-out;
  animation: fadeinLeft 600ms ease-in-out;
  animation-duration: 600ms;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes fadeinLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(20%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}

@keyframes fadeinLeft {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.fade-up {
  -webkit-animation: fadeinUp 600ms ease-in-out;
  -moz-animation: fadeinUp 600ms ease-in-out;
  animation-duration: 600ms;
  -o-animation: fadeinUp 600ms ease-in-out;
  -ms-animation: fadeinUp 600ms ease-in-out;
  animation: fadeinUp 600ms ease-in-out;
  animation-duration: 600ms;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

@-moz-keyframes fadeinUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0%);
  }
}

@keyframes fadeinUp {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.carousel-control {
  width: auto;
  opacity: 1;
}

.carousel-control.left,
.carousel-control.right {
  background-image: none;
  filter: none;
  top: -20%;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  background: rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  padding-top: 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  font-family: "FontAwesome";
  text-shadow: none;
  font-size: 40px;
}

.carousel-control .glyphicon-chevron-left:hover,
.carousel-control .glyphicon-chevron-right:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-control .glyphicon-chevron-left {
  left: -40px;
}

.carousel-control .glyphicon-chevron-left:before {
  content: "\f104";
}

.carousel-control .glyphicon-chevron-right {
  right: -40px;
}

.carousel-control .glyphicon-chevron-right:before {
  content: "\f105";
}

.social-holder a {
  margin-right: 15px;
}

.social-holder a:last-child {
  margin-right: 0px;
}

.hide-block {
  overflow: hidden;
}

.hide-block img {
  position: relative;
  margin-bottom: -200px;
}

.hide-block a img {
  margin-bottom: 0;
}

.social-holder a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  padding-top: 10px;
  display: inline-block;
}

.type {
  position: relative;
}

.type:after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 2px;
  height: 100%;
  background-color: #fff;
}

.typed-cursor {
  display: none;
}

.screen .owl-dots,
.quote .owl-dots {
  width: 300px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}

.screen .owl-dot,
.quote .owl-dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin: 10px;
  border: 2px solid #0facf3;
}

.screen .owl-dot.active,
.quote .owl-dot.active {
  background: #0facf3;
}

div[class*="grdnt"] .screen .owl-dot,
[class*="grdnt"] .screen .owl-dot,
[class*="grdnt"] .quote .owl-dot {
  border: 2px solid #fff;
}

div[class*="grdnt"] .screen .owl-dot.active,
[class*="grdnt"] .screen .owl-dot.active,
[class*="grdnt"] .quote .owl-dot.active {
  background: #fff;
}

div[class*="style-"],
[class*="style-"] {
  position: relative;
}

div[class*="style-"]:after,
[class*="style-"]:after {
  position: absolute;
  content: "";
  background-size: contain !important;
  height: 100%;
  left: -1px;
  right: -1px;
  bottom: -40px;
  z-index: 1;
}

div[class*="-alt"]:after,
[class*="-alt"]:after {
  top: -40px;
}

.style-wave:after {
  background: url("../image/img-wave.png") bottom no-repeat;
}

.style-wave-zig:after {
  background: url("../image/img-wave-zig.png") bottom no-repeat;
}

.style-curve:after {
  background: url("../image/img-curve.png") bottom no-repeat;
}

.style-poly:after {
  background: url("../image/img-poly.png") bottom no-repeat;
}

.style-wave-alt:after {
  background: url("../image/img-wave-alt.png") top no-repeat;
}

.style-wave-zig-alt:after {
  background: url("../image/img-wave-zig-alt.png") top no-repeat;
}

.style-curve-alt:after {
  background: url("../image/img-curve-alt.png") top no-repeat;
}

.style-poly-alt:after {
  background: url("../image/img-poly-alt.png") top no-repeat;
}

.style-angle:after {
  -webkit-transform: skewY(176deg);
  transform: skewY(176deg);
  width: 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../image/loading.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

.navbar-header {
  max-width: 200px;
}

/* ==========================================================================
    5.0 Navbar Styling
   ========================================================================== */
.navbar-custom {
  background-color: transparent;
  border: none;
  padding: 15px 0px;
  -webkit-transition: padding 0.5s;
  -moz-transition: padding 0.5s;
  transition: padding 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
}

.navbar-custom:not(.navbar-fixed-top) {
  z-index: 10;
}

.navbar-custom.affix {
  position: fixed;
}

.navbar-custom .right-nav {
  float: right;
}

.navbar-custom .right-nav .nav-btn {
  float: right;
  margin-top: 3px;
}

.navbar-custom .navbar-brand {
  padding: 0px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.navbar-custom .navbar-brand.logo-clr,
.navbar-custom.affix .navbar-brand.logo-light {
  opacity: 0;
  width: 0;
}

.navbar-custom.affix .navbar-brand.logo-clr,
.navbar-custom .navbar-brand.logo-light {
  opacity: 1;
  width: auto;
}

.navbar-custom.affix .btn-border:hover {
  background: #39c05e;
  color: #fff;
  border-color: #39c05e;
}

.navbar-custom .navbar-toggle {
  border: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.35em;
  margin-right: 0px;
  padding: 0 12px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.navbar-custom .navbar-toggle:hover {
  background: transparent;
  opacity: 0.7;
}

.navbar-custom.affix .navbar-toggle {
  color: #37404d;
}

.navbar-custom ul li {
  margin: 0 15px;
}

.navbar-custom ul li:last-chlid {
  margin-right: 0px;
}

.navbar-custom ul li a {
  color: #fff;
  font-size: 0.8em;
  font-family: "montserrat", "open sans", sans-serif;
  font-weight: 600;
  padding: 15px 0;
}

.navbar-custom.affix ul li a {
  color: inherit;
}

.navbar-custom.affix ul li.active a {
  color: #0facf3;
}

.navbar-custom ul li.active a {
  position: relative;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.navbar-custom ul li a:after {
  position: absolute;
  display: inline-block;
  content: "";
  bottom: 0;
  width: 0;
  height: 3px;
  left: 50%;
  background: transparent;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

.navbar-custom ul li.active a:after,
.navbar-custom ul li a:hover:after {
  width: 50%;
  background: #fff;
}

.navbar-custom ul li a:hover {
  background: transparent;
}

.navbar-custom.affix ul li a:hover {
  color: #0facf3;
}

.navbar-custom.affix {
  padding: 10px 0px;
  border-bottom: 0px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.navbar-custom.affix ul li.active a:after {
  background: #0facf3;
}

.navbar-custom.affix .btn-border {
  border-color: inherit;
  color: inherit;
}

/* ==========================================================================
   6.0 Banner Styling
   ========================================================================== */
.hero {
  height: 750px;
  position: relative;
}

.hero-single {
  height: 450px;
}

.hero.style-angle:after {
  background: #fff;
  height: 30% !important;
  bottom: -90px;
}

.hero-content {
  z-index: 3;
  position: relative;
}

.hero.app-banner {
  height: 700px;
}

.hero .hero-content.intro-center {
  position: static;
  padding-top: 150px;
}

.hero-content .sub-input .btn {
  right: 8px;
}

.hero-content .intro-text .intro-heading {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: "montserrat";
  font-weight: 400;
  line-height: 60px;
}

.img-pre.pos-right {
  position: absolute;
  top: 0;
  right: 0;
}

/* ==========================================================================
    7.0 Specification Styling
   ========================================================================== */
.left-dir-col {
  text-align: right;
}

.left-dir-col .icon {
  float: right;
}

.left-dir-col .text {
  margin-right: 80px;
}

.right-dir-col .icon {
  float: left;
}

.right-dir-col .text {
  margin-left: 80px;
}

.left-dir-col .list,
.right-dir-col .list {
  margin-top: 10px;
  padding: 20px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  cursor: default;
}

/* ==========================================================================
   7.0 Screenshot Styling
   ========================================================================== */
.screenshot .owl-carousel .owl-item img {
  width: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.5;
}

.screenshot .owl-carousel .owl-item {
  padding: 30px 0;
}

.screenshot .owl-carousel .owl-item.active.center img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  box-shadow: 0px 0px 0px #000;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   8.0 testimonial Styling
   ========================================================================== */
.quote .quote-text {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}

.quote .quote-text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  border-left: 0 solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #fff;
}

.quote .owl-item img {
  height: 60px;
  width: 60px;
  border: 1px solid #fff;
  border-radius: 50px;
  float: left;
  margin-right: 15px;
}

.quote .owl-item {
  padding: 20px;
}

/* ==========================================================================
   9.0 Pricing Styling
   ========================================================================== */
.pricing .pricing-table:hover {
  box-shadow: 0 1px 25px rgba(0, 0, 0, 0.1);
}

.pricing {
  padding: 80px 0 90px 0;
}

.pricing .pricing-table {
  box-shadow: 0 1px 25px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  transform: scale(1);
  -webkit-transform: scale(1);
  background: #fff;
  border-radius: 10px;
}

.pricing .pricing-table.main {
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  position: relative;
  z-index: 10;
}

.pricing .pricing-table.main [class*="style-"]:after {
  bottom: -10px;
}

.pricing .pricing-table.main [class*="style-angle"]:after {
  background: #fff;
  height: 30% !important;
  bottom: -30px;
}

.pricing .pricing-table .pricing-content {
  margin-top: 40px;
}

.pricing .main-pricing {
  margin-top: 25px;
}

.pricing .pricing-header {
  padding: 40px;
}

.pricing .pricing-content .pricing-feature li {
  text-transform: uppercase;
}

.pricing .pricing-footer {
  padding: 40px 0px;
}

/* ==========================================================================
   10.0  blog Styling
   ========================================================================== */
.post-col {
  -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.post-col a:hover {
  color: inherit;
}

.post-col:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
}

.post-col .post-content {
  padding: 0 30px 30px 30px;
}

.post-meta {
  margin: 0;
}

.post-meta li {
  margin-right: 15px;
  display: inline-block;
  float: right;
}

.post-meta li:first-child {
  float: left;
}

.post-meta li a {
  font-size: 0.975em;
  color: #b4bcca;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.post-meta li i {
  margin-right: 5px;
}

.post .post-col a img {
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.post .post-col:hover a img {
  opacity: 0.7;
}

.blog a {
  display: block;
}

.blog a:hover {
  color: inherit;
}

.blog .tags a {
  display: inline-block;
  padding: 3px 5px;
  color: #0facf3;
  border: 1px solid #0facf3;
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.blog .tags a.active {
  background: #0facf3;
  color: #fff;
}

.blog .post-col {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.blog .post-content {
  padding: 0;
}

.blog .post-col:hover {
  transform: none;
}

.blog .sub-input .custom-form .form-control,
.blog .custom-form .form-control {
  height: 65px;
  border: 0;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
}

.blog .sub-input .custom-form .btn {
  text-transform: uppercase;
  border-radius: 0 5px 5px 0;
  margin: 0;
}

.blog .custom-form textarea {
  height: 120px !important;
}

.blog .custom-form .btn {
  border-radius: 5px;
}

.blog .sub-input .custom-form .btn i {
  margin: 0;
}

.blog .feature-text {
  padding-left: 50px;
  font-size: 1.5em;
  line-height: 42px;
  margin: 50px 150px 50px 0;
  border-left: 2px solid #000;
}

/* ==========================================================================
   11.0 Footer Styling
   ========================================================================== */
div[class*="style-"].footer-wrapper,
[class*="style-"].footer-wrapper {
  padding-top: 270px !important;
}

.footer-wrapper .footer-content {
  z-index: 10;
  position: relative;
}

.footer-wrapper .copyright {
  font-size: 0.9em;
}

/*intro*/
.demo div[class*="col-"] a {
  display: block;
  border: #dbdbdb;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  box-shadow: 0 6px 45px rgba(169, 169, 169, 0.1);
}

.demo div[class*="col-"] a:hover {
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-5%);
}



.qr-container {
  border-radius: 25px;
  padding: 70px 35px 35px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.qr-container img {
  width: 150px;
}

.logo-text {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.qr-img-box {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background-color: #fff;
  width: 110px;
  height: 110px;
  padding-bottom: 60%;
  position: absolute;
  top: -19%;
  left: 32%;
  box-shadow: 1px -1px 15px rgba(0, 0, 0, 0.15);
  padding-bottom: 0;
  z-index: 1;
}

.qr-img-box img {
  width: 70px;
  height: 70px;
}

.marg-low {
  margin-top: 100px;
  margin-bottom: 100px;
}

.flex-container {
  display: flex;
  justify-content: space-around;
}

.qr-container a {
  margin-top: 30px;
  cursor: pointer;
  color: #fff;
}

.qr-left {
  background-color: #6438c3;
}

.qr-mid {
  background-color: rgb(243, 198, 5);
}

.qr-right {
  background-color: #000;
}

.qr-text-box {
  margin-bottom: 200px;
}

.marg--low {
  margin-top: 200px;
  margin-bottom: 100px;
}

.img-1 {
  width: 90%;
}

.img-2 {
  width: 120%;
}

.img-3 {
  width: 120%;
}

.img-4 {
  width: 80%;
}

.feature-flx {
  display: flex;
  align-items: center;
  gap: 100px;
}

.marg-right {
  margin-right: 16px;
}

.marg-bot {
  margin-bottom: 100px;
}

.padd--low {
  padding-top: 150px;
  padding-bottom: 150px;
}

.img-text-box {
  margin-bottom: 100px;
}

.btn svg {
  margin-right: 10px;
  margin-top: 5px;
  font-size: 24px;
  float: left;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

  .download {

    margin-bottom: 5px;
    align-self: center;
  }

  body {
    font-size: .99em;
  }

  h1 {
    font-size: 2.5em
  }

  h2 {
    font-size: 2.25em
  }

  h3 {
    font-size: 2em
  }

  h4 {
    font-size: 1.75em
  }

  h5 {
    font-size: 1.5em
  }

  h6 {
    font-size: 1.25em
  }

  .hide-block img {
    margin-bottom: 0px;
  }

  .type {
    min-height: 100px;
  }

  .icon-bg-md {
    width: 50px;
    height: 50px;
  }

  .social-holder a {
    height: 40px;
    width: 40px;
  }

  div[class*="style-"].footer-wrapper,
  [class*="style-"].footer-wrapper {
    padding-top: 180px !important;
  }

  .res-center .icon {
    float: none;
    margin-bottom: 10px;
  }

  .res-center .left-dir-col .text,
  .res-center .right-dir-col .text {
    text-align: center;
    margin: 0
  }

  .flx-off-sm {
    display: block;
  }

  .res-center {
    text-align: center;
    display: block;
    float: none;
    padding: 0px 50px;
  }

  .hero {
    height: 750px;
    padding-top: 20px;
  }

  .hero-single {
    height: 300px;
  }

  .hero.style-angle::after {
    height: 20% !important;
    bottom: -30px;
  }

  div[class*="style-"]:after,
  [class*="style-"]:after {
    bottom: -10px;
  }

  .res-margin {
    margin-bottom: 60px;
  }

  .res-margin-sm {
    margin-bottom: 30px;
  }

  .res-margin-xs {
    margin-bottom: 15px;
  }

  .sec-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .sec-pad-lg {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .pb-0 {
    padding-bottom: 0;
  }

  .navbar-custom ul li {
    margin: 0 10px;
  }

  .hero-content .mockup {
    top: 30px;
    max-width: 350px;
  }

  .feature .section-text {
    padding: 0 40px 10px 40px;
  }

  .style-wave-alt::after {
    top: -30px;
  }

  .footer-wrapper .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
  }

  .navbar-header {
    max-width: 100%;
  }

  .navbar-brand>img {
    margin-left: -15px !important;
  }

  .blog .feature-text {
    margin: 20px 50px 20px 0;
  }

  .carousel-control .glyphicon-chevron-right {
    right: 0;
  }

  .carousel-control .glyphicon-chevron-left {
    left: 0;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    width: 50px;
    height: 50px;
    padding-top: 5px;
  }

  .flx-off-xs {
    display: block;
  }

  div[class*="-alt"]::after,
  [class*="-alt"]:after {
    top: -10px;
  }

  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero .img-pre {
    margin-top: 30px;
    width: auto;
  }

  .hero.style-1:after {
    height: 370px;
  }

  .navbar-custom {
    padding: 15px;
  }

  .navbar-custom ul li a {
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
  }

  .navbar-custom ul li:first-child a {
    border-top: 1px solid #eaeaea;
  }

  .navbar-custom ul li a::after {
    height: 0;
  }

  .navbar-custom.affix {
    padding: 15px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-custom .right-nav {
    float: none;
  }

  .navbar-custom .right-nav .nav-btn {
    text-align: center;
    float: none;
  }

  .navbar-collapse {
    margin-top: 10px;
    border-radius: 15px;
    background: #fff;
    padding: 20px 0;
    overflow-x: hidden;
  }

  .sec-pad,
  .sec-pad-lg {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .spce {
    height: 5px;
  }

  .spce.lg {
    height: 40px;
  }

  .tab-container {
    margin-left: 0;
  }

  .tab-list li {
    display: block;
  }

  .tab-list li a {
    padding: 3px 6px;
  }

  .screenshot .owl-carousel {
    margin-top: 0;
    margin-bottom: 0;
  }

  .btn-holder {
    margin-top: 10px;
  }

  .navbar-custom .navbar-brand {
    padding: 6px 0 0 0;
  }

  .navbar-custom ul li {
    margin: 0 10px;
  }

  .navbar-custom ul li a {
    font-weight: 700;
    color: inherit;
  }

  .navbar-custom ul li a:hover {
    color: #0facf3;
  }

  .navbar-custom ul li.active a {
    color: #0facf3;
  }

  .nav-btn .btn {
    margin-top: 8px;
  }

  .navbar-custom ul li:last-child a {
    padding: 0 20px 0 20px;
    line-height: 32px;
  }

  .navbar-custom:not(.navbar-fixed-top) .container {
    width: 100%;
  }

  .pricing {
    padding: 0 80px 0 80px;
  }

  .pricing .pricing-table,
  .pricing .pricing-table.main {
    transform: scale(1);

  }

  .parallaxie {
    background-attachment: scroll !important;
    background-position: 50% 50% !important;
  }

  div[class*="style-"].footer-wrapper,
  [class*="style-"].footer-wrapper {
    padding-top: 150px !important;
  }

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  iframe {
    width: 380 !important;
  }

  .btn {
    padding: 10px 15px;
    font-size: 0.775em;
  }

  .res-center {
    padding: 0px 15px;
  }

  .icon-bg {
    width: 80px;
    height: 80px;
    font-size: 2em;

  }

  .pricing {
    padding: 0;
  }

  .container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-text {
    margin: 0 auto 40px auto;
  }

  .tab-menu .tab-list a {
    display: block;
    text-align: center;
  }

  .sub-input .custom-form .btn {
    position: static;
    width: 100%;
    margin-top: 10px;
    border-radius: 70px;
    height: 50px;
  }

  .blog .sub-input .custom-form .btn {
    width: auto;
    position: absolute;
    height: 100%;
  }

  .sub-input .custom-form label {
    top: 14%;
  }

  .btn+.btn {
    margin-left: 0;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 360px) {
  iframe {
    width: 360 !important;
  }

  .navbar-brand img {
    width: 120px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

@media screen and (min-width: 800px) {
  #sil {
    display: block;
  }

  .tamsayfaresim {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  #sil {
    display: none;
  }

  .btn-holder img {
    max-width: 200px;
  }

  .tamsayfaresim {
    display: block;
  }
}





.reviews-wrapper {
  touch-action: pan-y;
  /* Sadece dikey kaydÄ±rmaya izin ver */
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  cursor: grab;
  user-select: none;
}

.reviews-wrapper:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;

}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  max-height: 250px;
  overflow: hidden;
  flex: 0 0 400px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin: 0 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
  background: #f0f0f0;
}

.review-avatar.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: 500;
  color: #202124;
  font-size: 14px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.local-guide {
  display: inline-flex;
  align-items: center;
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  color: #5f6368;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #70757a;
  font-size: 12px;
}

.review-rating {
  display: flex;
  gap: 1px;
}

.star {
  color: #fbbc04;
  font-size: 14px;
}

.star.empty {
  color: #e0e0e0;
}

.review-text {
  color: #3c4043;
  line-height: 1.5;
  font-size: 14px;
  margin: 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-images {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.review-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.review-image:hover {
  transform: scale(1.05);
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.google-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d35400;
  font-size: 11px;
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 12px;
}

.google-verified img {
  width: 14px;
  height: 14px;
}

.google-verified a:hover {
  color: #c0392b;
}

.review-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #70757a;
  font-size: 12px;
}

.review-source {
  color: #70757a;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #70757a;
}

.error {
  text-align: center;
  padding: 40px;
  color: #d93025;
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 320px;
  }
}

.review-source {
  color: #70757a;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: color 0.2s;
}

.review-source:hover {
  color: #1a73e8;
}

/* ==========================================
		   GLOBAL STYLES & MODERN DESIGN SYSTEM
		   ========================================== */
		
		/* Typography - Inter Font Family */
		*:not([class*="fa-"]):not(i) {
			font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
		}

		/* Modern Typography Scale */
		h1 {
			font-size: 3.5rem !important;
			font-weight: 800 !important;
			line-height: 1.2 !important;
			letter-spacing: -0.02em !important;
		}

		h2 {
			font-size: 2.5rem !important;
			font-weight: 700 !important;
			line-height: 1.3 !important;
			letter-spacing: -0.01em !important;
		}

		h3 {
			font-size: 1.875rem !important;
			font-weight: 600 !important;
			line-height: 1.4 !important;
		}

		h4, h5, h6 {
			font-weight: 600 !important;
			line-height: 1.5 !important;
		}

		p {
			font-size: 1.0625rem !important;
			line-height: 1.7 !important;
			color: #475569 !important;
		}

		/* Gradient ve dark background iÃ§indeki p'ler beyaz kalacak */
		div[class*="grdnt-"] p,
		[class*="grdnt-"] p,
		.dark-bg p,
		section[style*="background"] p[style*="color: white"],
		section[style*="background"] p[style*="color:white"],
		p[style*="color: white"],
		p[style*="color:white"] {
			color: white !important;
		}

		/* Custom Scrollbar */
		::-webkit-scrollbar {
			width: 10px;
			height: 10px;
		}

		::-webkit-scrollbar-track {
			background: #f1f5f9;
		}

		::-webkit-scrollbar-thumb {
			background: linear-gradient(135deg, #10b981 0%, #059669 100%);
			border-radius: 10px;
			transition: all 0.3s ease;
		}

		::-webkit-scrollbar-thumb:hover {
			background: linear-gradient(135deg, #059669 0%, #047857 100%);
		}

		/* Smooth Scroll */
		html {
			scroll-behavior: smooth;
		}

		/* Modern Shadows */
		.shadow-sm {
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
		}

		.shadow-md {
			box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
		}

		.shadow-lg {
			box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
		}

		.shadow-xl {
			box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
		}

		.musterilogo {
			width: 100px;
			height: 100px;
			object-fit: cover;
			border-radius: 50%;
			filter: grayscale(20%);
			transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		}

		.musterilogo:hover {
			filter: grayscale(0%);
			transform: scale(1.05);
		}

		/* Hero Section Enhancements */
		.hero {
			position: relative;
			overflow: hidden;
		}

		.hero::before {
			content: '';
			position: absolute;
			top: -50%;
			right: -20%;
			width: 600px;
			height: 600px;
			background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
			animation: float 20s ease-in-out infinite;
		}

		@keyframes float {
			0%, 100% { transform: translate(0, 0) scale(1); }
			33% { transform: translate(30px, -30px) scale(1.1); }
			66% { transform: translate(-20px, 20px) scale(0.9); }
		}

		.intro-text h1 {
			animation: fadeInUp 0.8s ease-out;
		}

		.intro-text p {
			animation: fadeInUp 1s ease-out 0.2s backwards;
		}

		.intro-text ul {
			animation: fadeInUp 1.2s ease-out 0.4s backwards;
		}

		@keyframes fadeInUp {
			from {
				opacity: 0;
				transform: translateY(30px);
			}
			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		.change_total_price_effect {
			display: inline-block;
			animation: priceEf 300ms ease-in-out;
			transform: scale(1);
		}

		@keyframes priceEf {
			0% {
				transform: scale(1);
			}

			50% {
				transform: scale(0.8);
			}

			100% {
				transform: scale(1);
			}
		}

		th {
			font-weight: normal;
		}

		.form-switch {
			padding-right: 10px;
			margin-top: 10px;
		}

		.switch {
			position: relative;
			display: inline-block;
			width: 60px;
			height: 34px;
		}

		.switch input {
			opacity: 0;
			width: 0;
			height: 0;
		}

		.slider {
			position: absolute;
			cursor: pointer;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background-color: #ccc;
			-webkit-transition: .4s;
			transition: .4s;
		}

		.slider:before {
			position: absolute;
			content: "";
			height: 26px;
			width: 26px;
			left: 4px;
			bottom: 4px;
			background-color: white;
			-webkit-transition: .4s;
			transition: .4s;
		}

		input:checked+.slider {
			background-color: #1e40af;
		}

		input:focus+.slider {
			box-shadow: 0 0 1px #1e40af;
		}

		input:checked+.slider:before {
			-webkit-transform: translateX(26px);
			-ms-transform: translateX(26px);
			transform: translateX(26px);
		}

		/* Rounded sliders */
		.slider.round {
			border-radius: 34px;
		}

		.slider.round:before {
			border-radius: 50%;
		}

		.instagram-media {
			height: 410px;
			margin: 5px;
		}

		/* Modern Pricing Styles */
		.addon-item {
			background: white;
			border: 2px solid #e5e7eb;
			border-radius: 12px;
			padding: 16px;
			margin-bottom: 12px;
			display: flex;
			align-items: center;
			gap: 14px;
			cursor: pointer;
			transition: all 0.2s ease;
		}
		.addon-item:hover {
			border-color: #10b981;
			box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
			transform: translateY(-2px);
		}
		.addon-item.active {
			border-color: #10b981;
			background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
		}
		.addon-checkbox {
			width: 24px;
			height: 24px;
			border: 2px solid #d1d5db;
			border-radius: 6px;
			flex-shrink: 0;
			transition: all 0.2s ease;
			position: relative;
		}
		.addon-item.active .addon-checkbox {
			background: linear-gradient(135deg, #10b981 0%, #059669 100%);
			border-color: #10b981;
		}
		.addon-item.active .addon-checkbox::after {
			content: 'âœ“';
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			color: white;
			font-size: 14px;
			font-weight: bold;
		}

		/* Customer Section Styles */
		.featured-customers-scroll {
			display: flex !important;
			flex-wrap: nowrap !important;
			gap: 30px;
			padding: 20px 0;
		}

		/* Integration Partners Section */
		.integration-partners {
			display: grid !important;
			grid-template-columns: repeat(6, 1fr);
			gap: 25px;
			margin: 0;
			padding: 0;
		}

		.integration-card {
			background: white;
			border: 2px solid #e5e7eb;
			border-radius: 20px;
			padding: 25px;
			display: flex;
			align-items: center;
			justify-content: center;
			min-height: 120px;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
			transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
			position: relative;
			overflow: hidden;
		}

		.integration-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
			opacity: 0;
			transition: opacity 0.4s ease;
		}

		.integration-card:hover::before {
			opacity: 1;
		}

		.integration-card:hover {
			transform: translateY(-8px) scale(1.02);
			box-shadow: 0 16px 40px rgba(102, 126, 234, 0.4);
		}

		.integration-card img {
			max-width: 100%;
			max-height: 70px;
			width: auto;
			height: auto;
			object-fit: contain;
			z-index: 1;
			position: relative;
		}

		.integration-card svg {
			max-width: 100%;
			max-height: 70px;
			width: auto;
			height: auto;
			z-index: 1;
			position: relative;
			opacity: 0.9;
		}

		#musterilogolari {
			display: flex !important;
			animation: scroll-logos 60s linear infinite !important;
			transform: translateX(0);
			will-change: transform;
		}

		#musterilogolari:hover {
			animation-play-state: paused;
		}

		@keyframes scroll-logos {
			0% {
				transform: translateX(0);
			}
			100% {
				transform: translateX(-50%);
			}
		}

		.customer-card {
			flex-shrink: 0;
			background: white;
			border-radius: 50%;
			padding: 15px;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
			transition: all 0.3s ease;
			display: flex;
			align-items: center;
			justify-content: center;
			width: 130px;
			height: 130px;
		}

		.customer-card:hover {
			transform: scale(1.1);
			box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
		}

		.customer-card img {
			width: 100%;
			height: 100%;
			object-fit: contain;
			border-radius: 50%;
		}

		.customer-card:hover .musterilogo {
			filter: grayscale(0%);
		}

		/* Integration Partners Section */
		.integration-partners {
			display: grid !important;
			grid-template-columns: repeat(6, 1fr);
			gap: 25px;
			margin: 0;
			padding: 0;
		}

		.integration-card {
			background: white;
			border: 2px solid #e5e7eb;
			border-radius: 20px;
			padding: 25px;
			display: flex;
			align-items: center;
			justify-content: center;
			min-height: 120px;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
			transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
			position: relative;
			overflow: hidden;
		}

		.integration-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
			opacity: 0;
			transition: opacity 0.4s ease;
		}

		.integration-card:hover::before {
			opacity: 1;
		}

		.integration-card:hover {
			transform: translateY(-8px) scale(1.02);
			box-shadow: 0 16px 40px rgba(102, 126, 234, 0.4);
		}

		.integration-card img {
			max-width: 100%;
			max-height: 70px;
			width: auto;
			height: auto;
			object-fit: contain;
			z-index: 1;
			position: relative;
		}

		.integration-card svg {
			max-width: 100%;
			max-height: 70px;
			width: auto;
			height: auto;
			z-index: 1;
			position: relative;
		}

		.video-card {
			position: relative;
			border-radius: 16px;
			overflow: hidden;
			cursor: pointer;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
			transition: all 0.3s ease;
			aspect-ratio: 16/9;
		}

		.video-card:hover {
			transform: translateY(-4px);
			box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
		}

		.video-card img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.video-card .play-button {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 64px;
			height: 64px;
			background: rgba(16, 185, 129, 0.95);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}

		.video-card:hover .play-button {
			background: #10b981;
			width: 72px;
			height: 72px;
		}

		.video-card .play-button i {
			color: white;
			font-size: 24px;
			margin-left: 4px;
		}
		
		/* Responsive Styles */
		@media (max-width: 992px) {
			h1 {
				font-size: 2.5rem !important;
			}
			
			h2 {
				font-size: 2rem !important;
			}
			
			#pricing > div {
				padding: 60px 30px !important;
			}
			#pricing > div > div:nth-child(2) {
				grid-template-columns: 1fr !important;
				gap: 40px !important;
			}
			#pricing h2 {
				font-size: 36px !important;
			}
			#pricing p {
				font-size: 16px !important;
			}

			#customers {
				padding: 60px 30px !important;
			}
			#customers h2 {
				font-size: 32px !important;
			}
			#customers h3 {
				font-size: 28px !important;
			}
			.customer-card {
				width: 110px !important;
				height: 110px !important;
				padding: 12px !important;
			}
			.musterilogo {
				width: 85px !important;
				height: 85px !important;
			}

		.integration-partners {
			grid-template-columns: repeat(3, 1fr) !important;
			gap: 25px !important;
		}

		.integration-card {
			min-height: 110px !important;
			padding: 20px !important;
		}
	}
	
	@media (max-width: 768px) {
		#pricing {
			padding: 50px 10px !important;
		}
		#pricing > div {
			padding: 0 !important;
		}
		#pricing > div > div:nth-child(2) {
			grid-template-columns: 1fr !important;
			gap: 25px !important;
			padding: 0 !important;
			}
			#pricing > div > div > div {
				transform: translateY(0) !important;
				margin: 0 !important;
			}
			#pricing .addon-item {
				padding: 14px 12px !important;
			}

			#customers {
				padding: 50px 20px !important;
			}
			#customers h2 {
				font-size: 28px !important;
			}
			#customers h3 {
				font-size: 24px !important;
			}
			#customers a {
				font-size: 18px !important;
			}
			.featured-customers-scroll {
				gap: 30px !important;
			}
			.customer-card {
				width: 100px !important;
				height: 100px !important;
				padding: 10px !important;
			}
			.musterilogo {
				width: 80px !important;
				height: 80px !important;
			}

		.integration-partners {
			grid-template-columns: repeat(2, 1fr) !important;
			gap: 20px !important;
			padding: 0 20px !important;
		}

		.integration-card {
			min-height: 100px !important;
			padding: 18px !important;
		}
			#pricing p {
				font-size: 15px !important;
			}
			#pricing > div > div:first-child {
				margin-bottom: 50px !important;
			}
			#pricing > div > div:nth-child(2) > div {
				border-radius: 20px !important;
			}
			#pricing [style*="font-size: 52px"] {
				font-size: 40px !important;
			}
			#pricing [style*="font-size: 20px"] {
				font-size: 16px !important;
			}
			#pricing [style*="padding: 50px 30px 30px"],
			#pricing [style*="padding: 40px 30px 30px"],
			#pricing [style*="padding: 60px 40px 35px"],
			#pricing [style*="padding: 50px 40px 35px"] {
				padding: 35px 20px 25px !important;
			}
			#pricing [style*="padding: 35px 25px"],
			#pricing [style*="padding: 40px 30px"] {
				padding: 25px 18px !important;
			}
			#pricing [style*="padding: 30px 25px"],
			#pricing [style*="padding: 35px 30px"] {
				padding: 25px 18px !important;
			}
			#pricing .addon-item {
				padding: 14px !important;
				gap: 12px !important;
			}
			#pricing .addon-item [style*="font-size: 15px"] {
				font-size: 14px !important;
			}
			#pricing .addon-item [style*="font-size: 16px"] {
				font-size: 14px !important;
			}
			#pricing [style*="font-size: 16px"][style*="font-weight: 700"] {
				font-size: 15px !important;
			}

			#customers {
				padding: 40px 15px !important;
			}
			#customers h2 {
				font-size: 24px !important;
				margin-bottom: 12px !important;
			}
			#customers p {
				font-size: 14px !important;
			}
			#customers h3 {
				font-size: 20px !important;
			}
			#customers a {
				font-size: 16px !important;
				flex-direction: column;
				gap: 8px !important;
			}
			.featured-customers-scroll {
				gap: 25px !important;
			}
			.customer-card {
				width: 90px !important;
				height: 90px !important;
				padding: 8px !important;
			}
			.musterilogo {
				width: 74px !important;
				height: 74px !important;
			}

			.integration-partners {
				grid-template-columns: repeat(2, 1fr) !important;
				gap: 18px !important;
			}

			.integration-card {
				min-height: 90px !important;
				padding: 16px !important;
			}

			.integration-card img,
			.integration-card svg {
				max-height: 50px !important;
			}
		}
/* ===================================
   2026 WHATSAPP WIDGET (NEW)
   =================================== */
.rsto-wa-wrapper-2026 {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    z-index: 2147483647; /* Max z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.rsto-wa-link-2026 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.rsto-wa-link-2026:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.rsto-wa-icon-box-2026 {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    position: relative;
}

.rsto-wa-icon-box-2026::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-pulse-2026 2s infinite;
    opacity: 0;
}

@keyframes wa-pulse-2026 {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.rsto-wa-info-2026 {
    display: flex;
    flex-direction: column;
}

.rsto-wa-title-2026 {
    font-weight: 700;
    color: #111827;
    font-size: 15px;
    line-height: 1.2;
}

.rsto-wa-status-2026 {
    font-size: 12px;
    color: #128C7E;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rsto-wa-dot-2026 {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: wa-blink-2026 1.5s infinite;
}

@keyframes wa-blink-2026 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .rsto-wa-wrapper-2026 {
        bottom: 20px;
        right: 20px;
    }
    
    .rsto-wa-link-2026 {
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    
    .rsto-wa-info-2026 {
        display: none;
    }
    
    .rsto-wa-icon-box-2026 {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* ===================================
   2026 MOBILE CTA (NEW)
   =================================== */
.rsto-mobile-cta-wrapper-2026 {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 90px; /* Space for WhatsApp widget */
    z-index: 9999;
    display: none; /* Hidden by default (desktop) */
}

@media (max-width: 768px) {
    .rsto-mobile-cta-wrapper-2026 {
        display: block;
        animation: slideUp 0.5s ease-out forwards;
    }
}

.rsto-mobile-cta-btn-2026 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.2s;
}

.rsto-mobile-cta-btn-2026:active {
    transform: scale(0.98);
}

.rsto-cta-content-2026 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rsto-cta-icon-2026 {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.rsto-cta-text-group-2026 {
    display: flex;
    flex-direction: column;
}

.rsto-cta-title-2026 {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.rsto-cta-subtitle-2026 {
    font-size: 11px;
    color: #1e40af;
    font-weight: 600;
}

.rsto-cta-action-2026 {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(255, 150, 113, 0.3);
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

