/* Computer Repairs Pronto - Simplified CSS based on Hadiman template */
/* Fast, clean, no effects */

:root {
  --primary: #00446e;
  --primary-dark: #003559;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --dark: #00446e;
  --surface: #f8fafc;
  --outline: #e2e8f0;
  --text: #334155;
  --text-light: #64748b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

/* Prevent background scrolling when the full-screen mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1, .heading1 { font-size: 2.5rem; }
h2, .heading2 { font-size: 2rem; }
h3, .heading3 { font-size: 1.75rem; }
h4, .heading4 { font-size: 1.5rem; }
h5, .heading5 { font-size: 1.25rem; }
h6, .heading6 { font-size: 1rem; }

@media (min-width: 768px) {
  h1, .heading1 { font-size: 3rem; }
  h2, .heading2 { font-size: 2.5rem; }
  h3, .heading3 { font-size: 2rem; }
}

.body2 {
  font-size: 1.125rem;
}

.caption1 {
  font-size: 0.875rem;
}

.text-variant1 {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--orange-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
}

.btn-dark:hover {
  background: #1e293b;
}

/* Tag */
.tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-main {
  padding: 16px 0;
}

.header-main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
}

.logo-text strong {
  color: var(--orange);
  font-weight: 700;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.header-phone-text span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
}

.header-phone-text strong {
  font-size: 1.125rem;
}

/* Navigation */
.nav {
  background: var(--dark);
  padding: 0;
}

.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: var(--orange);
  color: var(--white);
}

/* Dropdown - Simple & Clean */
.nav-menu > li.has-dropdown > a::after {
  content: " ▾";
  font-size: 0.7rem;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 1000;
  border-top: 3px solid var(--orange);
}

.nav-menu > li.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 14px 20px;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: none;
  border-bottom: 1px solid var(--outline);
}

.dropdown a:hover {
  background: var(--surface);
  color: var(--orange);
}

.dropdown li:last-child a {
  border-bottom: none;
}

/* Dropdown Category Headers */
.dropdown-header {
  display: block;
  padding: 12px 20px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  background: var(--surface);
  border-bottom: 1px solid var(--outline);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  padding: 12px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 9999;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--outline);
  background: var(--dark);
}

.mobile-menu-header .logo-img {
  height: 50px;
  /* Keep the mobile-header logo compact and visible on dark background */
  background: white;
  padding: 6px 10px;
  border-radius: 4px;
  object-fit: contain;
  width: auto;
  max-width: 200px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-menu-content {
  padding: 0;
}

.mobile-menu-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-content > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--outline);
}

.mobile-menu-content > ul > li > a:hover {
  background: var(--surface);
  color: var(--orange);
}

.mobile-submenu {
  display: none;
  background: var(--surface);
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 14px 20px 14px 36px;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid var(--outline);
}

.mobile-submenu a:hover {
  color: var(--orange);
}

.mobile-submenu-header {
  padding: 12px 20px 8px 36px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  border-bottom: 1px solid var(--outline);
}

.mobile-menu-phone {
  padding: 16px 20px;
  background: var(--orange);
}

.mobile-menu-phone a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.mobile-menu-phone svg {
  stroke: white;
}

.mobile-menu-cta {
  padding: 24px 20px;
  text-align: center;
  background: var(--dark);
}

