/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #f5c518;
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --gray: #444;
  --light-gray: #f7f7f7;
  --border: #e5e5e5;
  --white: #ffffff;
  --font-heading: 'Montserrat', sans-serif;
  /* --font-body: 'Open Sans', sans-serif; */
  --font-body: 'Montserrat', sans-serif;
  --nav-height: 90px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  border-radius: 5px;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn-yellow:hover {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 12px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin: 14px auto 0;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgb(255, 255, 255);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .3s;
}

#navbar.scrolled {
  background: rgb(255 255 255);
  box-shadow: 1px 1px 10px #00000021;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo>img {
  width: 180px;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}

.logo-fix {
  color: var(--white);
}

.logo-team {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 11px;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f0be00;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-phone {
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  background: #000;
  padding: 10px 20px;
  border-radius: 29px;
}

.nav-phone:hover {
  background: var(--yellow);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero-content-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 7%;
  align-items: center;
}

.hero-content-row>.hero-content {
  width: 50%;
}

.hero-content-row>.hero-img {
  width: 50%;
}

.hero-sub-text {
  color: #fff !important;
  text-transform: capitalize !important;
  font-size: 15px !important;
  margin-top: -10px !important;
}


.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.144) 50%, rgba(0, 0, 0, 0.023) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../image/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  flex: 1;
}

.hero-sub {
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.1;
}

.hero-content .accent {
  color: var(--yellow);
}

.typed-line {
  display: inline-block;
  border-right: 3px solid var(--yellow);
  padding-right: 4px;
  animation: blink .8s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-img-side {
  display: none;
}

/* ===== DEVICES BAR ===== */
.devices-bar {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.devices-grid {
  /* display: grid;
  grid-template-columns: repeat(6, 1fr); */
  gap: 50px;
  display: flex;
  justify-content: space-around;

}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid #b3afaf61;
  border-radius: 10px;
}

.device-item:hover {
  border-color: var(--yellow);
}

.device-item svg {
  width: 38px;
  height: 38px;
  color: var(--gray);
  transition: color .2s;
}

.device-item:hover svg {
  color: var(--yellow);
}

.device-item span {
  font-size: 17px;
  font-family: var(--font-heading);
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  transition: color .2s;
}

.device-item:hover span {
  color: var(--black);
}

/* trust css */
.trust-bar {
  background: var(--yellow);
  padding: 18px 24px;
}

.trust-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--black);
}

/* ===== DARK SECTION ===== */
.dark-section {
  /* background: var(--dark); */
  background: #000;
  color: var(--white);
}

/* ===== FIX FAST ===== */
.fix-fast {
  padding: 80px 0;
  overflow: hidden;
  background: #eeeded;
}

.fix-fast-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.fix-fast-text {
  flex: 1;
}

.fix-fast-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.fix-fast-text p {
  color: rgba(0, 0, 0);
  margin-bottom: 32px;
  /* max-width: 420px; */
}

.fix-fast-img {
  flex: 0 0 500px;
  position: relative;
}

.fix-fast-img img {
  border-radius: 4px;
  height: 340px;
}

.brand-badge {
  position: absolute;
  bottom: -15px;
  left: 24px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  padding: 16px 20px;
  line-height: 1.2;
  border-radius: 4px;
}

.brand-badge strong {
  font-size: 1.4rem;
  display: block;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 90px 0;
  /* background: var(--white); */
  background: #f4f4f4 url(https://fixteam.ancorathemes.com/wp-content/uploads/2017/08/img_2.jpg?id=315) !important;
  background-attachment: fixed !important;
}

.why-us-inner {
  display: flex;
  align-items: center;
  gap: 190px;
}

.why-us-img {
  flex: 0 0 440px;
}

.why-us-img img {
  height: 480px;
  object-fit: cover;
}

.why-us-content {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}

.why-us-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 18px;
}

.why-us-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--yellow);
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  color: var(--black);
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.why-item p {
  color: var(--gray);
  font-size: 17px;
}

/* ===== PROBLEMS ===== */
.problems {
  padding: 90px 0;
  background: var(--light-gray);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.problem-card {
  background: var(--white);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  border-radius: 10px;
}

.problem-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.problem-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.problem-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.problem-card p {
  color: var(--gray);
  font-size: 17px;
  margin-bottom: 16px;
}

.read-more {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: color .2s;
}

.read-more:hover {
  color: var(--yellow);
}

/* ===== REPAIRS BUSINESS ===== */
.repairs-business {
  padding: 0;
  overflow: hidden;
  background-image: url("./../image/our-repair-bg.jpg");
  background-attachment: fixed;
}

.repairs-inner {
  display: flex;
  min-height: 400px;
}

.repairs-text {
  flex: 1;
  padding: 80px 60px 80px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.repairs-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.repairs-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 400px;
}

.repairs-img {
  flex: 0 0 50%;
}

.repairs-img img {
  height: 100%;
  min-height: 400px;
}

/* ===== FIX LIST ===== */
.fix-list {
  padding: 90px 0;
  background: var(--white);
}

.fix-list-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.fix-list-img {
  flex: 0 0 360px;
  position: relative;
}

.fix-list-img img {
  height: 480px;
  object-fit: contain;
}

.star-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--yellow);
  color: var(--black);
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 2px;
}

