/* Container */
.user-dropdown-container {
    position: relative;
    display: inline-block;
}

/* The Box */
.dropdown-content {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 12px;
    z-index: 1000;
    overflow: hidden;
    display: none; 
}

/* Show box when active */
.dropdown-content.active {
    display: block;
}

/* Base style for the links inside */
.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    transition: background 0.2s;
    
    /* LINKS START STATE (Hidden & Shifted) */
    opacity: 0;
    transform: translateY(-20px);
}

/* ANIMATION: When active, run the 'dropIn' animation */
.dropdown-content.active a {
    animation: dropIn 0.4s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered Delays: Each link waits a bit longer */
.dropdown-content.active a:nth-child(1) { animation-delay: 0.1s; }
.dropdown-content.active a:nth-child(2) { animation-delay: 0.2s; }
.dropdown-content.active a:nth-child(3) { animation-delay: 0.3s; }
.dropdown-content.active a:nth-child(4) { animation-delay: 0.4s; }

@keyframes dropIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.dropdown-content a:hover {
    background-color: #f1f5f9;
}

.dropdown-content a i {
    width: 20px;
    text-align: center;
}

.feedback-form h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #333;
}

.feedback-form p {
  margin-bottom: 20px;
  color: #555;
}


/* Desktop only */
@media (min-width: 1024px) {
    #testimonials {
        height: 500px;
        display: flex;
        align-items: center;      /* center vertically */
        justify-content: center;  /* center horizontally */
    }
}

/* Mobile/Tablet: auto height */
@media (max-width: 1023px) {
    #testimonials {
        height: auto;
        padding: 20px 0;
    }
}


.feedback-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.feedback-btn {
  padding: 12px 25px;
  background-color: #1565c0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.feedback-btn:hover {
  background-color: #0d47a1;
}

/* Star rating styles */
.feedback-stars span {
  font-size: 2rem;
  cursor: pointer;
  color: #ccc; /* default gray */
  margin-right: 5px;
  transition: color 0.2s;
}

.feedback-stars .selected {
  color: gold;
}

/* Modal styles */
.feedback-modal {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
}

.feedback-modal-content {
  background:#fff;
  padding:25px;
  border-radius:12px;
  text-align:center;
}

