/* Service Tabs Styles - Horizontal Layout */
.service-tabs-section {
    background: #f8fafc;
  }
  
  .service-tabs-wrapper {
    background: white;
    overflow: hidden;
  }
  .orange-text{
    color: #f15b22
  }
  .container-pricing{
    max-width: 100%;
    margin: 0 auto;
  }
  .service-tabs-nav-combined {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #F2F2F2;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .tab-group-nav {
    display: flex;
    align-items: center;
  }
  
  .content-group-nav {
    margin-right: 20px;
  }
  .service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .action-group-nav {
    margin-left: 20px;
  }
  
  .tab-groups-separator {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    margin: 0 20px;
  }
  
  .service-tab-button {
    background: none;
    border: none;
    padding: 16px 30px;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
    width: 230px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 1rem;           /* 16px = 1rem */
    line-height: 1.5;          /* 150% */
    letter-spacing: 0;
    text-align: center;

    /* Cho phép ngắt dòng */
    white-space: normal;
    word-break: break-word;

  }
  
  .service-tab-button:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
  }
  
  .service-tab-button.active {
    color: #000000;
    background: rgba(59, 130, 246, 0.05);
    font-family: Montserrat;
    font-weight: 700;
    font-size: 1rem;           /* 16px = 1rem */
    line-height: 1.5;          /* 150% */
    letter-spacing: 0;
    text-align: center;

    /* Cho phép xuống dòng */
    white-space: normal;
    word-break: break-word;

  }
  
  /* Active tab underline */
  .service-tab-button.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #2A6FB6;
    border-radius: 2px 2px 0 0;
  }
  
  /* Content area */
  .service-tab-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-height: 400px;
  }
  
  .tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  
  .tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Content Group Specific Styles */
  .default-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .content-graphics {
    position: relative;
    height: 400px;
  }
  
  .server-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
  }
  
  .server-stack-3d {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(15deg) rotateY(-15deg);
    transform-style: preserve-3d;
  }
  
  .server-unit-3d {
    width: 120px;
    height: 30px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    margin-bottom: 8px;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: serverFloat 3s ease-in-out infinite;
  }
  
  .server-unit-3d:nth-child(2) {
    animation-delay: 0.5s;
  }
  .server-unit-3d:nth-child(3) {
    animation-delay: 1s;
  }
  .server-unit-3d:nth-child(4) {
    animation-delay: 1.5s;
  }
  
  .server-unit-3d::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: serverBlink 2s ease-in-out infinite;
  }
  
  .content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .content-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    gap: 30px;
  }
  
  .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
  }
  
  .feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Default Features Content */
  .default-features-content {
    text-align: center;
    padding: 60px 20px;
  }
  
  .default-features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
  }
  
  .default-features-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Service Pricing Styles */
  .service-pricing-section {
    padding: 30px 0;
    background: #F2F2F2;
  }
  
  .pricing-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .pricing-header h2 {font-weight: 700;
    color: #6D6C7B;
    margin-bottom: 16px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 1.5rem;         /* 24px = 24 / 16 = 1.5rem */
    line-height: 1.2;          /* 120% = 1.2 */
    letter-spacing: 0;
    text-align: center;

  }
  
  .pricing-carousel {
    position: relative;
  }
  
  .pricing-navigation {
    position: absolute;
    top: 50%;
    padding: 30px;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
  }
  
  .pricing-nav-btn {
    background: white;
    border: 1px solid #e2e8f0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-nav-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
  }
  
  .pricing-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .pricing-container {
    overflow: hidden;
    margin: 0 100px;
    position: relative;
    height: auto;
  }
  
 /* Single row grid that adapts to screen size */
