/* DeviceFix Studio - Western Digital Data Recovery
   Domain: www.556155.xyz | Brand: Western Digital
   Professional Green/White/Gray Theme */

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #2d3436;
  background: #f8f9fa;
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; }
a { color: #007a4b; text-decoration: none; transition: color 0.3s; }
a:hover { color: #004d2e; }
ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1a2e;
  line-height: 1.3;
}
h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #007a4b;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo { font-size: 1.5rem; font-weight: 700; color: #1a1a2e; }
.logo span { color: #007a4b; }
.logo .tagline { display: block; font-size: 0.7rem; font-weight: 400; color: #888; letter-spacing: 1px; text-transform: uppercase; }
.nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-list a {
  color: #444;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 3px;
}
.nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #007a4b;
  transition: width 0.3s;
}
.nav-list a:hover::after { width: 100%; }
.nav-list a:hover { color: #007a4b; }
.nav-cta {
  background: #007a4b;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { background: #005e3a; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3e 40%, #1a5276 100%);
  color: #fff;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { color: #fff; font-size: 2.8rem; margin-bottom: 1.2rem; }
.hero p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 2rem; opacity: 0.92; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat h3 { color: #fff; font-size: 1.8rem; margin-bottom: 0; }
.hero-stat p { font-size: 0.85rem; opacity: 0.75; margin-bottom: 0; }
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-primary {
  background: #007a4b;
  color: #fff;
}
.btn-primary:hover { background: #005e3a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,122,75,0.35); color: #fff; }
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  margin-left: 12px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ========== SECTION ========== */
.section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { position: relative; display: inline-block; padding-bottom: 12px; }
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #007a4b;
  border-radius: 2px;
}
.section-title p { color: #666; max-width: 600px; margin: 12px auto 0; }
.bg-white { background: #fff; }
.bg-light { background: #f0f4f2; }

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border: 1px solid #eef3ef;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,122,75,0.12);
  border-color: #007a4b;
}
.service-card .icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8f5ee, #c8e6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #007a4b;
}
.service-card h3 { font-size: 1.15rem; }
.service-card p { color: #666; font-size: 0.9rem; margin-top: 8px; line-height: 1.6; }
.service-card .card-link {
  display: inline-block;
  margin-top: 14px;
  color: #007a4b;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #eef3ef;
}
.testimonial-card .stars { color: #f1c40f; font-size: 0.95rem; margin-bottom: 10px; }
.testimonial-card p { font-style: italic; color: #555; font-size: 0.95rem; }
.testimonial-card .author { margin-top: 14px; font-weight: 600; color: #1a1a2e; font-style: normal; }
.testimonial-card .author span { font-weight: 400; color: #888; font-size: 0.85rem; }

/* ========== PROCESS ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid #eef3ef;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #007a4b;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.process-step h4 { font-size: 1rem; font-family: 'Segoe UI', sans-serif; }
.process-step p { font-size: 0.85rem; color: #777; margin-top: 6px; }

/* ========== ARTICLES SECTION (Home) ========== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #eef3ef;
  transition: all 0.3s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0,122,75,0.1); }
.article-card-body { padding: 22px 24px; }
.article-card .tag {
  display: inline-block;
  background: #e8f5ee;
  color: #007a4b;
  padding: 3px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.article-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.article-card h3 a { color: #1a1a2e; }
.article-card h3 a:hover { color: #007a4b; }
.article-card p { color: #666; font-size: 0.88rem; line-height: 1.6; }
.article-card .meta { color: #999; font-size: 0.8rem; margin-top: 12px; }

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: linear-gradient(135deg, #1a3a2a, #2d5a3e);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.contact-section h2 { color: #fff; margin-bottom: 1.5rem; }
.contact-section h2::after { background: rgba(255,255,255,0.4); }
.contact-details { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 1.5rem; }
.contact-item { font-size: 1.05rem; }
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; margin-bottom: 4px; }
.contact-item a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.3); }
.contact-item a:hover { border-bottom-color: #fff; }

/* ========== FOOTER ========== */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
  padding: 40px 0 30px;
  font-size: 0.9rem;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand .logo-footer { color: #fff; font-size: 1.2rem; font-weight: 700; }
.footer-brand .logo-footer span { color: #5db48a; }
.footer-brand p { font-size: 0.82rem; margin-top: 4px; }
.footer-links a { color: rgba(255,255,255,0.6); margin: 0 10px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; margin-top: 20px; text-align: center; font-size: 0.8rem; }

/* ========== ARTICLE PAGE ========== */
.article-page { padding: 50px 0 60px; }
.breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.5rem;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.breadcrumb a { color: #007a4b; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; color: #ccc; }
.article-content {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  border: 1px solid #eef3ef;
}
.article-content h1 { font-size: 2rem; border-bottom: 3px solid #007a4b; padding-bottom: 15px; margin-bottom: 20px; }
.article-content .pub-date { color: #888; font-size: 0.85rem; margin-bottom: 1.5rem; display: block; }
.article-content h2 { margin-top: 2rem; }
.article-content p { margin-bottom: 1rem; color: #444; }
.article-content ul, .article-content ol { margin: 1rem 0 1rem 1.5rem; }
.article-content li { margin-bottom: 0.5rem; color: #444; }
.article-content .cta-box {
  background: linear-gradient(135deg, #e8f5ee, #d4edda);
  border-left: 4px solid #007a4b;
  padding: 20px 24px;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.article-content .cta-box p { margin-bottom: 0; }
.article-content .related-articles {
  border-top: 2px solid #eef3ef;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}
.article-content .related-articles h3 { margin-bottom: 1rem; }
.article-content .related-articles ul { margin: 0; }
.article-content .related-articles li { margin-bottom: 0.6rem; }
.article-content .related-articles a { color: #007a4b; font-weight: 500; }
.article-content .related-articles a:hover { text-decoration: underline; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: 50px 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .header-inner { flex-direction: column; gap: 12px; }
  .nav-list { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .btn-outline-light { margin-left: 0; margin-top: 10px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .services-grid, .testimonials-grid, .articles-grid { grid-template-columns: 1fr; }
  .article-content { padding: 24px; }
  .contact-details { flex-direction: column; gap: 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
}
