      :root {
        --ok-primary: #610d03;
        --ok-secondary: #d4a574;
        --ok-tertiary: #f4c542;
        --ok-dark: #2b1b0f;
        --ok-dark-light: #3d2a1a;
        --ok-light: #fff6e8;
        --ok-light-secondary: #fefcfa;
        --ok-accent: #ff6b35;
        --ok-accent-light: #ff8a65;
        --ok-success: #22c55e;
        --ok-info: #3b82f6;
        --ok-warning: #f59e0b;
        --ok-danger: #ef4444;

        --ok-gradient: linear-gradient(135deg, #c58b32 0%, #d4a574 50%, #ff6b35 100%);
        --ok-gradient-secondary: linear-gradient(135deg, #f4c542 0%, #c58b32 100%);
        --ok-gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
        --ok-gradient-hero: linear-gradient(120deg, rgba(43, 27, 15, 0.9), rgba(197, 139, 50, 0.7), rgba(255, 107, 53, 0.6));

        --ok-shadow: 0 20px 40px rgba(197, 139, 50, 0.1);
        --ok-shadow-lg: 0 25px 50px rgba(197, 139, 50, 0.25);
        --ok-shadow-xl: 0 35px 60px rgba(197, 139, 50, 0.3);

        --ok-border: 1px solid rgba(197, 139, 50, 0.1);
        --ok-border-light: 1px solid rgba(197, 139, 50, 0.05);

        --ok-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        --ok-transition-fast: all 0.2s ease;
        --ok-transition-slow: all 0.5s ease;
      }

      * {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Segoe UI", Arial, sans-serif;
        color: #2a2a2a;
        background: linear-gradient(180deg, #fff 0%, #fefcfa 100%);
        overflow-x: hidden;
      }

      .hero {
        background: #610d03 !important;
        color: #fff;
        padding: 50px 0 50px;
        position: relative;
        overflow: hidden;
        height: 300px;
        display: flex;
        align-items: center;
      }

      @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
      }

      .floating-element {
        position: absolute;
        font-size: 2rem;
        animation: float 6s ease-in-out infinite;
        z-index: 1;
      }

      .floating-1 { top: 20%; left: 10%; animation-delay: 0s; }
      .floating-2 { top: 60%; right: 15%; animation-delay: 2s; }
      .floating-3 { top: 40%; left: 5%; animation-delay: 4s; }
      .floating-4 { top: 80%; right: 10%; animation-delay: 1s; }

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

      .text-gradient {
        background: linear-gradient(135deg, #ffd700, #ff6b35, #c58b32);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

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

      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }

      @keyframes bounceIn {
        0% { transform: scale(0.3); opacity: 0; }
        50% { transform: scale(1.05); }
        70% { transform: scale(0.9); }
        100% { transform: scale(1); opacity: 1; }
      }

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

      .animate-slide-up { animation: slideUp 0.8s ease-out; }
      .animate-fade-in { animation: fadeIn 1s ease-out 0.3s both; }
      .animate-bounce-in { animation: bounceIn 0.8s ease-out; }
      .animate-float { animation: floatImg 3s ease-in-out infinite; }
      .animate-pulse { animation: pulse 2s infinite; }

      @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
      }

      .hero-image-container {
        position: relative;
        display: inline-block;
      }

      .image-overlay {
        position: absolute;
        top: -10px;
        right: -10px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      }

      .stat-item {
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: transform 0.3s ease;
      }

      .stat-item:hover {
        transform: translateY(-5px);
      }

      .testimonial-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(197, 139, 50, 0.1);
      }

      .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(197, 139, 50, 0.15);
        border-color: var(--ok-primary);
      }

      .quote-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        transition: transform 0.3s ease;
      }

      .testimonial-card:hover .quote-icon {
        transform: scale(1.2) rotate(5deg);
      }

      .avatar-wrapper {
        position: relative;
      }

      .avatar-wrapper::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: -5px;
        width: 15px;
        height: 15px;
        background: var(--ok-primary);
        border-radius: 50%;
        border: 2px solid #fff;
      }

      .btn-ozbek {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .btn-ozbek::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
      }

      .btn-ozbek:hover::before {
        left: 100%;
      }

      .btn-ozbek:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(197, 139, 50, 0.3);
      }

      .fas, .fab {
        transition: all 0.3s ease;
      }

      .feature-card:hover .fas {
        transform: scale(1.1);
        color: var(--ok-primary) !important;
      }

      .stats .col-md-3 {
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .stats .col-md-3:hover {
        transform: translateY(-10px);
      }

      .stats .fas {
        font-size: 3rem;
        margin-bottom: 1rem;
        transition: all 0.4s ease;
      }

      .stats .col-md-3:hover .fas {
        transform: scale(1.2) rotate(5deg);
        filter: drop-shadow(0 0 10px rgba(197, 139, 50, 0.3));
      }

      .process-item {
        position: relative;
      }

      .process-item::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: var(--ok-gradient);
        transition: width 0.4s ease;
      }

      .process-item:hover::after {
        width: 60px;
      }

      .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #fdf4e8 0%, #f9e8d2 100%);
        color: var(--ok-dark);
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
      }

      .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(197, 139, 50, 0.25);
      }

      .contact-item {
        padding: 15px 0;
        border-radius: 0;
        transition: all 0.3s ease;
        background: transparent;
        backdrop-filter: none;
        border: none;
        border-bottom: 1px solid rgba(197, 139, 50, 0.1);
      }

      .contact-item:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(197, 139, 50, 0.1);
      }
      
      .contact-item:last-child {
        border-bottom: none;
      }

      .contact-item a {
        color: var(--ok-dark) !important;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .contact-item a:hover {
        color: var(--ok-primary) !important;
        text-decoration: none;
      }

      footer a {
        color: #2a2a2a !important;
        transition: all 0.3s ease;
      }

      footer a:hover {
        transform: translateY(-2px);
        color: #610d03 !important;
      }

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

      .loading {
        animation: spin 1s linear infinite;
      }

      .modern-navbar {
        backdrop-filter: blur(10px);
        background: #610d03 !important;
        transition: all 0.3s ease;
        min-height: 70px;
      }

      .modern-navbar.scrolled {
        background: #610d03 !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      }

      .navbar-brand {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff !important;
        transition: all 0.3s ease;
      }

      .navbar-brand:hover {
        color: #fff !important;
        transform: scale(1.05);
      }

      .navbar-logo {
        height: 200px;
        width: auto;
        transition: all 0.3s ease;
      }

      .navbar-brand:hover .navbar-logo {
        transform: scale(1.05);
      }

      .brand-icon {
        font-size: 1.8rem;
        transition: transform 0.3s ease;
      }

      .navbar-brand:hover .brand-icon {
        transform: rotate(10deg);
      }

      .nav-link {
        font-weight: 500;
        color: #fff !important;
        position: relative;
        padding: 8px 16px !important;
        margin: 0 2px;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
      }

      /* Desktop navigation styles */
      @media (min-width: 992px) {
        .nav-link {
          font-size: 1.3rem;
          padding: 10px 20px !important;
        }

        .navbar-nav-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
        }

        .navbar-nav {
          display: flex;
          flex-direction: row;
          margin: 0;
          padding: 0;
        }
      }

      .nav-link:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
      }

      .nav-link.active {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
        font-weight: 600;
      }

      .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--ok-gradient);
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }

      .nav-link.active::after,
      .nav-link:hover::after {
        width: 80%;
      }

      .navbar-toggler {
        border: none;
        padding: 8px;
        transition: all 0.3s ease;
      }

      .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(197, 139, 50, 0.25);
      }

      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      }

      .stat-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(197, 139, 50, 0.1);
      }

      .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(197, 139, 50, 0.15);
        border-color: var(--ok-primary);
      }

      .progress-circle {
        position: relative;
        display: inline-block;
      }

      .progress-ring {
        transform: rotate(-90deg);
      }

      .progress-ring-circle {
        stroke-dasharray: 219.91;
        stroke-dashoffset: 219.91;
        transition: stroke-dashoffset 2s ease-in-out;
      }

      .progress-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        font-weight: bold;
        color: var(--ok-dark);
      }

      .stat-icon-wrapper {
        transition: all 0.3s ease;
      }

      .stat-card:hover .stat-icon-wrapper {
        transform: scale(1.1);
      }

      .ripple-effect {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        transform: scale(0);
        animation: ripple 0.6s linear;
        pointer-events: none;
      }

      @keyframes ripple {
        to {
          transform: scale(4);
          opacity: 0;
        }
      }

      @media (max-width: 768px) {
        .hero {
          padding: 100px 0 60px;
          text-align: center;
          height: auto;
        }

        .hero .display-3 {
          font-size: 2.5rem;
        }

        .hero .lead {
          font-size: 1rem;
        }

        .stat-card {
          margin-bottom: 20px;
        }

        .product-card {
          margin-bottom: 30px;
        }

        .navbar-brand {
          font-size: 1.3rem;
        }

        .floating-element {
          display: none;
        }

        .progress-circle {
          transform: scale(0.8);
        }

        .navbar-logo {
          width: 50% !important;
          height: auto !important;
          margin: 0 auto;
        }

        .navbar-nav-container {
          position: static;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .navbar-nav {
          flex-direction: row;
          justify-content: center;
          width: 100%;
          margin-top: 10px;
        }

        .navbar-nav .nav-item {
          margin: 0 10px;
        }

        .navbar-nav .nav-link {
          padding: 8px 12px;
          font-size: 0.9rem;
        }

        .navbar-nav-container .btn-ozbek {
          display: none;
        }
      }

      @media (max-width: 576px) {
        .hero {
          padding: 80px 0 40px;
        }

        .hero .display-3 {
          font-size: 2rem;
        }

        .hero .btn {
          padding: 12px 24px;
          font-size: 14px;
        }

        .stat-item {
          padding: 15px;
        }

        .stat-item .fs-3 {
          font-size: 1.5rem !important;
        }
      }

      @media (max-width: 991px) {
        .navbar-collapse {
          background: rgba(97, 13, 3, 0.95);
          backdrop-filter: blur(10px);
          border-radius: 10px;
          margin-top: 10px;
          padding: 20px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .nav-link {
          padding: 12px 20px !important;
          margin: 5px 0;
          border-radius: 8px;
          color: #fff !important;
        }

        .nav-link:hover {
          background: rgba(255, 255, 255, 0.1) !important;
          color: #fff !important;
        }

        .btn-ozbek {
          margin-top: 15px;
          width: 100%;
        }
      }

      .modern-footer {
        background: #610d03;
        position: relative;
        overflow: hidden;
      }

      .modern-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: white;
      }

      .footer-icon {
        font-size: 1.5rem;
      }

      .footer-badges .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        border-radius: 20px;
      }

      .footer-links {
        line-height: 2;
      }

      .footer-links a {
        color: white !important;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
      }

      .footer-links a:hover {
        color: white !important;
        transform: translateX(5px);
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: white;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
      }

      .social-link:hover {
        transform: translateY(-3px) scale(1.1);
        background: var(--ok-primary);
      }

      .social-link.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
      .social-link.facebook:hover { background: #1877f2; }
      .social-link.youtube:hover { background: #ff0000; }
      .social-link.whatsapp:hover { background: #25d366; }

      .contact-info a {
        color: white !important;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
      }

      .contact-info a:hover {
        color: white !important;
        text-decoration: none;
      }

      .footer-bottom-links a {
        color: white !important;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .footer-bottom-links a:hover {
        color: white !important;
        opacity: 1;
      }

      @media (max-width: 768px) {
        .modern-footer .row > div {
          text-align: center;
          margin-bottom: 30px;
        }

        .social-links {
          justify-content: center;
        }

        .footer-bottom-links {
          text-align: center;
        }

        .footer-bottom-links a {
          display: block;
          margin: 5px 0;
        }
      }
      .hero .badge {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      .btn-ozbek {
        background: var(--ok-primary);
        color: #fff;
        border: none;
      }
      .btn-ozbek:hover {
        background: #b0782c;
        color: #fff;
      }
      .section-title {
        color: var(--ok-dark);
      }
      .feature-card {
        background: var(--ok-light);
        border: 1px solid #f1e2cf;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
      }

      .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(197, 139, 50, 0.1), transparent);
        transition: left 0.5s;
      }

      .feature-card:hover::before {
        left: 100%;
      }

      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(197, 139, 50, 0.2);
        border-color: var(--ok-primary);
      }

      .product-card {
        border-radius: 25px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      }

      .product-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(197, 139, 50, 0.25);
      }

      .product-card img {
        height: 240px;
        object-fit: cover;
        transition: transform 0.4s ease;
      }

      .product-card:hover img {
        transform: scale(1.1);
      }

      .product-card .card-body {
        padding: 25px;
        background: linear-gradient(135deg, #fff 0%, #fefcfa 100%);
      }

      .product-card .card-title {
        color: var(--ok-dark);
        margin-bottom: 10px;
        transition: color 0.3s ease;
      }

      .product-card:hover .card-title {
        color: var(--ok-primary);
      }

      .product-card .btn {
        border-radius: 25px;
        padding: 8px 20px;
        font-weight: 600;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
      }

      .product-card:hover .btn {
        opacity: 1;
        transform: translateY(0);
      }
      .stats {
        background: #fdf4e8;
      }
      .cta-strip {
        background: var(--ok-dark);
        color: #fff;
      }
      .faq .accordion-button:not(.collapsed) {
        background: #fdf4e8;
        color: var(--ok-dark);
      }
      footer {
        background: #AFE1AF;
        color: #2a2a2a;
      }

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ok-primary);
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(197, 139, 50, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.floating-btn::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.5s;
}

.floating-btn:hover::before {
  left: 100%;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(197, 139, 50, 0.6);
}

.floating-btn i {
  font-size: 1.3rem;
  z-index: 1;
}

.floating-btn .btn-text {
  position: absolute;
  right: 70px;
  background: rgba(43, 27, 15, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.floating-btn:hover .btn-text {
  opacity: 1;
  transform: translateX(0);
}

.phone-btn {
  background: var(--ok-primary);
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #128c7e;
}

.order-btn {
  background: #b0782c;
}

.order-btn:hover {
  background: #8f6022;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    gap: 0;
    animation: none;
    max-width: 100vw;
  }

  .floating-btn {
    flex: 1;
    height: 50px;
    border-radius: 0px;
    animation: none;
    transition: none;
    width: auto;
    max-width: calc(100% / 3);
  }

  .floating-btn::before {
    display: none;
  }

  .floating-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .floating-btn .btn-text {
    display: inline-block;
    position: static;
    background: transparent;
    padding: 0;
    margin-left: 8px;
    opacity: 1;
    transform: none;
    font-size: 0.9rem;
  }

  .floating-btn:hover .btn-text {
    transform: none;
  }
}