/* ═══════════════════════════════════════════════
   Eazy Computer Repair — style.css
   Brand: Green #1DB954 / Black #0A0A0A / White #FFFFFF / Gray #2A2A2A
   ═══════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1DB954;
  --green-dark:  #159A42;
  --green-light: #25D966;
  --black:       #0A0A0A;
  --gray-dark:   #1A1A1A;
  --gray-mid:    #2A2A2A;
  --gray:        #3D3D3D;
  --gray-light:  #6B6B6B;
  --white:       #FFFFFF;
  --off-white:   #F5F5F5;
  --border:      rgba(255,255,255,0.08);

  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.28);
  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-pad { padding: 80px 0; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header--left { text-align: left; }
.section-header--light h2,
.section-header--light .section-sub { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--green); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-sub a { color: var(--green); font-weight: 600; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn--lg  { padding: 0.8rem 1.8rem; font-size: 1.05rem; }
.btn--xl  { padding: 1rem 2.2rem; font-size: 1.1rem; }

.btn--call {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--call:hover, .btn--call:focus {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,185,84,0.4);
}

.btn--book {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--book:hover, .btn--book:focus {
  background: var(--gray-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover, .btn--white:focus {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

/* ── Top Bar ── */
.top-bar {
  background: var(--gray-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.top-bar__item svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }
.top-bar__phone { font-weight: 700; color: var(--green); transition: color var(--transition); }
.top-bar__phone:hover { color: var(--green-light); }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--green);
  transition: box-shadow var(--transition);
}
.navbar--scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}
.navbar__logo img {
  height: 56px;
  width: auto;
  transition: transform var(--transition);
}
.navbar__logo:hover img { transform: scale(1.05); }

.navbar__nav ul {
  display: flex;
  gap: 0.25rem;
}
.navbar__nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.navbar__nav a:hover { color: var(--green); background: rgba(29,185,84,0.08); }

.navbar__cta { display: flex; align-items: center; gap: 0.6rem; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.navbar__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-active span:nth-child(2) { opacity: 0; }
.navbar__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 60%, #0d1a0d 100%);
  overflow: hidden;
  padding: 80px 0 70px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(29,185,84,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29,185,84,0.07) 0%, transparent 40%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(29,185,84,0.15);
  border: 1px solid rgba(29,185,84,0.3);
  color: var(--green);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero h1 .highlight { color: var(--green); }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}
.badge__icon { color: var(--green); font-weight: 700; }

.hero__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(29,185,84,0.15) 0%, transparent 70%);
  border-radius: 50%;
  padding: 2rem;
}
.hero__img-wrap img {
  filter: drop-shadow(0 0 40px rgba(29,185,84,0.35));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--green);
  padding: 1.25rem 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  text-align: center;
  color: var(--white);
}
.trust-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
.trust-item span { font-size: 0.82rem; opacity: 0.9; font-weight: 500; }

/* ── Services ── */
.services { background: var(--off-white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid #e8e8e8;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--black); }
.service-card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.6; margin-bottom: 1.1rem; }
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.88rem;
  transition: gap var(--transition);
}
.service-card__cta svg { width: 16px; height: 16px; fill: currentColor; }
.service-card__cta:hover { gap: 0.5rem; }

.services__cta-bar {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.services__cta-bar p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.services__cta-bar p strong { color: var(--green); }
.services__cta-bar .btn { flex-shrink: 0; }

/* ── Why Us ── */
.why-us { background: var(--gray-dark); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.6); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.reason-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.reason-card:hover {
  background: rgba(29,185,84,0.08);
  border-color: rgba(29,185,84,0.3);
  transform: translateY(-4px);
}
.reason-card__icon { font-size: 2.2rem; margin-bottom: 1rem; }
.reason-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.reason-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 60px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.cta-banner__text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-banner .btn--call { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.cta-banner .btn--call:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ── Areas ── */
.areas { background: var(--off-white); }
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid #ddd;
  color: var(--black);
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.area-chip svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }
.area-chip:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: translateY(-2px); }
.area-chip:hover svg { fill: var(--white); }

