* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #111;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fa6322;
}

.logo span {
  color: #111;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp {
  color: #444;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background: #fa6322;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #fa6322;
  display: block;
}

.hero-text p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #fa6322;
  color: #fa6322;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.hero-features {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.hero-features li {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features span {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}



/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .menu,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-image img {
    border-radius: 16px;
  }
}









/* ===== WHY US ===== */
.why-us {
  background: #fafafa;
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  padding: 36px 26px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #eef2ff;
  color: #fa6322;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===== DEVICES ===== */
.devices {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section-head p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.device-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.device-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.device-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #111;
}

.device-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.device-card p {
  font-size: 14px;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .why-grid,
  .device-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .why-grid,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 26px;
  }
}









/* ===== POPULAR SERVICES ===== */
.popular-services {
  padding: 90px 0;
}

.popular-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 20px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #fa6322;
  letter-spacing: 1.5px;
}

.popular-head h2 {
  font-size: 36px;
  margin-top: 6px;
}

.view-all {
  border: 2px solid #fa6322;
  padding: 10px 18px;
  border-radius: 12px;
  color: #fa6322;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #eee;
  position: relative;
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fa6322;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-time {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: #fa6322;
  margin-bottom: 18px;
}

.service-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.service-tags span {
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.btn-outline.full {
  width: 100%;
  justify-content: center;
  gap: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .popular-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .popular-head h2 {
    font-size: 30px;
  }
}














/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 70px 0;
  background: #fff;
}

.how-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}

.how-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.how-head p {
  color: #666;
  font-size: 15px;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.step-card {
  position: relative;
  background: #fafafa;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
}

/* NUMBER */
.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fa6322;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef2ff;
  color: #fa6322;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 10px auto 20px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ARROW */
.step-arrow {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 18px;
}

/* CTA */
.how-cta {
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .step-arrow {
    display: none;
  }

  .how-head h2 {
    font-size: 28px;
  }
}





/* ===============================
   TESTIMONIALS SECTION
================================ */
.testimonials {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.testimonials-header .subtitle {
  font-size: 16px;
  color: #6b7280;
}

/* ===== GRID ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== CARD ===== */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ===== STARS ===== */
.testimonial-stars {
  color: #fa6322;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* ===== TEXT ===== */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 30px;
}

/* ===== DIVIDER ===== */
.testimonial-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.testimonial-location {
  font-size: 14px;
  color: #6b7280;
}

/* ===== SERVICE LINK ===== */
.testimonial-service {
  font-size: 14px;
  color: #fa6322;
  text-decoration: none;
  font-weight: 500;
}

.testimonial-service:hover {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-header h2 {
    font-size: 28px;
  }
}












/* ===============================
   FOOTER
================================ */
.footer {
  background: radial-gradient(circle at top left, #1a1a1a, #000);
  color: #ffffff;
  padding: 70px 20px 30px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 50px;
}

/* ===== BRAND ===== */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-brand h3 span {
  color: #fa6322;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #ffffff;
}

/* ===== CONTACT LIST ===== */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-contact i {
  color: #9ca3af;
  font-size: 14px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #111;
  border-color: #fa6322;
}

/* ===== FOOTER HEADINGS ===== */
.footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}

/* ===== LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: #f5f5f5;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ===== DIVIDER ===== */
.footer-divider {
  height: 1px;
  background: #1f2937;
  margin: 50px 0 25px;
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #9ca3af;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 20px 25px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 15px;
  }
}






/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  padding: 20px;
  transition: 0.3s ease;
}

.mobile-menu.active {
  left: 0;
}

/* HEADER */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header h3 {
  font-size: 20px;
  font-weight: 600;
}

