#servicepage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)),
    url("images/backcont.avif");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  padding: 120px 8%;
  overflow: hidden;
}

#servicepage::before {
  content: "";
  position: absolute;
  inset: 1;
  z-index: 1;
}

.servicepage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;

  color: #fff;

  animation: aboutpageFadeUp 1s ease;
}

/* Badge */

.servicepage-badge {
  display: inline-block;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 25px;
}

/* Title */

.servicepage-title {
  font-size: 58px;
  line-height: 1.4;
  font-weight: 800;

  margin-bottom: 25px;

  color: #fff;
}

/* Description */

.servicepage-description {
  max-width: 700px;

  font-size: 18px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.88);

  margin-bottom: 35px;
}

/* ==========================
   BREADCRUMB
========================== */

.servicepage-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.servicepage-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.servicepage-breadcrumb a:hover {
  color: red;
}

.servicepage-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.servicepage-current {
  color: red;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.servicepage-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: yellow;
  border-radius: 10px;
}

/* ==========================
   ANIMATION
========================== */

@keyframes aboutpageFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   LAPTOP
========================== */

@media (max-width: 1200px) {
  .servicepage-title {
    font-size: 58px;
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 768px) {
  #servicepage {
    justify-content: center;
    text-align: center;

    padding: 120px 6%;
  }

  .servicepage-hero-content {
    margin: auto;
  }

  .servicepage-title {
    font-size: 42px;
  }

  .servicepage-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .servicepage-breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
  }

  .servicepage-breadcrumb a,
  .servicepage-current,
  .servicepage-separator {
    font-size: 14px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 480px) {
  #servicepage {
    padding: 100px 20px;
  }

  .servicepage-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .servicepage-title {
    font-size: 32px;
  }

  .servicepage-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .servicepage-breadcrumb {
    gap: 10px;
    padding: 8px;
  }

  .servicepage-home-link,
  .servicepage-current {
    font-size: 13px;
  }
}
/* ==========================
   WWE SERVICE INTRO
========================== */

/* =========================
CSS VARIABLES
========================= */
:root {
  --tsrv-primary: red;
  --tsrv-primary-dark: red;
  --tsrv-dark: #111111;
  --tsrv-gray: #f8f9fa;
  --tsrv-light: #f5f5f5;
  --tsrv-white: #ffffff;
  --tsrv-text: #000;
  --tsrv-border: #e8e8e8;
  --tsrv-radius: 16px;
  --tsrv-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --tsrv-shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.12);
  --tsrv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
CONTAINER
========================= */
.tsrv-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* =========================
HERO SECTION
========================= */
.tsrv-hero {
  background: var(--tsrv-white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.tsrv-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.tsrv-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.tsrv-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tsrv-badge {
  display: inline-block;
  color: var(--tsrv-primary);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.tsrv-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--tsrv-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.tsrv-hero-title span {
  color: var(--tsrv-primary);
}

.tsrv-hero-text {
  font-size: 17px;
  color: var(--tsrv-text);
  margin-bottom: 35px;
  line-height: 1.8;
}

.tsrv-hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
BUTTONS
========================= */
.tsrv-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--tsrv-transition);
  cursor: pointer;
  border: none;
}

.tsrv-btn-primary {
  background: yellow;
  color: black;
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}


.tsrv-btn-outline-dark {
  background: transparent;
  color: var(--tsrv-dark);
  border: 2px solid var(--tsrv-border);
}

.tsrv-btn-outline-dark:hover {
  border-color: var(--tsrv-primary);
  color: var(--tsrv-primary);
  transform: translateY(-3px);
}

.tsrv-btn-white {
  background: var(--tsrv-white);
  color: var(--tsrv-primary);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tsrv-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.tsrv-btn-outline-white {
  background: transparent;
  color: var(--tsrv-white);
  border: 2px solid var(--tsrv-white);
}

.tsrv-btn-outline-white:hover {
  background: var(--tsrv-white);
  color: var(--tsrv-primary);
  transform: translateY(-3px);
}

/* =========================
SECTION HEADER
========================= */
.tsrv-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tsrv-section-tag {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.tsrv-section-title {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 600;
  color: var(--tsrv-dark);
  margin-bottom: 15px;
}

.tsrv-section-desc {
  font-size: 16px;
  color: var(--tsrv-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =========================
SERVICES GRID
========================= */
.tsrv-services {
  padding: 80px 0;
  background: var(--tsrv-gray);
}

.tsrv-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tsrv-service-card {
  background: var(--tsrv-white);
  border: 1px solid var(--tsrv-border);
  border-radius: var(--tsrv-radius);
  padding: 35px 30px;
  transition: var(--tsrv-transition);
  position: relative;
  overflow: hidden;
}

.tsrv-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--tsrv-primary);
  transition: height 0.3s ease;
}

.tsrv-service-card:hover::before {
  height: 100%;
}

.tsrv-service-card:hover {
  box-shadow: var(--tsrv-shadow-hover);
  transform: translateY(-5px);
  border-color: var(--tsrv-primary);
}

.tsrv-service-highlight {
  border-color: var(--tsrv-primary);
  background: #ffffff;
}

.tsrv-service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 77, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--tsrv-primary);
  margin-bottom: 20px;
  transition: var(--tsrv-transition);
}

.tsrv-service-card:hover .tsrv-service-icon {
  background: var(--tsrv-primary);
  color: var(--tsrv-white);
  transform: rotateY(180deg);
}

.tsrv-service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--tsrv-dark);
}