.areas__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.areas__map iframe { display: block; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: var(--green); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  transition: background var(--transition), color var(--transition);
}
.faq-item.is-open .faq-item__q { background: rgba(29,185,84,0.06); color: var(--green-dark); }
.faq-item__q:hover { background: var(--off-white); }

.faq-item__arrow {
  width: 20px; height: 20px; fill: var(--gray-light); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.is-open .faq-item__arrow { transform: rotate(180deg); fill: var(--green); }

.faq-item__a { padding: 0 1.5rem 1.2rem; }
.faq-item__a p { font-size: 0.95rem; color: var(--gray-light); line-height: 1.75; }

/* ── Contact ── */
.contact { background: var(--black); }
.contact .section-header h2 { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.6); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact__details { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__detail-item svg { width: 22px; height: 22px; fill: var(--green); flex-shrink: 0; margin-top: 2px; }
.contact__detail-item strong { display: block; color: var(--green); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact__detail-item a, .contact__detail-item span { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6; }
.contact__detail-item a:hover { color: var(--green); }
.contact__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 0.5rem; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact__map iframe { display: block; }

/* ── Footer ── */
.footer { background: var(--gray-dark); padding: 60px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand img { margin-bottom: 1rem; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer__phone { color: var(--green); font-weight: 700; font-size: 1.05rem; display: block; }
.footer__phone:hover { color: var(--green-light); }

.footer__links h3,
.footer__services h3,
.footer__social-col h3 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer__links ul,
.footer__services ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--green); }
.footer__services li { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Social Icons */
.footer__social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.social-icon svg { width: 20px; height: 20px; fill: var(--white); transition: fill var(--transition); }
.social-icon:hover { transform: translateY(-3px); }

.social-icon--facebook:hover  { background: #1877F2; border-color: #1877F2; }
.social-icon--instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%, #285AEB 90%); border-color: transparent; }
.social-icon--youtube:hover   { background: #FF0000; border-color: #FF0000; }
.social-icon--tiktok:hover    { background: #000; border-color: #69C9D0; }
.social-icon--google:hover    { background: #fff; border-color: #4285F4; }
.social-icon--google:hover svg path { fill: #4285F4; }

.footer__book .btn--book {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.footer__book .btn--book:hover { background: var(--green-dark); }

.footer__bottom {
  background: var(--black);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--green); }

/* ── Floating Call Button ── */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(29,185,84,0.5);
  animation: pulse 2.5s infinite;
  transition: background var(--transition), transform var(--transition);
}
.float-call svg { width: 26px; height: 26px; fill: var(--white); }
.float-call:hover { background: var(--green-dark); transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(29,185,84,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(29,185,84,0.8), 0 0 0 10px rgba(29,185,84,0.1); }
}

/* ── Scroll Animations ── */
.anim-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__inner   { grid-template-columns: repeat(2, 1fr); }
  .contact__inner  { grid-template-columns: 1fr; }
  .contact__map iframe { height: 300px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .top-bar__item:first-child { display: none; }

  /* Navbar */
  .navbar__nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--gray-dark);
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--green);
    padding: 1rem;
  }
  .navbar__nav.is-open { display: block; }
  .navbar__nav ul { flex-direction: column; gap: 0; }
  .navbar__nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
  }
  .navbar__cta .btn--book { display: none; }
  .navbar__burger { display: flex; }

  /* Hero */
  .hero { padding: 56px 0 48px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__image { order: -1; }
  .hero__img-wrap img { max-width: 220px; margin: 0 auto; }
  .hero__sub { margin: 0 auto 1.75rem; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .services__cta-bar { flex-direction: column; text-align: center; align-items: center; }

  /* Why us */
  .why-us__grid { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  /* Float call btn */
  .float-call { display: flex; }

  /* Trust bar */
  .trust-bar__inner { justify-content: center; gap: 1.5rem; }

  /* Contact */
  .contact__inner { gap: 2.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .btn--xl { padding: 0.85rem 1.6rem; font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .contact__actions { flex-direction: column; align-items: stretch; }
  .contact__actions .btn { justify-content: center; }
}

/* Print */
@media print {
  .top-bar, .navbar, .float-call, .cta-banner, .hero__image { display: none; }
  .hero { min-height: auto; padding: 20px 0; }
  body { color: #000; background: #fff; }
}