.feedback-btn-secondary {
  padding: 10px 20px;
  background:#999;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}


    .footer .brand {
      text-align: center;
    }

    .footer .footer-logo {
      height: 80px;
      width: auto;
      display: block;
      margin: 0 auto 0.75rem auto;
      border: 0;
      border-radius: 0;
      outline: none;
      background: transparent;
      object-fit: contain;
    }

    .footer img {
      border: 0;
      border-radius: 0;
      outline: none;
    }


    /* Enhanced Mobile Responsive Hero Section */
    
    /* Large Tablets and Small Desktops */
    @media (max-width: 1024px) {
      .hero {
        padding: 4rem 0 3rem 0;
        min-height: 90vh;
      }
      
      .hero .container {
        padding: 0 1.5rem;
        max-width: 900px;
      }
      
      .hero h1 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        margin-bottom: 1.2rem;
        line-height: 1.2;
      }
      
      .hero p {
        font-size: clamp(1.1rem, 1.8vw, 1.3rem);
        margin-bottom: 2rem;
        line-height: 1.5;
      }
      
      .hero-ship {
        width: 280px;
        height: 90px;
        bottom: 10vh;
      }
      
      .hero-waves {
        height: 25vh;
        min-height: 120px;
        max-height: 250px;
      }
    }
    
    /* Tablets */
    @media (max-width: 768px) {
      .hero {
        padding: 1.5rem 0;
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      
      .hero .container {
        padding: 1.5rem 1rem;
        max-width: 100%;
        width: 100%;
        max-height: 95vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
      }
      
      .hero h1 {
        font-size: clamp(1.8rem, 4.5vw, 2.6rem);
        margin-bottom: 1rem;
        line-height: 1.25;
        letter-spacing: -0.4px;
      }
      
      .hero p {
        font-size: clamp(0.95rem, 2vw, 1.15rem);
        margin-bottom: 1.75rem;
        line-height: 1.5;
        max-width: 100%;
      }

      .hero-buttons {
        margin-top: 1.25rem;
        gap: 1rem;
      }
      
      .hero-ship {
        width: 200px;
        height: 70px;
        bottom: 8vh;
      }
      
      .hero-waves {
        height: 20vh;
        min-height: 100px;
        max-height: 200px;
      }
      
      .hero-cloud {
        filter: blur(0.3px) drop-shadow(0 1px 4px rgba(0,0,0,0.03));
      }
      
      .cloud1 { width: 80px; height: 32px; }
      .cloud2 { width: 90px; height: 36px; }
      .cloud3 { width: 60px; height: 24px; }
      .cloud4 { width: 70px; height: 28px; }
      .cloud5 { width: 50px; height: 20px; }
      
      .hero-plane {
        width: 160px;
        height: 50px;
        top: 2vh;
      }
    }
    
    /* Mobile Phones */
    @media (max-width: 480px) {
      .hero {
        padding: 0;
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
      }
      
      .hero .container {
        padding: 1.5rem 1rem;
        width: 100%;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 10;
      }
      
      .hero h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
        letter-spacing: -0.3px;
        max-width: 100%;
      }
      
      .hero p {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        margin-bottom: 1.25rem;
        line-height: 1.5;
        max-width: 100%;
        opacity: 0.95;
      }

      .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
        align-items: center;
        width: 100%;
        margin-top: 1rem;
      }
      
      .hero-buttons .btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
        font-weight: 600;
        min-height: 50px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        width: 100%;
        max-width: 280px;
      }
      
      .hero-ship {
        width: 140px;
        height: 50px;
        bottom: 6vh;
      }
      
      .hero-waves {
        height: 15vh;
        min-height: 80px;
        max-height: 150px;
      }
      
      .hero-cloud {
        filter: blur(0.2px) drop-shadow(0 1px 3px rgba(0,0,0,0.02));
      }
      
      .cloud1 { width: 60px; height: 24px; }
      .cloud2 { width: 70px; height: 28px; }
      .cloud3 { width: 45px; height: 18px; }
      .cloud4 { width: 55px; height: 22px; }
      .cloud5 { width: 40px; height: 16px; }
      
      .hero-plane {
        width: 120px;
        height: 40px;
        top: 1.5vh;
      }
      
      .hero-anim-bg {
        min-height: 70vh;
      }
    }
    
    /* Extra Small Mobile Phones */
    @media (max-width: 360px) {
      .hero {
        padding: 0;
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
      }
      
      .hero .container {
        padding: 1.25rem 0.875rem;
        width: 100%;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
      }
      
      .hero h1 {
        font-size: clamp(1.4rem, 4.5vw, 1.9rem);
        margin-bottom: 0.65rem;
        line-height: 1.2;
      }
      
      .hero p {
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
        margin-bottom: 1rem;
        line-height: 1.5;
      }

      .hero-buttons {
        gap: 0.75rem;
        margin-top: 0.875rem;
      }
      
      .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
        max-width: 100%;
      }
      
      .hero-ship {
        width: 100px;
        height: 35px;
        bottom: 5vh;
      }
      
      .hero-waves {
        height: 12vh;
        min-height: 60px;
        max-height: 120px;
      }
      
      .cloud1 { width: 50px; height: 20px; }
      .cloud2 { width: 60px; height: 24px; }
      .cloud3 { width: 35px; height: 14px; }
      .cloud4 { width: 45px; height: 18px; }
      .cloud5 { width: 30px; height: 12px; }
      
      .hero-plane {
        width: 100px;
        height: 35px;
        top: 1vh;
      }
    }
    
    /* Landscape Mobile Phones */
    @media (max-width: 768px) and (orientation: landscape) {
      .hero {
        min-height: 60vh;
        padding: 2rem 0 1rem 0;
      }
      
      .hero h1 {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        margin-bottom: 0.8rem;
      }
      
      .hero p {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        margin-bottom: 1.5rem;
      }
      
      .hero-ship {
        width: 180px;
        height: 60px;
        bottom: 8vh;
      }
      
      .hero-waves {
        height: 18vh;
        min-height: 90px;
      }
    }
    
    /* Touch-friendly improvements for mobile */
    @media (max-width: 768px) {
      .hero .btn {
        min-width: 160px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
      }
      
      .hero .btn:active {
        transform: translateY(1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      }
    }
    
    /* High DPI displays */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .hero-cloud,
      .hero-ship,
      .hero-plane {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
      }
    }
    
    /* Reduced motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
      .hero-cloud,
      .hero-ship,
      .hero-waves,
      .hero-plane {
        animation: none;
      }
      
      .hero {
        background: linear-gradient(180deg, #0d47a1 0%, #1976d2 40%, #4fc3f7 100%);
        background-size: 100% 100%;
        animation: none;
      }
    }

    /* Enhanced Mobile Responsive Quote Section */
    
    /* Large Tablets and Small Desktops */
    @media (max-width: 1024px) {
      .quote {
        padding: 2.5rem 0;
      }
      
      .quote-flex {
        max-width: 800px;
        margin: 0 1rem;
        border-radius: 14px;
      }
      
      .quote-info {
        flex: 0 0 250px;
        padding: 2rem 1.5rem;
      }
      
      .quote-form {
        padding: 2rem 1.5rem;
      }
      
      .quote-form h2 {
        font-size: 1.5rem;
      }
    }
    
    /* Tablets */
    @media (max-width: 768px) {
      .quote {
        padding: 2rem 0;
      }
      
      .quote-flex {
        flex-direction: column;
        max-width: 100%;
        margin: 0 0.8rem;
        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(25, 118, 210, 0.1);
      }
      
      .quote-info {
        flex: none;
        padding: 2rem 1.5rem;
        border-radius: 12px 12px 0 0;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        gap: 1rem;
      }
      
      .quote-info::after {
        display: none;
      }
      
      .quote-info-item {
        flex: 1;
        margin-bottom: 0;
        max-width: none;
      }
      
      .quote-info-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
      }
      
      .quote-info-icon svg {
        width: 18px;
        height: 18px;
      }
      
      .quote-info-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
      }
      
      .quote-info-content p {
        font-size: 0.8rem;
        line-height: 1.3;
      }
      
      .quote-form {
        padding: 2rem 1.5rem;
        border-radius: 0 0 12px 12px;
      }
      
      .quote-form h2 {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
      }
      
      .quote-form p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
      }
      
      #quoteForm {
        gap: 0.8rem;
      }
      
      #quoteForm input, #quoteForm textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 6px;
        border: 1.5px solid #e3f2fd;
        min-height: 44px;
      }
      
      .quote-form .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 6px;
        margin-top: 0.5rem;
      }
    }
    
    /* Mobile Phones */
    @media (max-width: 480px) {
      .quote {
        padding: 1.5rem 0;
      }
      
      .quote-flex {
        margin: 0 0.5rem;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
      }
      
      .quote-info {
        flex-direction: column;
        padding: 1.5rem 1rem;
        border-radius: 10px 10px 0 0;
        gap: 1.2rem;
      }
      
      .quote-info-item {
        margin-bottom: 0;
        max-width: 100%;
      }
      
      .quote-info-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.4rem;
      }
      
      .quote-info-icon svg {
        width: 16px;
        height: 16px;
      }
      
      .quote-info-content h4 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        font-weight: 600;
      }
      
      .quote-info-content p {
        font-size: 0.75rem;
        line-height: 1.3;
      }
      
      .quote-form {
        padding: 1.5rem 1rem;
        border-radius: 0 0 10px 10px;
      }
      
      .quote-form h2 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
      }
      
      .quote-form p {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
      }
      
      #quoteForm {
        gap: 0.7rem;
      }
      
      #quoteForm input, #quoteForm textarea {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
        border-radius: 5px;
        border: 1px solid #e3f2fd;
        min-height: 44px;
      }
      
      #quoteForm textarea {
        min-height: 100px;
        resize: vertical;
      }
      
      .quote-form .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 5px;
        margin-top: 0.3rem;
        min-height: 44px;
      }
    }
    
    /* Extra Small Mobile Phones */
    @media (max-width: 360px) {
      .quote {
        padding: 1rem 0;
      }
      
      .quote-flex {
        margin: 0 0.3rem;
        border-radius: 8px;
      }
      
      .quote-info {
        padding: 1.2rem 0.8rem;
        border-radius: 8px 8px 0 0;
        gap: 1rem;
      }
      
      .quote-info-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.3rem;
      }
      
      .quote-info-icon svg {
        width: 14px;
        height: 14px;
      }
      
      .quote-info-content h4 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
      }
      
      .quote-info-content p {
        font-size: 0.7rem;
        line-height: 1.2;
      }
      
      .quote-form {
        padding: 1.2rem 0.8rem;
        border-radius: 0 0 8px 8px;
      }
      
      .quote-form h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }
      
      .quote-form p {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
      }
      
      #quoteForm input, #quoteForm textarea {
        padding: 0.6rem 0.7rem;
        font-size: 0.75rem;
        border-radius: 4px;
        min-height: 40px;
      }
      
      #quoteForm textarea {
        min-height: 90px;
      }
      
      .quote-form .btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        border-radius: 4px;
        min-height: 40px;
      }
    }
    
    /* Landscape Mobile Phones */
    @media (max-width: 768px) and (orientation: landscape) {
      .quote-info {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.8rem;
      }
      
      .quote-info-item {
        flex: 1;
      }
      
      .quote-info-content p {
        font-size: 0.7rem;
        line-height: 1.2;
      }
    }
    
    /* Touch-friendly improvements for mobile */
    @media (max-width: 768px) {
      .quote-info-icon {
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .quote-info-icon:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
      }
      
      .quote-info-icon:active {
        transform: scale(0.95);
      }
      
      #quoteForm input, #quoteForm textarea {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
      }
      
      .quote-form .btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        min-width: 120px;
      }
      
      .quote-form .btn:active {
        transform: translateY(1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      }
    }

    /* Professional Pricing Action Buttons */
    .pricing-actions {
      display: flex;
      gap: 12px;
      margin-top: 20px;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
      box-sizing: border-box;
    }

    .pricing-btn-order {
      flex: 1;
      min-width: 140px;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      min-height: 48px;
      background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
      text-align: center;
      white-space: nowrap;
    }

    .pricing-btn-order::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;
    }

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

    .pricing-btn-order:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
      background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    }


    .pricing-btn-login {
      flex: 1;
      min-width: 140px;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      min-height: 48px;
      background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
      box-sizing: border-box;
      text-align: center;
      white-space: nowrap;
    }

    .pricing-btn-login:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
      background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    }

    .pricing-btn-register {
      flex: 1;
      min-width: 140px;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      border: 2px solid #1976d2;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      min-height: 48px;
      background: white;
      color: #1976d2;
      box-shadow: 0 2px 10px rgba(25, 118, 210, 0.1);
      box-sizing: border-box;
      text-align: center;
      white-space: nowrap;
    }

    .pricing-btn-register:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(25, 118, 210, 0.2);
      background: #1976d2;
      color: white;
    }

    /* Mobile Responsive for Pricing Buttons - 2 Row Side-by-Side Layout */
    @media (max-width: 768px) {
      .pricing-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 12px 8px !important;
        margin-top: 20px !important;
        width: 100% !important;
        padding: 0 !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .pricing-btn-order,
      .pricing-btn-login,
      .pricing-btn-register {
        flex: none !important;
        width: 100% !important;
        min-width: auto !important;
        padding: 16px 14px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        min-height: 56px !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        border: 2px solid !important;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15) !important;
      }

      /* Login button - Full width on first row */
      .pricing-btn-login {
        grid-column: 1 / -1 !important;
        order: 1 !important;
        background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%) !important;
        border-color: #1976d2 !important;
        color: white !important;
        box-shadow: 0 3px 15px rgba(25, 118, 210, 0.25) !important;
      }

      /* Order button - Left side of second row */
      .pricing-btn-order {
        grid-column: 1 !important;
        order: 2 !important;
        background: linear-gradient(135deg, #e53935 0%, #ff5722 100%) !important;
        border-color: #e53935 !important;
        color: white !important;
        box-shadow: 0 3px 15px rgba(229, 57, 53, 0.25) !important;
      }

      /* Register button - Right side of second row */
      .pricing-btn-register {
        grid-column: 2 !important;
        order: 3 !important;
        background: white !important;
        color: #1976d2 !important;
        border-color: #1976d2 !important;
        box-shadow: 0 3px 15px rgba(25, 118, 210, 0.2) !important;
      }

      /* Button hover effects */
      .pricing-btn-login:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 20px rgba(25, 118, 210, 0.35) !important;
        background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%) !important;
      }

      .pricing-btn-order:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 20px rgba(229, 57, 53, 0.35) !important;
        background: linear-gradient(135deg, #d32f2f 0%, #e53935 100%) !important;
      }

      .pricing-btn-register:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 20px rgba(25, 118, 210, 0.3) !important;
        background: #1976d2 !important;
        color: white !important;
      }

      .pricing-btn-order svg,
      .pricing-btn-login svg,
      .pricing-btn-register svg {
        margin-right: 8px !important;
        flex-shrink: 0 !important;
        width: 20px !important;
        height: 20px !important;
      }
    }

    @media (max-width: 480px) {
      .pricing-actions {
        margin-top: 15px !important;
        gap: 10px 6px !important;
        padding: 0 !important;
        grid-template-columns: 1fr 1fr !important;
      }

      .pricing-btn-order,
      .pricing-btn-login,
      .pricing-btn-register {
        width: 100% !important;
        padding: 14px 12px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        min-height: 52px !important;
        border-radius: 8px !important;
        border: 2px solid !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important;
      }

      .pricing-btn-login {
        border-color: #1976d2 !important;
        box-shadow: 0 2px 12px rgba(25, 118, 210, 0.2) !important;
        background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%) !important;
        color: white !important;
      }

      .pricing-btn-order {
        border-color: #e53935 !important;
        box-shadow: 0 2px 12px rgba(229, 57, 53, 0.2) !important;
        background: linear-gradient(135deg, #e53935 0%, #ff5722 100%) !important;
        color: white !important;
      }

      .pricing-btn-register {
        border-color: #1976d2 !important;
        box-shadow: 0 2px 12px rgba(25, 118, 210, 0.15) !important;
        background: white !important;
        color: #1976d2 !important;
      }

      .pricing-btn-order svg,
      .pricing-btn-login svg,
      .pricing-btn-register svg {
        width: 18px !important;
        height: 18px !important;
        margin-right: 6px !important;
      }
    }

    @media (max-width: 360px) {
      .pricing-actions {
        margin-top: 12px !important;
        gap: 8px 4px !important;
        padding: 0 !important;
      }

      .pricing-card {
        height: 700px !important;
      }

      .pricing-btn-order,
      .pricing-btn-login,
      .pricing-btn-register {
        width: 100% !important;
        padding: 12px 10px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        min-height: 48px !important;
        border-radius: 6px !important;
        border: 2px solid !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
      }

      .pricing-btn-login {
        border-color: #1976d2 !important;
        box-shadow: 0 2px 10px rgba(25, 118, 210, 0.15) !important;
        background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%) !important;
        color: white !important;
      }

      .pricing-btn-order {
        border-color: #e53935 !important;
        box-shadow: 0 2px 10px rgba(229, 57, 53, 0.15) !important;
        background: linear-gradient(135deg, #e53935 0%, #ff5722 100%) !important;
        color: white !important;
      }

      .pricing-btn-register {
        border-color: #1976d2 !important;
        box-shadow: 0 2px 10px rgba(25, 118, 210, 0.12) !important;
        background: white !important;
        color: #1976d2 !important;
      }

      .pricing-btn-order svg,
      .pricing-btn-login svg,
      .pricing-btn-register svg {
        width: 16px !important;
        height: 16px !important;
        margin-right: 5px !important;
      }
    }

    /* Minimalist Product Card Style - Like Image */
    @media (max-width: 768px) {
      .pricing-card {
        padding: 0 !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border: none !important;
        border-radius: 8px !important;
        background: #fff !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: 500px !important;
      }

      .pricing-card:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
      }

      /* Product Image - Clean and Minimalist */
      .pricing-card .box-image {
        width: 100% !important;
        height: 230px !important;
        object-fit: cover !important;
        border-radius: 8px 8px 0 0 !important;
        margin-bottom: 0 !important;
        border: none !important;
        box-shadow: none !important;
        order: 1 !important;
      }

      /* Product Title - Clean and Simple */
      .pricing-card h3 {
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        color: #333 !important;
        margin: 0.5rem 0 !important;
        text-align: center !important;
        line-height: 1.3 !important;
        order: 2 !important;
        padding: 0 1rem !important;
      }

      /* Price Display - Prominent and Clean */
      .pricing-card .price-info {
        order: 3 !important;
        background: #fff !important;
        border-radius: 0 !important;
        padding: 1rem !important;
        margin-bottom: 0 !important;
        border: none !important;
        text-align: center !important;
        min-height: 120px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
      }

      .pricing-card .price-info .price-display {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        color: #d32f2f !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
        background: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        display: block !important;
        border: none !important;
        box-shadow: none !important;
        transition: none !important;
        cursor: default !important;
        text-decoration: none !important;
        position: relative !important;
        overflow: visible !important;
      }

      .pricing-card .price-info .dimensions {
        font-size: 0.85rem !important;
        color: #666 !important;
        text-align: center !important;
        margin-bottom: 0.3rem !important;
        font-weight: 400 !important;
      }

      .pricing-card .price-info .weight {
        font-size: 0.8rem !important;
        color: #888 !important;
        text-align: center !important;
        margin-bottom: 0.3rem !important;
        padding: 0 !important;
      }

      .pricing-card .price-info .door-to-door {
        font-size: 0.75rem !important;
        color: #28a745 !important;
        text-align: center !important;
        font-weight: 500 !important;
        margin-bottom: 0.3rem !important;
      }

      /* Product Details - Hidden for Clean Look */
      .pricing-card ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
        order: 4 !important;
        display: none !important;
      }

      /* Action Buttons - Minimalist Style */
      .pricing-card .pricing-actions {
        position: relative !important;
        z-index: 10 !important;
        background: #fff !important;
        padding: 1rem !important;
        margin: 0 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 8px !important;
        order: 5 !important;
        border-radius: 0 0 8px 8px !important;
        margin-top: auto !important;
      }

      .pricing-card .pricing-actions a {
        display: flex !important;
        width: 100% !important;
        text-decoration: none !important;
        position: relative !important;
        z-index: 11 !important;
        align-items: center !important;
        justify-content: center !important;
      }

      /* Minimalist Buttons - Like "View" Button */
      .pricing-btn-order,
      .pricing-btn-login,
      .pricing-btn-register {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 12 !important;
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        border-radius: 4px !important;
        font-weight: 500 !important;
        text-transform: none !important;
        letter-spacing: 0.2px !important;
        font-size: 14px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 1px solid #ddd !important;
        background: #f8f9fa !important;
        color: #333 !important;
        transition: all 0.2s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        text-align: center !important;
        text-decoration: none !important;
        line-height: 1 !important;
      }

      /* Login button - Primary style */
      .pricing-btn-login {
        background: #1976d2 !important;
        color: white !important;
        border-color: #1976d2 !important;
      }

      .pricing-btn-login:hover {
        background: #1565c0 !important;
        border-color: #1565c0 !important;
        transform: none !important;
        box-shadow: none !important;
      }

      /* Order button - Secondary style */
      .pricing-btn-order {
        background: #e53935 !important;
        color: white !important;
        border-color: #e53935 !important;
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
      }

      .pricing-btn-order:hover {
        background: #d32f2f !important;
        border-color: #d32f2f !important;
        transform: none !important;
        box-shadow: none !important;
      }

      /* Single Order button when logged in */
      .pricing-actions:has(.pricing-btn-order:only-child) {
        grid-template-columns: 1fr !important;
      }

      .pricing-actions:has(.pricing-btn-order:only-child) .pricing-btn-order {
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
      }

      /* Register button - Outline style */
      .pricing-btn-register {
        background: white !important;
        color: #1976d2 !important;
        border-color: #1976d2 !important;
      }

      .pricing-btn-register:hover {
        background: #1976d2 !important;
        color: white !important;
        transform: none !important;
        box-shadow: none !important;
      }
    }

    /* Order Modal Styles */
    .order-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      overflow-y: auto;
    }

    .order-modal-content {
      background-color: #fff;
      margin: 20px auto;
      padding: 0;
      border-radius: 16px;
      width: 90%;
      max-width: 600px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      animation: modalSlideIn 0.3s ease-out;
    }

    @keyframes modalSlideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .order-modal-header {
      background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
      color: white;
      padding: 20px 24px;
      border-radius: 16px 16px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .order-modal-header h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
    }

    .order-modal-close {
      background: none;
      border: none;
      color: white;
      font-size: 28px;
      cursor: pointer;
      padding: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background-color 0.3s ease;
    }

    .order-modal-close:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .order-modal-body {
      padding: 24px;
    }

    .order-summary {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 24px;
    }

    .order-summary h4 {
      margin: 0 0 16px 0;
      color: #1976d2;
      font-size: 18px;
      font-weight: 600;
    }

    .order-summary-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      padding: 8px 0;
      border-bottom: 1px solid #e9ecef;
    }

    .order-summary-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      font-weight: 600;
      font-size: 16px;
      color: #1976d2;
    }

    .order-form-group {
      margin-bottom: 20px;
    }

    .order-form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #333;
      font-size: 14px;
    }

    .order-form-group input,
    .order-form-group select,
    .order-form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      font-size: 14px;
      transition: border-color 0.3s ease;
      box-sizing: border-box;
    }

    .order-form-group input:focus,
    .order-form-group select:focus,
    .order-form-group textarea:focus {
      outline: none;
      border-color: #1976d2;
      box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
    }

    .order-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .order-form-actions {
      display: flex;
      gap: 16px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid #e9ecef;
    }

    .order-form-actions .btn {
      flex: 1;
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      text-align: center;
    }

    @media (max-width: 768px) {
      .order-form-row {
        grid-template-columns: 1fr;
      }

      .order-form-actions {
        flex-direction: column;
      }

    }

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Login Button - Hidden on Desktop */
.btn-login-mobile {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Glass shimmer effect */
.btn-login-mobile::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;
}

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