.tsrv-service-card p {
  color: var(--tsrv-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tsrv-features {
  list-style: none;
  padding: 0;
}

.tsrv-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--tsrv-dark);
}

.tsrv-features li i {
  color: #28a745;
  font-size: 14px;
}

/* =========================
PRICING
========================= */
.tsrv-pricing {
  padding: 80px 0;
  background: var(--tsrv-white);
}

.tsrv-pricing-box {
  background: var(--tsrv-white);
  border: 1px solid var(--tsrv-border);
  border-radius: var(--tsrv-radius);
  padding: 60px 40px;
  box-shadow: var(--tsrv-shadow);
  text-align: center;
}

.tsrv-pricing-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.tsrv-pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tsrv-dark);
  background: var(--tsrv-gray);
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid var(--tsrv-border);
  transition: var(--tsrv-transition);
}

.tsrv-pricing-item:hover {
  border-color: var(--tsrv-primary);
  transform: translateY(-3px);
}

.tsrv-pricing-item i {
  color: var(--tsrv-primary);
  font-size: 18px;
}

.tsrv-pricing-cta {
  margin-top: 30px;
}

/* =========================
WHY CHOOSE US
========================= */
.tsrv-why {
  padding: 80px 0;
  background: var(--tsrv-gray);
}

.tsrv-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.tsrv-why-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--tsrv-white);
  border-radius: var(--tsrv-radius);
  border: 1px solid var(--tsrv-border);
  transition: var(--tsrv-transition);
}

.tsrv-why-card:hover {
  border-color: var(--tsrv-primary);
  box-shadow: var(--tsrv-shadow);
  transform: translateY(-5px);
}

.tsrv-why-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 77, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--tsrv-transition);
}

.tsrv-why-card:hover .tsrv-why-icon {
  background: var(--tsrv-primary);
}

.tsrv-why-icon i {
  font-size: 28px;
  color: var(--tsrv-primary);
  transition: var(--tsrv-transition);
}

.tsrv-why-card:hover .tsrv-why-icon i {
  color: var(--tsrv-white);
}

.tsrv-why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--tsrv-dark);
}

.tsrv-why-card p {
  font-size: 14px;
  color: var(--tsrv-text);
}

/* =========================
PROCESS
========================= */
.tsrv-process {
  padding: 80px 0;
  background: var(--tsrv-white);
}

.tsrv-process-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tsrv-step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: var(--tsrv-white);
  padding: 25px;
  border-radius: var(--tsrv-radius);
  border: 1px solid var(--tsrv-border);
  transition: var(--tsrv-transition);
}

.tsrv-step:hover {
  border-color: var(--tsrv-primary);
  box-shadow: var(--tsrv-shadow);
  transform: translateX(10px);
}

.tsrv-step-number {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--tsrv-primary);
  color: var(--tsrv-white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.tsrv-step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--tsrv-dark);
}

.tsrv-step-content p {
  color: var(--tsrv-text);
  font-size: 14px;
}

/* =========================
VIDEO
========================= */
.tsrv-video {
  padding: 80px 0;
  background: var(--tsrv-gray);
}

.tsrv-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--tsrv-radius);
  overflow: hidden;
  box-shadow: var(--tsrv-shadow);
  border: 1px solid var(--tsrv-border);
}