.pricing-grid {
    display: flex;
    gap: 24px;
    width: 100%;
    position: relative;
    align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    flex: 0 0 auto;
    min-width: 0;
  }
  
  /* Desktop: 4 items */
  @media (min-width: 1024px) {
    .pricing-card {
      flex: 0 0 calc(25% - 30px);
    }
  }
  
  /* Tablet: 3 items */
  @media (min-width: 768px) and (max-width: 1023px) {
    .pricing-card {
      flex: 0 0 calc(33.333% - 16px);
    }
  }
  
  /* Small tablet: 2 items */
  @media (min-width: 480px) and (max-width: 767px) {
    .pricing-card {
      flex: 0 0 calc(50% - 12px);
    }
  }
  
  /* Mobile: 1 item */
  @media (max-width: 479px) {
    .pricing-card {
      flex: 0 0 100%;
    }
  }
  
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      visibility: visible !important;
      /* transition: all 0.3s ease; */
      transform: translateX(0);
    }
  }
  /* Show only cards for current page */
  .pricing-card.active {
    opacity: 1;
    display: unset;
    visibility: visible;
    /* animation: fadeIn 0.5s ease 0.3s forwards; */
    right: 0;
    /* transform: translateX(0); */
  }
  

  

  .pricing-header-card {
    background: linear-gradient(180deg, #2B74B8 0%, #20E5FE 100%);    color: white;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    position: relative;
  }
  
  .pricing-header-content {

    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;         /* 24px = 24 / 16 = 1.5rem */
    line-height: 1.2;          /* 120% = 1.2 */
    letter-spacing: 0;

  }
  
  .pricing-header-content h3 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
  }
  
  .pricing-header-content small {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
  }
  
  .pricing-body {
    padding: 32px 24px;
  }
  
  .pricing-price {
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;           /* Regular */
    font-size: 1.75rem;         /* 28px = 28 / 16 */
    line-height: 1.2;           /* 120% */
    letter-spacing: 0;
    text-align: center;

  }
  
  .pricing-price del {
    display: block;
    /* color: #94a3b8; */
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;         /* 20px = 1.25rem */
    line-height: 1.2;           /* 120% */
    letter-spacing: 0;
    text-decoration: line-through;

  }
  
  .pricing-price strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
  }
  
  .pricing-price small {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
  }
  
  .pricing-description {

    color: #64748b;
    margin-bottom: 32px;
    min-height: 80px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;           /* 16px = 1rem */
  
    letter-spacing: 0;
    text-align: center;

  }
  
  .pricing-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .pricing-description li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
  }
  
  .pricing-description li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
  }
  
  .pricing-description br {
    margin-bottom: 8px;
  }
  
  .pricing-description p {
    margin: 0 0 12px 0;
  }
  
  .pricing-description p:last-child {
    margin-bottom: 0;
  }
  
  .original-price {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 4px;
  }
  
  .discounted-price,
  .current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
  }
  
  .price-period {
    font-size: 0.875rem;
    color: #64748b;
  }
  
  .pricing-button {
    display: block;
    width: 100%;
 background: #F2784D;
  ;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }
  
  .pricing-button:hover {
    background: #ea580c;
    transform: translateY(-2px);
  }
  
  /* Enhanced ribbon-style discount badge */
  .discount-badge {
    /* position: absolute; */
    top: 0;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 8px 16px 12px 12px;

    z-index: 5;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    border-radius: 4px 4px 0 0;
    position: absolute;
    min-width: 40px;
    width: 50px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;       /* 20px = 20 / 16 = 1.25rem */
    line-height: 1.2;         /* 120% = 1.2 */
    letter-spacing: 0;

  }
