/* ===== SERVICES 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("https://mobinnejad.ir/placeholder.svg?height=400&amp;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);
  }
  
  /* Services Intro Section */
  .services-intro-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .services-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .services-intro-text {
    animation: fadeInRight 0.5s ease forwards;
  }
  
  .text-start {
    text-align: right;
  }
  
  .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);
  }
  
  .services-intro-image {
    position: relative;
    animation: fadeInLeft 0.5s ease forwards;
  }
  
  .services-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 3px solid var(--primary-color);
  }
  
  .experience-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;
  }
  
  .experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .experience-badge .text {
    font-size: 1rem;
    font-weight: 600;
  }
  
  /* Main Services Section */
  .main-services-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    position: relative;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .service-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
  }
  
  .service-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .service-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .service-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .service-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .service-card:nth-child(5) {
    animation-delay: 0.5s;
  }
  
  .service-card:nth-child(6) {
    animation-delay: 0.6s;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
  }
  
  .service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(360deg);
  }
  
  .service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .service-features {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
  }
  
  .service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
  }
  
  .service-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 5px;
  }
  
  .service-link i {
    transition: transform 0.3s ease;
  }
  
  .service-link:hover {
    color: var(--primary-dark);
  }
  
  .service-link:hover i {
    transform: translateX(-5px);
  }
  
  /* Full Service Section */
  .full-service-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .full-service-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .full-service-content {
    animation: fadeInLeft 0.5s ease forwards;
  }
  
  .full-service-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .full-service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
  }
  
  .feature-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .full-service-image {
    animation: fadeInRight 0.5s ease forwards;
  }
  
  .full-service-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 3px solid var(--primary-color);
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    position: relative;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .benefit-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
  }
  
  .benefit-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .benefit-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .benefit-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .benefit-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .benefit-card:nth-child(5) {
    animation-delay: 0.5s;
  }
  
  .benefit-card:nth-child(6) {
    animation-delay: 0.6s;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover .benefit-icon {
    transform: rotateY(360deg);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  }
  
  .benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* Gallery Section */
  .gallery-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
  
  .gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    transform: scale(0.95);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .gallery-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .gallery-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .gallery-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .gallery-item:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .gallery-item:nth-child(5) {
    animation-delay: 0.5s;
  }
  
  .gallery-item:nth-child(6) {
    animation-delay: 0.6s;
  }
  
  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .gallery-overlay i {
    color: var(--primary-color);
    font-size: 2rem;
    transform: scale(0);
    transition: all 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-item:hover .gallery-overlay i {
    transform: scale(1);
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    position: relative;
  }
  
  .testimonials-slider {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  
  .testimonial-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .testimonial-rating {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .testimonial-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding: 0 20px;
  }
  
  .testimonial-text::before,
  .testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
  }
  
  .testimonial-text::before {
    top: -10px;
    left: 0;
  }
  
  .testimonial-text::after {
    bottom: -20px;
    right: 0;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
  }
  
  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
  }
  
  .author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
  }
  
  .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
  }
  
  
  
  /* 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) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .services-intro-content,
    .full-service-wrapper {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .services-intro-image {
      order: -1;
    }
  
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .cta-actions {
      flex-direction: column;
      align-items: center;
    }
  
    .cta-actions .btn {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .services-grid,
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .intro-features,
    .full-service-features {
      grid-template-columns: 1fr;
    }
  
    .page-title h1 {
      font-size: 2.2rem;
    }
  
    .services-intro-section,
    .main-services-section,
    .full-service-section,
    .benefits-section,
    .gallery-section,
    .testimonials-section,
    .cta-section {
      padding: 60px 0;
    }
  
    .experience-badge {
      width: 100px;
      height: 100px;
      bottom: -20px;
      right: -20px;
    }
  
    .experience-badge .years {
      font-size: 2rem;
    }
  
    .experience-badge .text {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-text {
      font-size: 1rem;
    }
  }
  
  