.btn-login-mobile:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Login text */
.login-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Arrow icon with animations */
.login-arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  animation: arrowPulse 2s ease-in-out infinite;
}

/* Arrow moves right on hover */
.btn-login-mobile:hover .login-arrow {
  transform: translateX(5px);
  animation: arrowSlide 0.6s ease-in-out infinite;
}

/* Pulsing animation when idle */
@keyframes arrowPulse {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(3px);
    opacity: 0.8;
  }
}

/* Sliding animation on hover */
@keyframes arrowSlide {
  0%, 100% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(8px);
  }
}

/* Register Button - Mobile Only */
.btn-register-mobile {
  display: none;
  background: rgba(239, 68, 68, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(239, 68, 68, 0.3);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
  position: relative;
  overflow: hidden;
}

/* Glass shimmer effect for Register */
.btn-register-mobile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.3), transparent);
  transition: left 0.6s ease;
}

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

.btn-register-mobile:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

/* Register text */
.register-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Arrow icon with animations for Register */
.register-arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  animation: arrowPulse 2s ease-in-out infinite;
}

.btn-register-mobile:hover .register-arrow {
  transform: translateX(5px);
  animation: arrowSlide 0.6s ease-in-out infinite;
}

/* Show Login & Register Buttons on Mobile Devices */
@media (max-width: 768px) {
  .btn-login-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-register-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .btn-login-mobile {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .btn-register-mobile {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    max-width: 100%;
  }
}

/* Offers Section Styles */
.offers-section .offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .offers-section {
    padding: 3rem 0 !important;
  }

  .offers-section h2 {
    font-size: 2rem !important;
  }

  .offers-section .offers-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem;
  }

  .offers-section .offer-card {
    padding: 1.5rem !important;
  }

  .offers-section .offer-card h3 {
    font-size: 1.5rem !important;
  }

  .offers-section .offer-card p {
    font-size: 1rem !important;
  }

  .offers-section .offer-card img {
    height: 180px !important;
  }
}