.pricing-description strong{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;           /* 16px = 1rem */
  line-height: 0.6;          /* 60% = 0.6 */
  letter-spacing: 0;
  text-align: center;
color: #8987A1;
}
  
  /* Create the ribbon tail/flag effect */
  .discount-badge::after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 25px solid #ef4444;
    border-right: 25px solid #ef4444;
    border-bottom: 24px solid transparent;
    /* background: #ef4444; */
    /* clip-path: polygon(0 0, 100% 0, 50% 100%); */
  }
  
  /* Add depth with shadow on the tail */
  /* .discount-badge::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: #dc2626;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: -1;
    transform: translateY(1px);
  } */
  
  /* Hover effect */
  .pricing-card:hover .discount-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  }
  
  /* Alternative colors for different discount ranges */
  /* .discount-badge.discount-high {
    background: #dc2626;
  }
  
  .discount-badge.discount-high::after {
    background: #dc2626;
  }
  
  .discount-badge.discount-high::before {
    background: #b91c1c;
  }
  
  .discount-badge.discount-medium {
    background: #f97316;
  }
  
  .discount-badge.discount-medium::after {
    background: #f97316;
  }
  
  .discount-badge.discount-medium::before {
    background: #ea580c;
  }
  
  .discount-badge.discount-low {
    background: #eab308;
  }
  
  .discount-badge.discount-low::after {
    background: #eab308;
  }
  
  .discount-badge.discount-low::before {
    background: #ca8a04;
  }
   */
  .pricing-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
  }
  
  .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .pagination-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
  }
  
  /* Service Contact Styles */
  .service-contact-section {
    background: linear-gradient(178deg, #2A7BBC 10%, #22D5F4 50%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  /*.contact-form-wrapper {*/
  /*  background: rgba(255, 255, 255, 0.1);*/
  /*  backdrop-filter: blur(10px);*/
  /*  border-radius: 20px;*/
  /*  padding: 40px;*/
  /*  border: 1px solid rgba(255, 255, 255, 0.2);*/
  /*}*/
  
  .contact-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-header h2 {
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;         /* 24px = 1.5rem */
    line-height: 1.5;          /* 150% = 1.5 */
    letter-spacing: 0;
    text-align: center;

  }
  
  .contact-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
  }
  
  .service-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-group {
    position: relative;
  }
  
  .phone-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .phone-prefix {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 12px;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid white;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;        /* 18px = 18 / 16 = 1.125rem */
    line-height: 1.2;           /* 120% = 1.2 */
    letter-spacing: 0;
    text-transform: capitalize;

  }
  
  .phone-group input {
    background: transparent;
    border: none;
    border-radius: 0;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    cursor: pointer;
    font-size: 16px;
  }
  
  .checkbox-label input[type="checkbox"] {
    display: none;
  }
  
  .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: white;
    border-color: white;
  }
  
  .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #3b82f6;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .contact-submit-btn {
    background: white;
    color: #20C2EB;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
  }
  
  .contact-submit-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* Contact Graphics */
  .contact-graphics {
    position: relative;
    height: 500px;
  }
  
  .consultant-scene {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
  }
  
  .laptop-3d {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(10deg) rotateY(-10deg);
    width: 200px;
    height: 140px;
  }
  
  .laptop-screen {
    width: 200px;
    height: 120px;
    background: #1e293b;
    border-radius: 8px;
    border: 3px solid #374151;
    position: relative;
    overflow: hidden;
  }
  
  .screen-content {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .consultant-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .avatar-head {
    width: 24px;
    height: 24px;
    background: #fbbf24;
    border-radius: 50%;
  }
  
  .avatar-body {
    width: 30px;
    height: 16px;
    background: #3b82f6;
    border-radius: 8px;
  }
  
  .chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .chat-bubble {
    height: 8px;
    background: #3b82f6;
    border-radius: 4px;
    animation: chatPulse 2s ease-in-out infinite;
  }
  
  .bubble-1 {
    width: 60px;
  }
  .bubble-2 {
    width: 40px;
    animation-delay: 0.5s;
  }
  
  .laptop-keyboard {
    width: 200px;
    height: 20px;
    background: #374151;
    border-radius: 0 0 8px 8px;
    margin-top: -2px;
  }
  
  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .ui-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: cardFloat 3s ease-in-out infinite;
  }
  
  .card-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 40px;
  }
  
  .card-2 {
    top: 60%;
    right: 15%;
    width: 50px;
    height: 35px;
    animation-delay: 1s;
  }
  
  .card-3 {
    bottom: 20%;
    left: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
  }
  
  .card-lines .line {
    height: 2px;
    background: #cbd5e1;
    margin-bottom: 3px;
    border-radius: 1px;
  }
  
  .card-lines .line:nth-child(1) {
    width: 80%;
  }
  .card-lines .line:nth-child(2) {
    width: 60%;
  }
  .card-lines .line:nth-child(3) {
    width: 90%;
  }
  
  .card-chart {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 20px;
  }
  
  .chart-bar {
    background: #3b82f6;
    width: 4px;
    border-radius: 2px;
  }
  
  .bar-1 {
    height: 60%;
  }
  .bar-2 {
    height: 100%;
  }
  .bar-3 {
    height: 40%;
  }
  
  .card-icon .icon-circle {
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    margin: 0 auto;
  }
  
  .person-consultant {
    position: absolute;
    bottom: 10%;
    right: 20%;
    transform: scale(0.8);
  }
  
  .person-head {
    width: 30px;
    height: 30px;
    background: #fbbf24;
    border-radius: 50%;
    margin: 0 auto 6px;
  }
  
  .person-body {
    width: 40px;
    height: 60px;
    background: #1e293b;
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
  }
  
  .person-arms {
    position: absolute;
    top: 15px;
    width: 100%;
  }
  
  .arm-left,
  .arm-right {
    position: absolute;
    width: 20px;
    height: 8px;
    background: #fbbf24;
    border-radius: 4px;
  }
  
  .arm-left {
    left: -15px;
    transform: rotate(-20deg);
  }
  
  .arm-right {
    right: -15px;
    transform: rotate(20deg);
  }
  
  /* Animations */
  @keyframes serverFloat {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes serverBlink {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
  }
  
  @keyframes chatPulse {
    0%,
    100% {
      opacity: 0.7;
    }
    50% {
      opacity: 1;
    }
  }
  
  @keyframes cardFloat {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-15px) rotate(5deg);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-tabs-nav-combined {
      flex-direction: column;
      gap: 16px;
      padding: 16px 8px;
    }
  
    .content-group-nav,
    .action-group-nav {
      margin: 0;
    }
  
    .tab-groups-separator {
      width: 60px;
      height: 1px;
      margin: 8px 0;
    }
  
    .service-tab-button {
      padding: 12px 20px;
      font-size: 14px;
    }
  
    .service-tab-content {
      padding: 20px;
    }
  
    .default-content .content-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .content-graphics {
      height: 300px;
    }
  
    .content-text h2 {
      font-size: 2rem;
    }
  
    .default-features-content h2 {
      font-size: 2rem;
    }
  
    .pricing-container {
      margin: 0 20px;
    }
  
    /* .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    } */
  
    .pricing-navigation {
        display: flex;
    }
  }
  
  @media (max-width: 480px) {
    .service-tabs-section {
      padding: 40px 0;
    }
  
    .service-tabs-nav-combined {
      padding: 12px 6px;
    }
  
    .tab-group-nav {
      flex-direction: column;
      gap: 8px;
    }
  
    .service-tab-button {
      padding: 10px 16px;
      font-size: 13px;
      width: 100%;
      text-align: center;
    }
  
    .service-tab-content {
      padding: 16px;
    }
  
    .content-text h2 {
      font-size: 1.75rem;
    }
  
    .default-features-content {
      padding: 40px 16px;
    }
  
    .default-features-content h2 {
      font-size: 1.75rem;
    }
  
    .pricing-header h2 {
      font-size: 2rem;
    }
  
    .contact-header h2 {
      font-size: 2rem;
    }
  
    .contact-form-wrapper {
      padding: 24px;
    }
    .pricing-grid {
        gap: 16px;
      }
  }
  
  /* Enhanced HTML content support for pricing cards */
  .pricing-header-content span[style*="font-size"] {
    line-height: 1.2;
  }
  
  .pricing-header-content span[style*="color"] {
    display: inline;
  }
  
  .pricing-header-content h1,
  .pricing-header-content h2,
  .pricing-header-content h3 {
    margin: 0;
    line-height: 1.2;
  }
  
  .pricing-header-content h1 {
    font-size: 2rem;
    font-weight: 800;
  }
  
  .pricing-header-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
  }
  
  .pricing-header-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .pricing-header-content big {
    font-size: 1.25em;
    font-weight: 600;
  }
  
  .pricing-header-content small {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
  }
  
  .pricing-header-content u {
    text-decoration: underline;
  }
  
  .pricing-header-content mark {
    background: rgba(255, 255, 255, 0.3);
    color: inherit;
    padding: 2px 4px;
    border-radius: 2px;
  }
  
  /* Pricing content enhanced styling */
  .pricing-price span[style*="font-size"] {
    line-height: 1.3;
  }
  
  .pricing-price span[style*="color"] {
    display: inline;
  }
  
  .pricing-price h1,
  .pricing-price h2,
  .pricing-price h3 {
    margin: 4px 0;
    line-height: 1.2;
  }
  
  .pricing-price h1 {

    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;         /* 28px = 28 / 16 = 1.75rem */
    line-height: 1.2;           /* 120% = 1.2 */
    letter-spacing: 0;
    text-align: center;

  }
  
  .pricing-price h2 {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .pricing-price h3 {
    font-size: 1.75rem;
    font-weight: 600;
  }
  
  .pricing-price big {
    font-size: 1.5em;
    font-weight: 700;
  }
  
  .pricing-price small {
    font-size: 0.875rem;
    font-weight: 400;
  }
  
  .pricing-price u {
    text-decoration: underline;
  }
  
  .pricing-price mark {
    background: #fef3c7;
    color: #92400e;
    padding: 2px 4px;
    border-radius: 2px;
  }
  
  /* Description enhanced styling */
  .pricing-description span[style*="font-size"] {
    line-height: 1.4;
  }
  
  .pricing-description span[style*="color"] {
    display: inline;
  }
  
  .pricing-description h1,
  .pricing-description h2,
  .pricing-description h3 {
    margin: 8px 0 4px 0;
    line-height: 1.3;
    color: #1e293b;
  }
  
  .pricing-description h1 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .pricing-description h2 {
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .pricing-description h3 {
    font-size: 1.125rem;
    font-weight: 600;
  }
  
  .pricing-description big {
    font-size: 1.125em;
    font-weight: 500;
  }
  
  .pricing-description small {
    font-size: 0.8rem;
    opacity: 0.8;
  }
  
  .pricing-description u {
    text-decoration: underline;
  }
  
  .pricing-description mark {
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 4px;
    border-radius: 2px;
  }
  
  .pricing-description p {
    margin: 8px 0;
    line-height: 1.6;
  }
  
  .pricing-description ol {
    list-style: decimal;
    padding-left: 20px;
    margin: 8px 0;
  }
  
  .pricing-description ol li {
    padding: 2px 0;
    position: relative;
    padding-left: 0;
  }
  
  .pricing-description ol li::before {
    display: none;
  }
  
  /* Responsive text sizing */
  @media (max-width: 768px) {
    .pricing-header-content h1 {
      font-size: 1.75rem;
    }
  
    .pricing-header-content h2 {
      font-size: 1.5rem;
    }
  
    .pricing-header-content h3 {
      font-size: 1.25rem;
    }
  
    .pricing-price h1 {
      font-size: 2rem;
    }
  
    .pricing-price h2 {
      font-size: 1.75rem;
    }
  
    .pricing-price h3 {
      font-size: 1.5rem;
    }
  
    .pricing-description h1 {
      font-size: 1.25rem;
    }
  
    .pricing-description h2 {
      font-size: 1.125rem;
    }
  
    .pricing-description h3 {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .pricing-header-content h1 {
      font-size: 1.5rem;
    }
  
    .pricing-header-content h2 {
      font-size: 1.25rem;
    }
  
    .pricing-price h1 {
      font-size: 1.75rem;
    }
  
    .pricing-price h2 {
      font-size: 1.5rem;
    }
  }
  