/*
Theme Name: NorthTec Theme
Theme URI: https://example.com/northtec
Author: Paul / ChatGPT
Author URI: https://example.com
Description: A clean, Apple-inspired theme for the NorthTec Apple Service Centre website, including a service rates page.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: northtec-theme
*/

/* Basic layout and components (same as before) */

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f7;
  color: #111111;
  line-height: 1.6;
}

a {
  color: #0077ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5ea;
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #0077ff;
  color: #ffffff;
}

.btn-outline {
  border: 1px solid #0077ff;
  color: #0077ff;
  background: transparent;
}

.hero {
  padding: 60px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6e6e73;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 16px;
  color: #3a3a3c;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-meta {
  font-size: 13px;
  color: #6e6e73;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.hero-card h2 {
  font-size: 18px;
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
  font-size: 14px;
  color: #3a3a3c;
}

.hero-card li + li {
  margin-top: 6px;
}

.section {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.section-header p {
  font-size: 14px;
  color: #6e6e73;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e5e5ea;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #3a3a3c;
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f5f5f7;
  font-size: 11px;
  color: #6e6e73;
  margin-bottom: 10px;
}

.strip {
  background: #111111;
  color: #ffffff;
  border-radius: 24px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.strip p {
  font-size: 15px;
}

.strip .btn {
  background: #ffffff;
  color: #111111;
}

.footer {
  border-top: 1px solid #e5e5ea;
  padding: 24px 0 32px;
  margin-top: 32px;
  font-size: 13px;
  color: #6e6e73;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 14px;
  color: #6e6e73;
}

.form {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e5e5ea;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d2d2d7;
  font-size: 14px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-helper {
  font-size: 12px;
  color: #6e6e73;
  margin-top: 4px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}

.table th,
.table td {
  border: 1px solid #e5e5ea;
  padding: 10px 12px;
  text-align: left;
}

.table thead {
  background: #f5f5f7;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .nav-links {
    display: none;
  }
  .table {
    font-size: 13px;
  }
}