.tsrv-video-wrapper iframe {
  display: block;
}

/* =========================
REVIEWS
========================= */
.tsrv-reviews {
  padding: 80px 0;
  background: var(--tsrv-white);
}

.tsrv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tsrv-review-card {
  background: var(--tsrv-white);
  border: 1px solid var(--tsrv-border);
  border-radius: var(--tsrv-radius);
  padding: 30px;
  transition: var(--tsrv-transition);
}

.tsrv-review-card:hover {
  box-shadow: var(--tsrv-shadow-hover);
  transform: translateY(-5px);
  border-color: var(--tsrv-primary);
}

.tsrv-review-stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 15px;
}

.tsrv-review-card p {
  color: var(--tsrv-text);
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
}

.tsrv-reviewer {
  font-weight: 600;
  color: var(--tsrv-dark);
}

/* =========================
FAQ
========================= */
.tsrv-faq {
  padding: 80px 0;
  background: var(--tsrv-gray);
}

.tsrv-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tsrv-faq-item {
  background: var(--tsrv-white);
  border: 1px solid var(--tsrv-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--tsrv-transition);
}

.tsrv-faq-item.tsrv-active {
  border-color: var(--tsrv-primary);
  box-shadow: var(--tsrv-shadow);
}

.tsrv-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--tsrv-dark);
  font-family: inherit;
  transition: color 0.3s ease;
}

.tsrv-faq-question:hover {
  color: var(--tsrv-primary);
}

.tsrv-faq-icon {
  font-size: 24px;
  color: var(--tsrv-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.tsrv-faq-item.tsrv-active .tsrv-faq-icon {
  transform: rotate(45deg);
}

.tsrv-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.tsrv-faq-answer-inner {
  padding: 0 25px 20px;
}

.tsrv-faq-answer-inner p {
  color: var(--tsrv-text);
  line-height: 1.8;
  font-size: 15px;
}

/* =========================
CTA SECTION
========================= */
.tsrv-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff4d00 0%, #cc3300 100%);
  position: relative;
  overflow: hidden;
}

.tsrv-cta::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.tsrv-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.tsrv-cta-box {
  text-align: center;
  color: var(--tsrv-white);
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.tsrv-cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.tsrv-cta-box p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 35px;
  line-height: 1.8;
}

.tsrv-cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 991px) {
  .tsrv-container {
    padding: 0 20px;
  }

  .tsrv-hero {
    padding: 100px 0 60px;
  }

  .tsrv-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .tsrv-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tsrv-hero {
    padding: 80px 0 50px;
  }

  .tsrv-section-header {
    margin-bottom: 40px;
  }

  .tsrv-services {
    padding: 60px 0;
  }

  .tsrv-services-grid {
    grid-template-columns: 1fr;
  }

  .tsrv-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tsrv-pricing-box {
    padding: 40px 25px;
  }

  .tsrv-pricing-features {
    gap: 15px;
  }

  .tsrv-pricing-item {
    padding: 12px 20px;
    font-size: 14px;
  }

  .tsrv-step {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .tsrv-step-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 16px;
  }

  .tsrv-reviews-grid {
    grid-template-columns: 1fr;
  }

  .tsrv-faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }

  .tsrv-faq-answer-inner {
    padding: 0 20px 18px;
  }

  .tsrv-cta-box h2 {
    font-size: 1.8rem;
  }

  .tsrv-cta-box p {
    font-size: 16px;
  }

  .tsrv-video-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .tsrv-container {
    padding: 0 15px;
  }

  .tsrv-hero {
    padding: 60px 0 40px;
  }

  .tsrv-hero-title {
    font-size: 1.6rem;
  }
  .tsrv-section-title {
    font-size: 1.6rem;
  }
  .tsrv-hero-text {
    font-size: 15px;
  }

  .tsrv-badge {
    font-size: 12px;
    padding: 8px 20px;
  }

  .tsrv-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .tsrv-why-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tsrv-pricing-box {
    padding: 30px 20px;
  }

  .tsrv-pricing-item {
    width: 100%;
    justify-content: center;
  }

  .tsrv-faq-question {
    font-size: 14px;
    padding: 15px 18px;
  }

  .tsrv-video-wrapper iframe {
    height: 250px;
  }

  .tsrv-cta-box h2 {
    font-size: 1.5rem;
  }

  .tsrv-cta-box p {
    font-size: 14px;
  }
}
