.page-title {
  display: flex;
  align-items: center;
  padding-block: 60px;
  background: linear-gradient(135deg, var(--second-color) 0%, #0a1a3a 100%);
  min-height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15,115,238,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
}

.page-title .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title h2 {
  color: var(--fourth-color);
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  font-family: 'Geom', sans-serif;
  margin-bottom: 20px;
}

#category-page-title, #search_q {
  font-size: 32px;
  position: relative;
  cursor: pointer;
  padding: 0;
}
#category-page-title {
  padding-top: 0;
}
#category-page-title:before, #search_q:before {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItYXJyb3ctbGVmdCI+PGxpbmUgeDE9IjE5IiB5MT0iMTIiIHgyPSI1IiB5Mj0iMTIiPjwvbGluZT48cG9seWxpbmUgcG9pbnRzPSIxMiAxOSA1IDEyIDEyIDUiPjwvcG9seWxpbmU+PC9zdmc+);
  background-repeat: no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 6px;
  filter: invert(1);
}
.page-title .breadcrumb-item, .page-title .breadcrumb-item a, .page-title .breadcrumb-item.active, .page-title .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}
.page-title-paiment .breadcrumb-item a {
  font-size: 18px;
  color: #b5b5b5;
}
.page-title-paiment .breadcrumb-item.active a{
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid var(--main-color);
}
.page-title-paiment .breadcrumb-item+.breadcrumb-item::before {
  content: "";
  background: url(../images/arrow-right.svg);
  width: 42px;
  height: 20px;
  background-size: 36px 20px;
  background-repeat: no-repeat;
  position: relative;
  top: 4px;
}
.sav-page-title.section-bg {
  min-height: 250px;
  background-color: var(--header-bg);
}
.sav-page-title.section-bg::before {
  background-size: 55% auto;
  background-repeat: no-repeat;
  background-position: right;
}
.page-title-part {
  background-color: var(--header-bg);
  height: 100%;
  min-height: 250px;
  width: 50%;
  border-radius: 0 0 100px 0;
  border-right: 1px solid #ffffff;
}
.tire-print {
  filter: invert(1);
}
/********* page Title ***************/

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 30px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.toggle-label span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--third-color);
}

.toggle-label.active span {
    color: var(--second-color);
}

.save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white !important;
    font-size: 0.85rem !important;
    padding: 7px 10px;
    border-radius: 30px;
    margin-left: 8px;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--main-color);
}

input:checked + .slider:before {
    transform: translateX(28px);
}

/* Header Styling */
.pricing-badge {
    display: flex;
    width: max-content;
    margin-inline: auto;
    background: rgba(15,115,238,0.15);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15,115,238,0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pricing-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 15px;
    font-family: 'Geom', sans-serif;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.pricing-header p {
    color: var(--third-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1440px;
    margin: 50px auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    border: 1px solid rgba(15,115,238,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -15px rgba(15,115,238,0.15);
    border-color: var(--main-color);
}

/* Popular Plan Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--main-color), #2d7aff);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px -5px rgba(15,115,238,0.3);
    white-space: nowrap;
}

/* Highlighted Pro Plan */
.pricing-card.featured {
    background: linear-gradient(145deg, var(--second-color) 0%, #0e1a3a 100%);
    color: white;
    border: none;
    transform: scale(1.05);
    z-index: 3;
    box-shadow: 0 30px 50px -15px rgba(15,115,238,0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 40px 60px -15px rgba(15,115,238,0.4);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .price,
.pricing-card.featured .feature-item,
.pricing-card.featured .plan-desc {
    color: white;
}

.pricing-card.featured .feature-item .check-icon {
    background: rgba(255,255,255,0.15);
    color: white;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--second-color);
    font-family: 'Geom', sans-serif;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--second-color);
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--third-color);
}

.featured .price span {
    color: rgba(255,255,255,0.6);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--third-color);
    margin-bottom: 30px;
    min-height: 45px;
    border-bottom: 1px solid rgba(15,115,238,0.1);
    padding-bottom: 20px;
}

.featured .plan-desc {
    border-bottom-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--second-color);
    font-size: 0.95rem;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: rgba(15,115,238,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn-outline {
    background: transparent;
    color: var(--second-color);
    border: 1.5px solid rgba(15,115,238,0.2);
}

.btn-outline:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
    gap: 12px;
}

.btn-solid {
    background: linear-gradient(135deg, var(--main-color), #2d7aff);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(15,115,238,0.3);
}

.btn-solid:hover {
    background: linear-gradient(135deg, #2d7aff, var(--main-color));
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(15,115,238,0.4);
    gap: 12px;
}

.btn-pricing svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.btn-pricing:hover svg {
    transform: translateX(4px);
}

.featured .btn-pricing {
    background: white;
    color: var(--second-color);
    border: none;
}

.featured .btn-pricing:hover {
    background: var(--main-color);
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .page-title h2 {
        font-size: 2.5rem;
    }
    
    .pricing-header h2 {
        font-size: 2.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .page-title {
        padding-block: 40px;
    }
    
    .page-title h2 {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6ecf3 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15,115,238,0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 15px;
    font-family: 'Geom', sans-serif;
    letter-spacing: -0.02em;
}

.faq-header p {
    color: var(--third-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(15,115,238,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--main-color);
    box-shadow: 0 10px 25px -10px rgba(15,115,238,0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--second-color);
    font-family: 'Geom', sans-serif;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15,115,238,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--main-color);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--third-color);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

/* Style exactly like uploaded image */
.faq-item.simple .faq-question span {
    font-weight: 400;
}

.faq-item.simple .faq-icon {
    background: transparent;
    color: var(--main-color);
    font-size: 1.8rem;
}

.faq-item.simple.active .faq-icon {
    background: transparent;
    color: var(--second-color);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
        max-width: 85%;
    }
}