@media (max-width: 480px) {
  .offers-section {
    padding: 2rem 0 !important;
  }

  .offers-section h2 {
    font-size: 1.75rem !important;
  }

  .offers-section .offers-grid {
    padding: 0 0.75rem;
  }

  .offers-section .offer-card {
    padding: 1.25rem !important;
  }

  .offers-section .offer-card h3 {
    font-size: 1.35rem !important;
  }

  .offers-section .offer-card p {
    font-size: 0.95rem !important;
  }

  .offers-section .offer-card img {
    height: 160px !important;
  }
}

/* Pricing Section Mobile Improvements */
@media (max-width: 768px) {
  .pricing {
    padding: 3rem 0;
  }

  .pricing h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .pricing-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-card {
    width: 100%;
    max-width: 100%;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
  }

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

  .pricing-card .box-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    display: block;
    border-bottom: 3px solid #1976d2;
  }

  .pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1976d2;
    margin: 1rem 0 0.75rem 0;
    text-align: center;
    padding: 0 1rem;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .price-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.25rem;
    border-radius: 0;
    margin: 0 1rem 1rem 1rem;
    border: 2px solid #e0f2fe;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.08);
    border-radius: 10px;
  }

  .dimensions {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
  }

  .weight {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    background: #f1f5f9;
    padding: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid #1976d2;
  }

  .door-to-door {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1976d2;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 8px;
    border: 2px solid #e0f2fe;
    text-align: center;
    box-shadow: 0 2px 4px rgba(25, 118, 210, 0.1);
    transition: all 0.3s ease;
  }

  .door-to-door:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.15);
  }

  .door-to-door:last-child {
    margin-bottom: 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #bbdefb 100%);
    color: #0d47a1;
    border-color: #bbdefb;
  }

  .pricing-card ul {
    font-size: 0.95rem;
    margin: 0 1rem 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #1976d2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .pricing-card li {
    margin-bottom: 0.6rem;
    color: #334155;
    font-weight: 500;
    position: relative;
    padding-left: 1.2rem;
  }

  .pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1976d2;
    font-weight: bold;
    font-size: 0.9rem;
  }

  .pricing-card li:last-child {
    margin-bottom: 0;
  }

  .pricing-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    padding: 0 1rem 1rem 1rem;
    margin-top: 0;
  }

  .pricing-actions .btn {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .pricing-btn-order {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: white;
    border: none;
  }

  .pricing-btn-login {
    background: white;
    color: #1976d2;
    border: 2px solid #1976d2;
  }

  .pricing-btn-order:hover,
  .pricing-btn-order:active {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 118, 210, 0.35);
  }

  .pricing-btn-login:hover,
  .pricing-btn-login:active {
    background: #e0f2fe;
    border-color: #1565c0;
    transform: translateY(-1px);
  }
}

