/* ===== PRICES PAGE STYLES ===== */

/* Page Title Section */
.page-title {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/placeholder.svg?height=400&width=1920");
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
  }
  
  .page-title h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
    animation: fadeInDown 1s ease;
  }
  
  .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    animation: fadeIn 1s ease 0.3s both;
  }
  
  .breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .breadcrumb a:hover {
    color: var(--primary-dark);
  }
  
  .breadcrumb .separator {
    margin: 0 10px;
    color: var(--text-light);
  }
  
  .breadcrumb .current {
    color: var(--white);
  }
  
  /* Prices Intro Section */
  .prices-intro-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .prices-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .prices-intro-text {
    animation: fadeInRight 0.5s ease forwards;
  }
  
  .intro-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .feature-item span {
    color: var(--white);
  }
  
  .prices-intro-image {
    position: relative;
    animation: fadeInLeft 0.5s ease forwards;
  }
  
  .prices-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 3px solid var(--primary-color);
  }
  
  .discount-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--secondary-color);
    animation: pulse 2s infinite;
  }
  
  .discount-badge .percent {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .discount-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 0 5px;
  }
  
  /* Price Table Section */
  .price-table-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    position: relative;
  }
  
  .price-tables-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
  }
  
  .price-table-container {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
  }
  
  .price-table-container:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .price-table-container:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  .price-table-container:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .price-table-header {
    background-color: var(--primary-color);
    padding: 15px 20px;
    text-align: center;
  }
  
  .price-table-header h3 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.3rem;
  }
  
  .price-table {
    padding: 20px;
  }
  
  .price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.2);
  }
  
  .price-row:last-child {
    border-bottom: none;
  }
  
  .price-service {
    color: var(--white);
    font-weight: 500;
  }
  
  .price-value {
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .price-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border-right: 3px solid var(--primary-color);
  }
  
  .price-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
  }
  
  .price-note p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
  }
  
  /* Service Packages Section */
  .service-packages-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .package-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
  }
  
  .package-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .package-card:nth-child(2) {
    animation-delay: 0.3s;
  }
  
  .package-card:nth-child(3) {
    animation-delay: 0.5s;
  }
  
  .package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
  }
  
  .package-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
  }
  
  .package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
    z-index: 2;
  }
  
  .package-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }
  
  .package-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }
  
  .package-price .currency {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 5px;
  }
  
  .package-body {
    padding: 30px 20px;
  }
  
  .package-features {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
  }
  
  .package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
  
  .package-features li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  
  .package-features li.included {
    color: var(--white);
  }
  
  .package-features li.not-included {
    color: var(--text-light);
    opacity: 0.7;
  }
  
  .package-features li i {
    font-size: 1rem;
  }
  
  .package-features li.included i {
    color: var(--primary-color);
  }
  
  .package-features li.not-included i {
    color: var(--danger-color);
  }
  
  /* Price Comparison Section */
  .price-comparison-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    position: relative;
  }
  
  .comparison-table-container {
    margin-top: 50px;
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--light-bg);
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
  }
  
  .comparison-table th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .comparison-table th:first-child {
    text-align: right;
  }
  
  .comparison-table td:first-child {
    text-align: right;
    color: var(--white);
    font-weight: 500;
  }
  
  .comparison-table td {
    color: var(--text-light);
  }
  
  .comparison-table td.highlight {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
  }
  
  .comparison-table td.highlight::after {
    content: "بهترین قیمت";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 0.7rem;
    padding: 2px 5px;
    border-bottom-right-radius: 5px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .comparison-table tr:hover td.highlight::after {
    opacity: 1;
    transform: translateY(0);
  }
  
  .comparison-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border-right: 3px solid var(--primary-color);
  }
  
  .comparison-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
  }
  
  .comparison-note p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .faq-container {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .faq-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
  }
  
  .faq-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .faq-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .faq-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .faq-item:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .faq-item:nth-child(5) {
    animation-delay: 0.5s;
  }
  
  .faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  .faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  
  .faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .faq-icon {
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .faq-question.active {
    background-color: var(--secondary-color);
  }
  
  .faq-question.active h3 {
    color: var(--primary-color);
  }
  
  .faq-question.active .faq-icon i {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: var(--secondary-color);
    border-top: 0px solid var(--border-color);
  }
  
  .faq-answer.active {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid var(--border-color);
  }
  
  .faq-answer p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  /* CTA Section */
 
  
  /* Animations */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .packages-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .package-card.featured {
      grid-column: 1 / -1;
      width: 80%;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 992px) {
    .prices-intro-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .prices-intro-image {
      order: -1;
    }
  
    .price-tables-wrapper {
      grid-template-columns: 1fr;
    }
  
    .cta-actions {
      flex-direction: column;
      align-items: center;
    }
  
    .cta-actions .btn {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .packages-grid {
      grid-template-columns: 1fr;
    }
  
    .package-card.featured {
      width: 100%;
    }
  
    .intro-features {
      grid-template-columns: 1fr;
    }
  
    .page-title h1 {
      font-size: 2.2rem;
    }
  
    .prices-intro-section,
    .price-table-section,
    .service-packages-section,
    .price-comparison-section,
    .faq-section,
    .cta-section {
      padding: 60px 0;
    }
  
    .discount-badge {
      width: 100px;
      height: 100px;
      bottom: -20px;
      right: -20px;
    }
  
    .discount-badge .percent {
      font-size: 2rem;
    }
  
    .discount-badge .text {
      font-size: 0.7rem;
    }
  
    .comparison-table th,
    .comparison-table td {
      padding: 10px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-text {
      font-size: 1rem;
    }
  
    .comparison-table th,
    .comparison-table td {
      padding: 8px;
      font-size: 0.8rem;
    }
  }
  
  