/* TV Antennas Fremantle - Enhanced Stylesheet v2 - FIXED FOR MOBILE */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --orange: #0369a1;
  --orange-dark: #CC5200;
  --orange-light: rgba(230, 92, 0, 0.1);
  --orange-glow: rgba(230, 92, 0, 0.15);
  --charcoal: #1a1a1a;
  --slate: #2d3748;
  --slate-light: #4a5568;
  --light: #f7f8fa;
  --lighter: #fafbfc;
  --white: #ffffff;
  --green: #22c55e;
  --green-light: rgba(34, 197, 94, 0.1);
  --border: #e2e8f0;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --yellow: #f59e0b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  background: var(--charcoal);
  padding: 0 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo span {
  color: var(--orange);
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

nav a.active {
  color: var(--orange);
}

.header-phone {
  background: #075985;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.mobile-menu-label {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 92, 0, 0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 92, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--slate);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: var(--slate-light);
  transform: translateY(-1px);
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fde8db;
  color: #b34700;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.65) 100%), url('fremantle_hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-badge .stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.2rem, 9vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.page-hero {
  min-height: 35vh;
  background: linear-gradient(135deg, var(--charcoal) 0%, #252525 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 50px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--light), transparent);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto;
}

/* SECTIONS */
section {
  padding: 90px 40px;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--charcoal);
}

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

.text-center {
  text-align: center;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  border: 1px solid var(--border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  border-radius: 4px 0 0 4px;
  transition: height 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.service-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
  color: var(--orange);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* REVIEWS */
.reviews-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  padding: 90px 40px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.google-rating .stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.google-rating .rating-text {
  font-weight: 600;
  color: var(--charcoal);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: #fed7c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #9a3f00;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author-info p {
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* FAQ */
.faq-section {
  padding: 90px 40px;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
  gap: 16px;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  color: var(--orange);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--slate);
  line-height: 1.7;
}

/* MAP SECTION */
.map-section {
  padding: 90px 40px;
  background: var(--light);
}

.map-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.map-content p {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.suburbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.suburb-tag {
  background: rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 400px;
  background: var(--light);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1f1f1f 100%);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--orange);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: var(--orange);
  opacity: 0.03;
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta > p, .cta-inner > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: #0f0f0f;
  padding: 70px 40px 40px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 0.95rem;
  transition: color 0.2s;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

/* SERVICE DETAIL BLOCKS */
.service-block {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block-content {
  flex: 1;
  min-width: 0;
}

.service-block-visual {
  flex: 0 0 280px;
  height: 220px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-block-visual svg {
  width: 80px;
  height: 80px;
  stroke-width: 1;
}

.service-block h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.service-block p {
  color: var(--slate);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.5;
}

.check-list svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ABOUT PAGE */
.about-intro {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  flex: 0 0 240px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-image p {
  text-align: center;
  margin-top: 14px;
  color: var(--slate);
  font-size: 0.9rem;
}

.about-text {
  flex: 1;
  min-width: 0;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--slate);
}

.about-text p:first-of-type {
  font-size: 1.25rem;
  color: var(--charcoal);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid var(--green);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.feature-card.orange {
  border-left-color: var(--orange);
}

.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card h3 svg {
  color: var(--green);
  flex-shrink: 0;
}

.feature-card.orange h3 svg {
  color: var(--orange);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* QUOTE PAGE */
.quote-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.quote-form h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.quote-form > p {
  color: var(--slate);
  margin-bottom: 28px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

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

.quote-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.quote-info {
  padding-top: 10px;
}

.quote-info h2 {
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.quote-info > p {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 14px;
  transition: all 0.2s;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  transform: translateX(6px);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  color: white;
}

.contact-method-icon.dark {
  background: var(--charcoal);
}

.contact-method h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method p {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-method .contact-value {
  color: #0284c7;
  font-weight: 600;
  font-size: 1.05rem;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #166534;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* PROBLEM CARDS */
.problem-section {
  padding: 90px 40px;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-card {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.problem-card:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(230, 92, 0, 0.1);
  transform: translateY(-3px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.problem-content {
  flex: 1;
  min-width: 0;
}

.problem-content p {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.problem-link {
  color: #0284c7;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.problem-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.problem-card:hover .problem-link svg {
  transform: translateX(4px);
}

/* PROCESS STEPS */
.process-section {
  padding: 90px 40px;
  background: var(--light);
}

.process-section .section-label {
  background: #e5e7eb;
  color: #374151;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
}

.process-number {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(230, 92, 0, 0.3);
}

.process-number svg {
  width: 28px;
  height: 28px;
  color: white;
}

.process-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.process-step p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-note {
  text-align: center;
  margin-top: 50px;
  color: var(--slate);
  font-size: 0.95rem;
}

/* STICKY MOBILE CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 999;
  display: none;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-cta .btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 0.95rem;
}

.sticky-cta.visible {
  display: flex;
}

/* HERO MICROCOPY */
.hero-microcopy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in > * {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0;
}

.animate-in > *:nth-child(1) { animation-delay: 0.1s; }
.animate-in > *:nth-child(2) { animation-delay: 0.2s; }
.animate-in > *:nth-child(3) { animation-delay: 0.3s; }
.animate-in > *:nth-child(4) { animation-delay: 0.4s; }
.animate-in > *:nth-child(5) { animation-delay: 0.5s; }
.animate-in > *:nth-child(6) { animation-delay: 0.6s; }

/* ====================== */
/* RESPONSIVE BREAKPOINTS */
/* ====================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .map-container {
    grid-template-columns: 1fr;
  }
  .map-embed {
    height: 350px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .service-block {
    flex-direction: column !important;
    gap: 30px;
  }
  .service-block-visual {
    flex: none;
    width: 100%;
    height: 200px;
  }
  .about-intro {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    flex: none;
    margin: 0 auto;
  }
  .quote-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-info {
    order: -1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 64px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  nav {
    display: none;
  }
  .mobile-menu-label {
    display: block;
  }
  .hero, .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }
  section {
    padding: 60px 20px;
  }
  .services-grid,
  .reviews-grid,
  .problem-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-contact a {
    justify-content: center;
  }
  .quote-form {
    padding: 28px 20px;
  }
  .quote-info h2 {
    font-size: 1.8rem;
  }
  .contact-method {
    padding: 18px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 20px 0;
  }
  body.has-sticky-cta {
    padding-bottom: 80px;
  }
  .service-block h2 {
    font-size: 1.4rem;
  }
  .service-block p {
    font-size: 1rem;
  }
  .google-rating {
    padding: 10px 16px;
  }
  .google-rating svg {
    width: 60px;
    height: auto;
  }
}

/* Small mobile - 375px and below */
@media (max-width: 480px) {
  header {
    padding: 0 16px;
  }
  .logo {
    font-size: 1.1rem;
    gap: 8px;
  }
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  .logo-icon svg {
    width: 14px;
    height: 14px;
  }
  .hero {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  .hero-badge {
    padding: 10px 14px;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-badge span {
    font-size: 0.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .hero-buttons {
    margin-bottom: 28px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    gap: 8px;
  }
  .trust-item {
    font-size: 0.85rem;
  }
  section {
    padding: 50px 16px;
  }
  .page-hero {
    padding: 100px 16px 40px;
    min-height: 30vh;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
  .section-label {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  .problem-card {
    padding: 18px;
    gap: 12px;
  }
  .problem-icon {
    width: 40px;
    height: 40px;
  }
  .problem-icon svg {
    width: 20px;
    height: 20px;
  }
  .problem-content p {
    font-size: 0.9rem;
  }
  .problem-link {
    font-size: 0.85rem;
  }
  .process-number {
    width: 56px;
    height: 56px;
  }
  .process-number svg {
    width: 24px;
    height: 24px;
  }
  .process-step h3 {
    font-size: 1.1rem;
  }
  .process-step p {
    font-size: 0.9rem;
  }
  .reviews-header h2 {
    font-size: 1.6rem;
  }
  .review-card {
    padding: 22px;
  }
  .review-text {
    font-size: 0.95rem;
  }
  .google-rating {
    flex-direction: column;
    gap: 8px;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 18px 0;
  }
  .faq-answer-inner {
    font-size: 0.95rem;
  }
  .map-content h2 {
    font-size: 1.6rem;
  }
  .suburb-tag {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  .cta h2 {
    font-size: 1.6rem;
  }
  .cta > p, .cta-inner > p {
    font-size: 0.95rem;
  }
  .quote-form {
    padding: 24px 16px;
  }
  .quote-form h2 {
    font-size: 1.2rem;
  }
  .quote-info h2 {
    font-size: 1.5rem;
  }
  .quote-info > p {
    font-size: 1rem;
  }
  .contact-method {
    padding: 16px;
    gap: 14px;
  }
  .contact-method-icon {
    width: 42px;
    height: 42px;
  }
  .contact-method h3 {
    font-size: 0.95rem;
  }
  .contact-method p {
    font-size: 0.85rem;
  }
  .contact-method .contact-value {
    font-size: 0.95rem;
  }
  .response-badge {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
  footer {
    padding: 50px 16px 30px;
  }
  .footer-brand p {
    font-size: 0.9rem;
  }
  .footer-links a, .footer-contact a {
    font-size: 0.9rem;
  }
  .footer-bottom p {
    font-size: 0.8rem;
  }
  .service-block-visual {
    height: 160px;
  }
  .service-block h2 {
    font-size: 1.25rem;
  }
  .service-block p {
    font-size: 0.95rem;
  }
  .check-list li {
    font-size: 0.9rem;
    gap: 10px;
  }
  .check-list svg {
    width: 18px;
    height: 18px;
  }
  .about-image {
    max-width: 200px;
  }
  .about-text p {
    font-size: 1rem;
  }
  .about-text p:first-of-type {
    font-size: 1.1rem;
  }
  .feature-card {
    padding: 22px;
  }
  .feature-card h3 {
    font-size: 0.95rem;
  }
  .feature-card p {
    font-size: 0.9rem;
  }
  .form-group input, 
  .form-group select, 
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .form-group label {
    font-size: 0.9rem;
  }
}

/* Extra small screens - 360px and below */
@media (max-width: 360px) {
  .logo {
    font-size: 1rem;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-badge {
    padding: 8px 12px;
  }
  .hero-badge .stars {
    font-size: 0.9rem;
  }
  .hero-badge span {
    font-size: 0.75rem;
  }
  .btn {
    padding: 11px 16px;
    font-size: 0.85rem;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .cta h2 {
    font-size: 1.4rem;
  }
  .quote-info h2 {
    font-size: 1.4rem;
  }
}