@media (max-width: 480px) {
  .pricing {
    padding: 2.5rem 0;
  }

  .pricing h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .pricing-table {
    gap: 1.25rem;
    padding: 0 0.75rem;
  }

  .pricing-card {
    padding: 0;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.12);
  }

  .pricing-card .box-image {
    height: 200px;
    border-radius: 0;
    border-bottom: 2px solid #1976d2;
  }

  .pricing-card h3 {
    font-size: 1.35rem;
    margin: 0.875rem 0 0.65rem 0;
    padding: 0 0.875rem;
  }

  .price-info {
    padding: 1rem;
    border-radius: 8px;
    margin: 0 0.875rem 0.875rem 0.875rem;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
  }

  .dimensions {
    font-size: 1rem;
    margin-bottom: 0.65rem;
    letter-spacing: 0.3px;
  }

  .weight {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    padding: 0.45rem;
  }

  .door-to-door {
    font-size: 1rem;
    padding: 0.65rem;
    margin-bottom: 0.65rem;
  }

  .pricing-card ul {
    font-size: 0.9rem;
    padding: 0.875rem;
    margin: 0 0.875rem 0.5rem 0.875rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  }

  .pricing-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.1rem;
  }

  .pricing-card li:before {
    font-size: 0.85rem;
  }

  .pricing-actions {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 0.875rem 1rem 0.875rem;
    margin-top: 0;
  }

  .pricing-actions .btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    min-height: 50px;
    font-weight: 700;
    border-radius: 8px;
  }

  .pricing-actions .btn svg {
    width: 18px;
    height: 18px;
  }
}