.fix-list-content {
  flex: 1;
}

.fix-list-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.fix-list-content>p {
  color: var(--gray);
  margin-bottom: 28px;
}

.fix-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.fix-checklist li {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: .5px;
  padding-left: 22px;
  position: relative;
  color: var(--black);
}

.fix-checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 90px 0;
  background: var(--light-gray);
}

.testi-bg{background: #ffffff;
    padding: 20px;
    border-radius: 20px;
      border-radius: 20px;
    box-shadow: 1px 2px 29px #00000026;}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
}

.testimonial {
  display: none;
  text-align: center;
  animation: fadeIn .5s;
}

.testimonial.active {
  display: block;
}
.stars {
    color: var(--yellow);
    font-size: 1.7rem;
    margin-bottom: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.testimonial p {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative;
  padding-top: 28px;
}

.testimonial p::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--yellow);
  font-family: Georgia;
  line-height: 1;
  opacity: .4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  flex-shrink: 0;
}

.testimonial-author div {
  text-align: left;
}

.testimonial-author strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  display: block;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

/* ===== LOCATIONS ===== */
.locations {
  background: var(--white);
}

.map-placeholder {
  height: 380px;
  overflow: hidden;
  background: #dde;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-fallback-inner {
  text-align: center;
  color: white;
}

.map-fallback-inner p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-top: 12px;
  letter-spacing: 2px;
}

.locations-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -1px;
}

.location-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: background .2s;
}

.location-card:hover {
  background: var(--light-gray);
}

.location-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.location-card p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
}

.location-card .btn {
  margin-top: 16px;
}

/* ===== SELL DEVICE ===== */
.sell-device {
  padding: 80px 0;
  overflow: hidden;
}

.sell-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sell-text {
  flex: 1;
}

.sell-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.sell-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 400px;
}

.sell-img {
  flex: 0 0 420px;
}

.sell-img img {
  height: 300px;
  border-radius: 4px;
}

/* ===== NEWS ===== */
.news {
  padding: 90px 0;
  background: var(--light-gray);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.news-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .25s;
}

.news-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.news-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-img img {
  height: 100%;
  transition: transform .4s;
}

.news-card:hover .news-img img {
  transform: scale(1.04);
}

.news-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  letter-spacing: 1px;
}

.news-body {
  padding: 28px;
}

.news-cat {
  display: inline-block;
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 10px;
}

.news-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-body p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-inner {
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.footer-inner>.footer-col {
 width:31.33%;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-top: 16px;
  /* max-width: 400px; */
  line-height: 1.8;
}

.footer-logo {
  font-size: 1.4rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}

.social-links a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--yellow);
}

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark);
  padding: 149px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  clip-path: polygon(0 0, 30% 0, 20% 100%, 0 100%);
  opacity: .08;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: var(--yellow);
  text-decoration: none;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 90px 0;
}

.about-intro-inner {
  display: flex;
  gap: 70px;
  align-items: center;
}

.about-intro-img {
  flex: 0 0 480px;
      border: 12px solid #fff;
    box-shadow: 1px 10px 20px #1b16004f;
}

.about-intro-img img {
  height: 520px;
}

.about-intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 18px;
}

.about-intro-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--yellow);
}

.about-intro-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.what-webg{
  background-image: url(../image/hero-bg.jpg)!important;
    background-size: cover;
    background-position: center;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team {
  padding: 90px 0;
  background: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  overflow: hidden;
  text-align: center;
}

.team-card-img {
  height: 240px;
  overflow: hidden;
}

.team-card-img img {
  height: 100%;
  transition: transform .4s;
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 20px;
}

.team-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.team-card-info span {
  font-size: 13px;
  color: var(--yellow);
}

/* ===== SERVICES PAGE ===== */
.ps-section {
    padding: 70px 24px;
    background: var(--white);
}
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2{
  font-size:48px;
}
.section-title h2 span {
    color: var(--yellow);
}
.ps-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.ps-card {
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    overflow: hidden;
    transition: .25s;
}
.ps-header {
    background: var(--black);
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.ps-header h3 {
    color: var(--yellow);
    font-size: 22px;
    font-weight: 700;
}
.services-contact-area{text-align:center;margin-top:40px;background:#f5f5f5;border-radius:14px;padding:32px;max-width:700px;margin:40px auto 0;}
.btn-primary {
    background: var(--yellow);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: .2s;
    display: inline-block;
}

.ps-header .ico {
    font-size: 2rem;
}
.ps-body {
    padding: 22px;
}
.ps-body ul {
    list-style: none;
    padding: 0;
}
.ps-body ul li {
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .9rem;
    color: var(--darkgray);
}
.ps-cta {
    text-align: center;
    padding: 0 22px 22px;
}

.ps-cta button {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}
.ps-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}



.services-grid-page {
  padding: 90px 0;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-box {
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all .25s;
  cursor: pointer;
  text-align: center;
}

.service-box:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-box-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.service-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-box p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.pricing-section {
  padding: 90px 0;
  background: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  border-top: 4px solid var(--border);
  transition: border-color .25s;
}

.price-card.featured {
  border-color: var(--yellow);
  background: var(--dark);
  color: var(--white);
}

.price-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--yellow);
}

.price-card .price span {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.price-features {
  list-style: none;
  margin: 24px 0 28px;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  color: var(--gray);
}

.price-card.featured .price-features li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 90px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--yellow);
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-detail-item h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail-item p {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
}

.contact-form-box {
  background: var(--light-gray);
  padding: 40px;
}

.contact-form-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #2ecc71;
  color: white;
  padding: 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-top: 16px;
  border-radius: 2px;
}