.mobile-menu-header span {
  color: #fa6322;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* LINKS */
.mobile-menu-links {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.mobile-menu-links li {
  margin-bottom: 18px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: #555;
  font-size: 16px;
}

.mobile-menu-links a.active {
  color: #000;
  font-weight: 500;
}

/* ACTION BUTTONS */
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

.btn.primary {
  background: #fa6322;
  color: #fff;
}

.btn.outline {
  border: 1px solid #fa6322;
  color: #fa6322;
  background: #fff;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 9998;
}

.menu-overlay.active {
  display: block;
}

/* DESKTOP HIDE */
@media (min-width: 768px) {
  .mobile-menu,
  .menu-overlay {
    display: none;
  }
}



















.services-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

h2 {
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.services-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

/* FILTERS */
.filters {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.filters h4 {
  margin: 20px 0 10px;
}

.filters label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

#clearFilters {
  border: none;
  background: none;
  color: #fa6322;
  cursor: pointer;
}

/* CARDS */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  color: #555;
}

.card .time {
  display: block;
  margin: 10px 0;
  color: #777;
}

.card strong {
  color: #fa6322;
}

.card button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #fa6322;
  background: #fff;
  color: #fa6322;
  cursor: pointer;
}

.card button:hover {
  background: #fa6322;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
}






.cart-btn {
  position: relative;
  padding-right: 35px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}




:root{
  --blue:#fa6322;
  --border:#e5e7eb;
  --text:#111827;
  --muted:#6b7280;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,system-ui,-apple-system;
}

body{
  background:#fff;
  color:var(--text);
}

/* ===== MOBILE TOP BAR ===== */
.mobile-top{
  display:none;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
}

.mobile-filter-btn{
  border:1.5px solid var(--blue);
  color:var(--blue);
  background:#fff;
  padding:6px 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}

/* ===== LAYOUT ===== */
.container{
  max-width:1400px;
  margin:auto;
  padding:24px;
}

.layout{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:32px;
}

/* ===== SIDEBAR ===== */
.sidebar{
  position:sticky;
  top:24px;
  background:#fff;
}

.sidebar h4{
  margin:18px 0 10px;
  font-size:14px;
  font-weight:600;
}

.option{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin-bottom:10px;
}

.option input{
  accent-color:var(--blue);
}

/* ===== HEADER ===== */
.top-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.service-count{
  font-size:14px;
  color:var(--muted);
}

/* ===== GRID ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* ===== CARD ===== */
.card{
  border:1px solid var(--border);
  border-radius:20px;
  padding:26px;
  display:flex;
  flex-direction:column;
  background:#fff;
  transition:.25s;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.badge{
  color:var(--blue);
  font-size:13px;
  font-weight:600;
  margin-bottom:10px;
  display:flex;
  gap:6px;
  align-items:center;
}

.card h3{
  font-size:20px;
  margin-bottom:8px;
}

.desc{
  font-size:14px;
  color:var(--muted);
  margin-bottom:12px;
  line-height:1.6;
}

.time{
  font-size:14px;
  color:var(--muted);
  margin-bottom:12px;
  display:flex;
  gap:8px;
}

.price{
  font-size:20px;
  font-weight:600;
  color:var(--blue);
  margin-bottom:14px;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.tag{
  background:#f3f4f6;
  padding:6px 12px;
  font-size:13px;
  border-radius:999px;
}

/* ===== BUTTON ===== */
.btn{
  margin-top:auto;
  padding:14px;
  border-radius:14px;
  border:2px solid var(--blue);
  background:#fff;
  color:var(--blue);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:.25s;
}

.btn:hover{
  background:var(--blue);
  color:#fff;
}

/* ===== MOBILE FILTER DRAWER ===== */
.overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.4);
  z-index:99;
}

@media(max-width:1024px){
  .grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:768px){
  .mobile-top{display:flex;}
  .layout{grid-template-columns:1fr;}
  .grid{grid-template-columns:1fr;}

  .sidebar{
    position:fixed;
    left:-100%;
    top:0;
    height:100%;
    width:80%;
    max-width:300px;
    padding:20px;
    z-index:100;
    transition:.3s;
    overflow:auto;
  }

  .sidebar.active{left:0;}
  .overlay.active{display:block;}
}










.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.logo {
    max-width: 140px;   /* adjust based on your design */
    height: auto;
}

/* Smaller screens */
@media (max-width: 480px) {
    .logo {
        max-width: 110px;
    }
}