.mobile-menu-cta a {
  display: block;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .top-bar-info {
    display: none;
  }
  
  .header-phone-text {
    display: none;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-inner {
    justify-content: flex-end;
    padding: 4px 0;
  }
}

/* Logo Image */
.logo-img {
  height: 180px;
  width: auto;
  display: block;
  max-width: 600px;
}

.footer .logo-img {
  height: 100px;
  max-width: 400px;
  /* NOTE: This site uses a PNG logo (prontositelogo.png) that includes colours.
     The previous invert filter was turning it into a solid white rectangle ("missing logo"). */
  filter: none;
}

/* Mobile responsive - Google compliant (min 16px fonts, 48px touch targets) */
@media (max-width: 768px) {
  /* Base font size minimum 16px for readability */
  body {
    font-size: 16px;
  }
  
  /* All text minimum 16px */
  p, li, a, span, .caption1 {
    font-size: 16px;
  }
  
  .tag {
    font-size: 12px;
  }
  
  /* Logo - larger and to the left */
  .logo-img {
    height: 80px;
    max-width: 250px;
  }
  
  .header-main {
    padding: 8px 0;
  }
  
  .header-main-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  /* Logo stays left */
  .logo {
    flex: 0 0 auto;
  }
  
  /* Phone icon centered */
  .header-phone {
    flex: 1;
    justify-content: center;
  }
  
  .header-phone-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    min-width: 48px;
    min-height: 48px;
  }
  
  /* Button stays right */
  .header-contact {
    flex-shrink: 0;
    gap: 12px;
  }
  
  /* Button minimum 48px touch target, 16px font */
  .btn {
    padding: 12px 16px;
    font-size: 14px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .top-bar {
    padding: 6px 0;
  }
  
  .top-bar a {
    font-size: 16px;
  }
  
  /* Navigation mobile - minimum touch targets */
  .nav-toggle {
    min-width: 48px;
    min-height: 48px;
    font-size: 1.5rem;
  }
  
  .nav-menu.active a {
    padding: 16px 0;
    font-size: 16px;
    min-height: 48px;
  }
  
  /* Service cards */
  .service-content p {
    font-size: 16px;
  }
  
  .service-link {
    font-size: 16px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }
  
  /* Area cards - minimum touch target */
  .area-card {
    min-height: 48px;
    font-size: 16px;
    padding: 14px 16px;
  }
  
  /* FAQ */
  .faq-item h3 {
    font-size: 18px;
  }
  
  .faq-item p {
    font-size: 16px;
  }
  
  /* Footer links - touch targets */
  .footer-nav a {
    font-size: 16px;
    display: block;
    padding: 8px 0;
    min-height: 44px;
  }
  
  .footer-nav li {
    margin-bottom: 4px;
  }
  
  /* Content area */
  .content-area p, .content-area li {
    font-size: 16px;
  }
  
  /* Service list - touch targets */
  .service-list li {
    font-size: 16px;
    padding: 14px 0 14px 28px;
    min-height: 48px;
  }
  
  .service-list a {
    display: block;
    min-height: 44px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #005a8a 100%);
  color: var(--white);
  padding: 80px 0;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  font-size: 0.875rem;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .hero {
    padding: 120px 0;
  }
}

/* Sections */
.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header p {
  margin-top: 16px;
  color: var(--text-light);
}

.bg-surface {
  background: var(--surface);
}

.bg-dark {
  background: var(--dark);
  color: var(--white);
}

.bg-dark h2,
.bg-dark h3 {
  color: var(--white);
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  display: flex;
}

.service-icon {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-right: 8px solid var(--surface);
  border-bottom: 8px solid var(--surface);
}

/* Brand icons (e.g., Dell/HP/Lenovo/Asus/Acer) inside service cards */
.service-icon .brand-icon {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  margin-bottom: 12px;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--orange);
}

/* About Section */
.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-benefits {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .about-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-item h4 {
  margin: 16px 0 8px;
}

.benefit-icon {
  font-size: 3rem;
  color: var(--orange);
}

/* Stats */
.stats {
  display: grid;
  gap: 32px;
  text-align: center;
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.stat-item span {
  opacity: 0.8;
}

/* CTA Banner */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  padding: 48px;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 64px;
  }
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 24px;
  opacity: 0.8;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--orange);
  padding: 16px 32px;
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-phone:hover {
  background: var(--orange-dark);
}

/* Areas Grid */
.areas-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-card {
  display: block;
  padding: 20px 24px;
  background: var(--white);
  border: 2px solid var(--orange);
  font-weight: 600;
  color: var(--orange);
}

.area-card:hover {
  background: var(--orange);
  color: var(--white);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--outline);
  padding: 24px 0;
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-light);
}

/* Content Page */
.page-header {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
}

.page-content {
  padding: 60px 0;
}

.content-area {
  max-width: 800px;
  margin: 0 auto;
}

.content-area h2 {
  margin: 32px 0 16px;
  font-size: 1.5rem;
}

.content-area h3 {
  margin: 24px 0 12px;
  font-size: 1.25rem;
}

.content-area p {
  margin-bottom: 16px;
  color: var(--text);
}

.content-area ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-area li {
  margin-bottom: 8px;
  color: var(--text);
}

/* Content area links - orange theme color */
.content-area a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 2px;
}

.content-area a:hover {
  color: var(--orange-dark);
  text-decoration-color: var(--orange-dark);
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--outline);
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Contact Info */
.contact-box {
  background: var(--surface);
  padding: 32px;
  margin: 32px 0;
}

.contact-box h3 {
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-info .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-info p {
  opacity: 0.7;
  margin-bottom: 8px;
}

.footer-contact {
  margin-top: 16px;
}

.footer-contact a {
  display: block;
  margin-bottom: 8px;
}

.footer-nav h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  opacity: 0.7;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Utilities */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* Simple hover effects only */
a, .btn, .service-card, .area-card {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

/* Phone link styling */
a[href^="tel:"] {
  white-space: nowrap;
}

/* Print styles */
@media print {
  .header, .footer, .btn {
    display: none;
  }
}