/* DATA RECOVERY */
  .dr-section{padding:70px 24px;background:var(--white);}
  .dr-inner{max-width:1100px;margin:auto;}
  .dr-inner h2{font-size:48px;color:var(--black);text-align:center;}
  .dr-inner h2 span{color:var(--yellow);}
  .dr-inner .sub{text-align:center;color:var(--darkgray);margin-top:10px;margin-bottom:48px;font-size:.97rem;}
  .dr-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px;margin-bottom:50px;}
  .dr-card{background:#f5f5f5;border:1px solid #e0e0e0;border-radius:14px;padding:28px;transition:.25s;}
  .dr-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.09);transform:translateY(-4px);border-color:var(--yellow);}
  .dr-card .ico{font-size:2.2rem;margin-bottom:12px;}
  .dr-card h4{color:var(--black);margin-bottom:10px;font-size:1rem;}
  .dr-card p{color:var(--darkgray);font-size:.88rem;line-height:1.7;}
  .process{background:#f5f5f5;border:1px solid #e0e0e0;border-radius:16px;padding:36px;margin-bottom:40px;}
  .process h3{color:var(--black);font-size:1.3rem;margin-bottom:24px;text-align:center;}
  .steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:20px;}
  .step{text-align:center;}
  .step-num{background:var(--yellow);color:var(--black);width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:1.1rem;margin:0 auto 12px;}
  .step p{color:var(--darkgray);font-size:.85rem;line-height:1.6;}
  .confidential{background:#fffbea;border:2px solid var(--yellow);border-radius:12px;padding:24px;text-align:center;}
  .confidential p{color:var(--black);font-size:.95rem;line-height:1.7;}
  .confidential span{color:#b88a00;font-weight:700;}

  .footer-col{width:33.33%;}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fix-fast-inner {
    gap: 40px;
  }

  .fix-fast-img {
    flex: 0 0 320px;
  }

  .why-us-inner {
    gap: 40px;
  }

  .why-us-img {
    flex: 0 0 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro-inner {
    flex-direction: column;
  }

  .about-intro-img {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    color: var(--white);
  }
  .logo>img {
    width: 136px;
}
#navbar{height: 69px!important;}

  .nav-links a::after {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
        background: #0b0b0d;
    border-radius: 5px;
    padding: 10px;
  }

  .devices-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    display: none;
  }

  .devices-bar {
    padding: 0px 0;
    /* border-bottom: 1px solid var(--border); */
  }

  .fix-fast-inner {
    flex-direction: column;
  }

  .fix-fast-img {
    flex: none;
    width: 100%;
  }

  .why-us-inner {
    flex-direction: column;
  }

  .why-us-img {
    flex: none;
    width: 100%;
  }

  .problems-grid {
    grid-template-columns: 1fr 1fr;
  }

  .repairs-inner {
    flex-direction: column;
  }

  .repairs-img {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .repairs-img img {
    height: 100%;
  }

  .fix-list-inner {
    flex-direction: column;
  }

  .fix-list-img {
    flex: none;
    width: 100%;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .locations-cards {
    grid-template-columns: 1fr;
  }

  .sell-inner {
    flex-direction: column;
  }

  .sell-img {
    flex: none;
    width: 100%;
  }

  .footer-inner {
    width: 100%;
     flex-direction: column;
     align-items: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero-content-row>.hero-img {
    width: 13%;
}
}

@media (max-width: 480px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }

    .hero-content-row>.hero-img {
        width: 0%;
    }
    .hero-content h1 {
    font-size: 32px;
}
.hero-sub-text {
    font-size: 10px !important;
}

  .services-list {
    grid-template-columns: 1fr;
  }

  /*.footer-inner {*/
  /*  grid-template-columns: 1fr;*/
  /*}*/

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-col{width:100%!important;}

}