/* ========================================
   Premrest - Aged Care Flooring
   Complete Production CSS
   ======================================== */

/* ========================================
   1. RESET & BASE STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8F8F7;
  color: #2C2D30;
  line-height: 1.7;
  font-size: 16px;
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #2C2D30;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 680px;
}

small, .small-text, .caption {
  font-size: 13px;
  line-height: 1.6;
  color: #6B6B6B;
}

.subtitle {
  font-size: 17px;
  color: #6B6B6B;
  line-height: 1.7;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
}

a {
  color: #C76138;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #B5552E;
}

/* ========================================
   3. BUTTONS & FORMS
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border-radius: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background-color: #C76138;
  color: white;
}

.btn-primary:hover {
  background-color: #B5552E;
}

.btn-primary:active {
  background-color: #9E4823;
}

.btn-secondary {
  background-color: transparent;
  color: #2C2D30;
  border: 1px solid #2C2D30;
}

.btn-secondary:hover {
  background-color: #2C2D30;
  color: white;
}

.btn-secondary:active {
  background-color: #1a1b1e;
}

.btn-white {
  background-color: white;
  color: #2C2D30;
}

.btn-white:hover {
  background-color: #F8F8F7;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 15px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="phone"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border: 1px solid #D0CFC9;
  background-color: white;
  color: #2C2D30;
  transition: border-color 0.2s ease;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #C76138;
  box-shadow: 0 0 0 3px rgba(199, 97, 56, 0.1);
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #2C2D30;
}

.form-group {
  margin-bottom: 1.5rem;
}

/* ========================================
   4. LAYOUT & SPACING
   ======================================== */

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.col {
  flex: 1;
  padding: 0 10px;
  min-width: 0;
}

.col-1 { width: calc(8.333% - 20px); }
.col-2 { width: calc(16.666% - 20px); }
.col-3 { width: calc(25% - 20px); }
.col-4 { width: calc(33.333% - 20px); }
.col-5 { width: calc(41.666% - 20px); }
.col-6 { width: calc(50% - 20px); }
.col-7 { width: calc(58.333% - 20px); }
.col-8 { width: calc(66.666% - 20px); }
.col-9 { width: calc(75% - 20px); }
.col-10 { width: calc(83.333% - 20px); }
.col-11 { width: calc(91.666% - 20px); }
.col-12 { width: calc(100% - 20px); }

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Sections */
section {
  padding: 100px 0;
}

section.hero {
  padding: 120px 20px;
}

section.compact {
  padding: 60px 0;
}

/* ========================================
   5. HEADER & NAVIGATION
   ======================================== */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: transparent;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2C2D30;
  text-decoration: none;
  letter-spacing: -0.5px;
}

header.scrolled .logo {
  color: #2C2D30;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  flex: 1;
  justify-content: center;
  margin: 0 60px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #2C2D30;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: #C76138;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C76138;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #2C2D30;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.hero {
  background-color: #F8F8F7;
  padding: 140px 20px 100px;
  position: relative;
  overflow: hidden;
}

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

.hero h1 {
  margin-bottom: 1.25rem;
  color: #2C2D30;
}

.hero .subtitle {
  font-size: 18px;
  color: #6B6B6B;
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-image {
  margin-top: 60px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   7. TRUST BAR / STATS
   ======================================== */

.trust-bar {
  background-color: #FFFFFF;
  padding: 40px 0;
  border-top: 1px solid #E5E5E0;
  border-bottom: 1px solid #E5E5E0;
}

.trust-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid #D0CFC9;
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #C76138;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2C2D30;
}

/* ========================================
   8. CARDS & COMPONENTS
   ======================================== */

.card {
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 32px;
  border-radius: 2px;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  height: 240px;
  background-color: #F0F0ED;
  margin: -32px -32px 24px -32px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 1.5rem;
}

.card-footer {
  margin-top: auto;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #F0F0ED;
  margin-top: 16px;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 40px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #FFF0E8;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin: 0 auto;
  color: #6B6B6B;
  font-size: 15px;
}

/* ========================================
   9. SECTIONS & BACKGROUNDS
   ======================================== */

.section-light {
  background-color: #F8F8F7;
}

.section-white {
  background-color: #FFFFFF;
}

.section-dark {
  background-color: #2C2D30;
  color: white;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: white;
}

.section-dark p,
.section-dark small {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark a {
  color: #FFA566;
}

.section-dark a:hover {
  color: #FFB580;
}

.section-accent {
  background-color: #FFF0E8;
}

/* ========================================
   10. TESTIMONIALS
   ======================================== */

.testimonial {
  background-color: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #C76138;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #2C2D30;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 14px;
  color: #2C2D30;
}

.testimonial-title {
  font-size: 13px;
  color: #6B6B6B;
  margin-top: 4px;
}

.stars {
  color: #C76138;
  margin-bottom: 12px;
  font-size: 14px;
}

/* ========================================
   11. FOOTER
   ======================================== */

footer {
  background-color: #2C2D30;
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 16px;
}

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

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #FFA566;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.footer-links a:hover {
  color: #FFA566;
}

.company-info {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   12. ANIMATIONS & TRANSITIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
  opacity: 0;
}

.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
  opacity: 0;
}

/* Intersection Observer Stagger */
.fade-in:nth-child(1) { animation-delay: 0s; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }

/* ========================================
   13. IMAGES & MEDIA
   ======================================== */

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

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

picture {
  display: block;
}

/* ========================================
   14. UTILITY CLASSES
   ======================================== */

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

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

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

.text-muted {
  color: #6B6B6B;
}

.text-accent {
  color: #C76138;
}

.text-white {
  color: white;
}

.text-dark {
  color: #2C2D30;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 60px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 60px; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-1 { padding-left: 8px; padding-right: 8px; }
.px-2 { padding-left: 16px; padding-right: 16px; }
.px-3 { padding-left: 24px; padding-right: 24px; }
.px-4 { padding-left: 32px; padding-right: 32px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: 2px;
}

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

/* ========================================
   15. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    gap: 30px;
    margin: 0 40px;
  }

  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 80px 0;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    padding: 16px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid #F0F0ED;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: block;
    margin-left: 0;
    padding-top: 12px;
    border-top: 1px solid #F0F0ED;
  }

  .nav-cta .btn {
    width: 100%;
  }

  section {
    padding: 60px 0;
  }

  section.hero {
    padding: 80px 20px 60px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .row {
    margin: 0 -8px;
  }

  .col {
    padding: 0 8px;
  }

  .col-1, .col-2, .col-3, .col-4,
  .col-5, .col-6, .col-7, .col-8,
  .col-9, .col-10, .col-11, .col-12 {
    width: calc(50% - 16px);
  }

  .col-md-full {
    width: calc(100% - 16px);
  }

  .grid-cols-4,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #D0CFC9;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card {
    padding: 24px;
  }

  .card-image {
    margin: -24px -24px 16px -24px;
    height: 200px;
  }

  .feature-card {
    padding: 24px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-image {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-lg {
    padding: 0 16px;
  }

  nav {
    padding: 12px 0;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  section {
    padding: 50px 0;
  }

  section.hero {
    padding: 70px 16px 50px;
  }

  .card {
    padding: 20px;
  }

  .card-image {
    margin: -20px -20px 16px -20px;
    height: 180px;
  }

  .feature-card {
    padding: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .nav-links {
    padding: 16px;
  }

  input[type="text"],
  input[type="email"],
  input[type="phone"],
  textarea,
  select {
    padding: 10px 12px;
    font-size: 16px;
  }

  .stat-number {
    font-size: 24px;
  }
}

/* ========================================
   16. ACCESSIBILITY
   ======================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Visible Styles */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #C76138;
  outline-offset: 2px;
}

/* ========================================
   17. DEEP DIVES / BLOG TEASER SECTION
   ======================================== */

.deep-dives {
  padding: 6rem 0;
  background: #F8F8F7;
}

.deep-dives-intro {
  font-size: 1.125rem;
  color: #5A5A5A;
  max-width: 640px;
  margin-bottom: 3rem;
}

.brands-intro {
  font-size: 1.05rem;
  color: #5A5A5A;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.contact-lead {
  font-size: 1.05rem;
  color: #5A5A5A;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Blog listing page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: white;
  border: 1px solid #E8E8E6;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2C2D30;
  margin-bottom: 0.75rem;
}

.blog-card p {
  color: #5A5A5A;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-card .blog-meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.blog-card .solution-link {
  font-size: 0.95rem;
}

/* ========================================
   18. HOMEPAGE & PAGE-SPECIFIC SECTIONS
   ======================================== */

/* Navbar (shared across pages) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #F8F8F7;
  transition: all 0.3s ease;
  box-shadow: none;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-logo {
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2C2D30;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo-text:hover {
  color: #2C2D30;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  flex: 1;
  margin: 0 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #2C2D30;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #C76138;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C76138;
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Locations Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  cursor: default;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 160px;
  z-index: 100;
  list-style: none;
}

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

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #2C2D30;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu li a:hover {
  background-color: #F8F8F7;
  color: #C76138;
}

.navbar-contact {
  display: flex;
  align-items: center;
}

.phone {
  font-size: 14px;
  font-weight: 600;
  color: #2C2D30;
  margin-right: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: #2C2D30;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero section refinements */
.hero-title {
  margin-bottom: 1.25rem;
}

.highlight {
  color: #C76138;
}

.hero-subtitle {
  font-size: 18px;
  color: #6B6B6B;
  margin-bottom: 2rem;
  max-width: 680px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-trust {
  font-size: 13px;
  color: #6B6B6B;
  margin-top: 2rem;
}

/* Problem section */
.problem-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.problem-content {
  max-width: 720px;
}

.problem-content p {
  font-size: 16px;
  color: #5A5A5A;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Solutions section */
.solutions {
  padding: 100px 0;
  background-color: #F8F8F7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 2rem;
}

.solution-card {
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.solution-card .card-image {
  width: 100%;
  height: 240px;
  background-color: #F0F0ED;
  margin: 0;
  overflow: hidden;
}

.solution-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.solution-card:hover .card-image img {
  transform: scale(1.05);
}

.solution-card .card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.solution-card .card-content p {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.solution-link {
  color: #C76138;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: auto;
}

.solution-link:hover {
  color: #B5552E;
}

/* Why Premrest / How We Work */
.why-premrest {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-number {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #C76138;
  flex-shrink: 0;
  line-height: 1;
  min-width: 48px;
}

.benefit-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.7;
  margin: 0;
}

/* Brands section */
.brands {
  padding: 80px 0;
  background-color: #F8F8F7;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
}

.brand-item {
  background-color: #FFFFFF;
  padding: 20px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2C2D30;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.brand-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Compliance section */
.compliance {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.compliance-intro {
  font-size: 1.05rem;
  color: #5A5A5A;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.compliance-item {
  background-color: #F8F8F7;
  padding: 32px;
  border-radius: 2px;
}

.compliance-item h3 {
  font-size: 18px;
  color: #C76138;
  margin-bottom: 12px;
}

.compliance-item p {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.7;
  margin: 0;
}

.compliance-link {
  font-weight: 600;
}

/* Contact section */
.contact-section {
  padding: 100px 0;
  background-color: #F8F8F7;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-area h2 {
  margin-bottom: 1rem;
}

.contact-form {
  background-color: white;
}

.contact-info {
  padding: 32px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail strong {
  font-size: 14px;
  font-weight: 600;
  color: #2C2D30;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail p {
  margin: 8px 0 0 0;
  font-size: 15px;
}

.contact-detail a {
  color: #C76138;
}

.contact-detail a:hover {
  color: #B5552E;
}

.contact-note {
  padding-top: 20px;
  border-top: 1px solid #E5E5E0;
  margin-top: 20px;
}

.contact-note p {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.6;
  margin: 0;
}

.form-note {
  font-size: 13px;
  color: #6B6B6B;
  margin-top: 12px;
}

.form-thankyou {
  text-align: center;
  padding: 60px 32px;
  background-color: white;
}

.form-thankyou h2 {
  color: #2C2D30;
  margin-bottom: 16px;
  font-size: 28px;
}

.form-thankyou p {
  color: #6B6B6B;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.form-thankyou .thankyou-phone {
  margin-top: 24px;
  font-size: 15px;
}

.form-thankyou .thankyou-phone a {
  color: #C76138;
  font-weight: 600;
}

.form-thankyou .thankyou-phone a:hover {
  color: #B5552E;
}

/* Footer shared styles */
.footer {
  background-color: #2C2D30;
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.footer-column p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-division {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-services h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 16px;
}

.services-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.services-links a:hover {
  color: #FFA566;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #FFA566;
}

/* ========================================
   19. PAGE-SPECIFIC RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    order: 3;
    width: 100%;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid #F0F0ED;
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: unset;
    display: none;
    background-color: #F8F8F7;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu li a {
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid #F0F0ED;
    font-size: 13px;
  }

  .navbar-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .navbar-logo {
    order: 1;
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .navbar-container > .btn {
    display: none;
  }

  .navbar-contact {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card .card-image {
    height: 200px;
  }

  .brands-list {
    gap: 12px;
  }

  .brand-item {
    padding: 14px 24px;
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px;
  }

  .services-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 12px 16px;
    gap: 12px;
  }

  .logo-text {
    font-size: 20px;
  }

  .solution-card .card-content {
    padding: 24px;
  }

  .solution-card .card-image {
    height: 180px;
  }

  .contact-info {
    padding: 24px;
  }

  .compliance-item {
    padding: 24px;
  }
}

/* ========================================
   20. CONTACT PAGE STYLES
   ======================================== */

.page-contact .contact-info {
  background-color: #FFF0E8;
  padding: 40px;
  border-radius: 0;
  box-shadow: none;
}

.page-contact .contact-form {
  max-width: none;
}

.what-happens-next {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(199, 97, 56, 0.2);
}

.what-happens-next h4 {
  margin-bottom: 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #C76138;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.step-content h5 {
  margin: 0 0 4px 0;
  font-size: 14px;
}

.step-content p {
  margin: 0;
  font-size: 13px;
  color: #6B6B6B;
}

.page-contact .contact-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(199, 97, 56, 0.08);
  border-left: 3px solid #C76138;
  border-top: none;
}

.faq-section {
  background-color: #F8F8F7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.faq-item h3 {
  margin-bottom: 1rem;
  font-size: 18px;
}

.faq-item p {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.7;
}

/* ========================================
   21. VINYL FLOORING PAGE STYLES
   ======================================== */

.vinyl-gradient {
  background: linear-gradient(135deg, #FFD6B3 0%, #FFC49F 100%);
}

.page-vinyl .benefit-number {
  font-size: 48px;
  font-weight: 700;
  color: #C76138;
  margin-bottom: 12px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.page-vinyl .brand-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.page-vinyl .brand-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.page-vinyl .brand-card h3 {
  color: #C76138;
  margin-bottom: 16px;
  font-size: 24px;
}

.page-vinyl .brand-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #2C2D30;
}

.page-vinyl .applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.application-card {
  background-color: #FFF0E8;
  padding: 36px;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.application-card:hover {
  background-color: #FFE5D9;
}

.application-card h4 {
  color: #2C2D30;
  margin-bottom: 12px;
  font-size: 18px;
}

.application-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #2C2D30;
  margin: 0;
}

.installation-section {
  background-color: #FFFFFF;
  padding: 48px;
  border-left: 4px solid #C76138;
  margin-top: 32px;
}

.installation-section h3 {
  margin-bottom: 20px;
}

.installation-section ul {
  list-style: none;
  padding: 0;
}

.installation-section li {
  padding-left: 24px;
  margin-bottom: 16px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}

.installation-section li:before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: #C76138;
  font-size: 18px;
}

.spec-list {
  background-color: #F8F8F7;
  padding: 24px 32px;
  border-radius: 2px;
  margin-top: 24px;
}

.spec-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.spec-list li:last-child {
  margin-bottom: 0;
}

.spec-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #C76138;
  font-weight: bold;
}

.brand-card-image {
  margin: 20px 0;
  border-radius: 2px;
  overflow: hidden;
}

.brand-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.brand-card-image-caption {
  font-size: 13px;
  color: #6B6B6B;
  margin-top: 8px;
  line-height: 1.5;
}

.brand-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.brand-image-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #E5E5E0;
}

.vinyl-gallery {
  padding: 80px 0;
  background-color: #F8F8F7;
}

.vinyl-gallery h2 {
  margin-bottom: 16px;
}

.page-vinyl .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.page-vinyl .gallery-item {
  border-radius: 2px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-vinyl .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item-caption {
  padding: 16px 20px;
  font-size: 14px;
  color: #2C2D30;
  line-height: 1.5;
}

.gallery-item-caption strong {
  display: block;
  margin-bottom: 4px;
  color: #C76138;
}

/* ========================================
   22. CARPET TILES PAGE STYLES
   ======================================== */

.installation-gallery {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.gallery-intro {
  font-size: 1.05rem;
  color: #5A5A5A;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.page-carpet-tiles .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.page-carpet-tiles .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background-color: #F0F0ED;
}

.gallery-item-large {
  grid-row: 1 / 3;
}

.page-carpet-tiles .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.page-carpet-tiles .gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-caption strong {
  font-size: 15px;
  font-weight: 600;
}

.gallery-caption span {
  font-size: 13px;
  opacity: 0.85;
}

.product-range {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F8F7;
  border-radius: 2px;
}

.range-images {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.range-images img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid #E5E5E0;
}

.range-description {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.6;
}

.range-description strong {
  color: #2C2D30;
}

.range-scene {
  margin: 24px 0;
  border-radius: 2px;
  overflow: hidden;
}

.range-scene img {
  width: 100%;
  height: auto;
  display: block;
}

.range-scene-caption {
  font-size: 13px;
  color: #6B6B6B;
  margin-top: 8px;
  line-height: 1.5;
}

.application-image {
  margin-bottom: 16px;
  border-radius: 2px;
  overflow: hidden;
}

.application-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.application-item:hover .application-image img {
  transform: scale(1.03);
}

.benefit-card {
  background-color: #FFFFFF;
  padding: 32px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.benefit-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: #2C2D30;
}

.benefit-card p {
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.7;
  margin: 0;
}

.page-carpet-tiles .benefits-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.page-carpet-tiles .brand-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-carpet-tiles .brand-card h3 {
  color: #2C2D30;
  font-size: 28px;
  margin-bottom: 8px;
}

.brand-subtitle {
  color: #C76138;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-carpet-tiles .brand-card p {
  font-size: 15px;
  color: #6B6B6B;
  margin-bottom: 16px;
}

.page-carpet-tiles .brand-card h4 {
  font-size: 16px;
  color: #2C2D30;
  margin-top: 20px;
  margin-bottom: 12px;
}

.brand-features {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.brand-features li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #6B6B6B;
  line-height: 1.6;
}

.brand-features strong {
  color: #2C2D30;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 2rem;
}

.application-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.application-item h3 {
  color: #2C2D30;
  margin-bottom: 12px;
}

.application-item p {
  font-size: 15px;
  color: #6B6B6B;
  margin: 0;
  line-height: 1.7;
}

.page-carpet-tiles .applications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.specs-table th {
  background-color: #2C2D30;
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.specs-table td {
  padding: 16px;
  border-bottom: 1px solid #E5E5E0;
  font-size: 14px;
  color: #2C2D30;
}

.specs-table tbody tr:hover {
  background-color: #F8F8F7;
}

.specs-table th:first-child,
.specs-table td:first-child {
  width: 25%;
}

.specs-intro {
  font-size: 15px;
  color: #6B6B6B;
  margin-bottom: 2rem;
}

.crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 2rem;
}

.crosslink-card {
  background-color: #FFF0E8;
  padding: 32px;
  border-radius: 2px;
}

.crosslink-card h3 {
  color: #2C2D30;
  margin-bottom: 12px;
}

.crosslink-card p {
  font-size: 15px;
  color: #6B6B6B;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ========================================
   23. PRIVACY POLICY PAGE STYLES
   ======================================== */

.privacy-hero {
  padding: 100px 0 60px;
}

.privacy-content {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.privacy-content .container {
  max-width: 800px;
}

.privacy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 8px;
}

/* ========================================
   24. LOCATION PAGE STYLES
   ======================================== */

.melbourne-base-section,
.location-base-section {
  background-color: #FFF0E8;
}

.base-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.base-text p {
  margin-bottom: 1.5rem;
}

.base-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-box {
  background-color: white;
  padding: 24px;
  border-radius: 0;
  border-left: 3px solid #C76138;
}

.feature-icon {
  font-size: 24px;
  font-weight: 700;
  color: #C76138;
  margin-bottom: 12px;
}

.feature-box h4 {
  margin-bottom: 8px;
  font-size: 15px;
}

.feature-box p {
  margin: 0;
  font-size: 13px;
  color: #6B6B6B;
  line-height: 1.6;
}

.section-intro {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-areas-section {
  background-color: #FFFFFF;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  background-color: white;
  padding: 32px;
  border-radius: 0;
  border-top: 4px solid #C76138;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.area-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.area-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.area-card p {
  margin: 0;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.6;
}

.sector-section {
  background-color: #F8F8F7;
}

.sector-content p {
  margin-bottom: 1.5rem;
}

.melbourne-services-section,
.location-services-section {
  background-color: white;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-item {
  padding: 32px;
  background-color: #F8F8F7;
  border-radius: 0;
  border-left: 3px solid #C76138;
}

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

.service-item p {
  margin-bottom: 1.5rem;
  font-size: 14px;
  color: #6B6B6B;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: #C76138;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.service-link:hover {
  color: #B5552E;
}

.related-section {
  background-color: #FFF0E8;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.related-link {
  display: block;
  padding: 24px;
  background-color: white;
  border-radius: 0;
  border-left: 4px solid #C76138;
  color: #C76138;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.related-link:hover {
  color: #B5552E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-section {
  background-color: #2C2D30;
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.cta-subtext {
  margin-top: 1.5rem;
}

.cta-subtext a {
  color: #FFA566;
  font-weight: 600;
}

.cta-subtext a:hover {
  color: #FFB580;
}

/* ========================================
   25. PAGE-SPECIFIC RESPONSIVE OVERRIDES
   ======================================== */

@media (max-width: 1024px) {
  .page-carpet-tiles .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .crosslinks-grid {
    grid-template-columns: 1fr;
  }

  .page-carpet-tiles .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .page-contact .contact-info {
    padding: 32px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-image-grid {
    grid-template-columns: 1fr;
  }

  .brand-card-image img {
    height: 180px;
  }

  .page-vinyl .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-vinyl .brand-grid,
  .page-vinyl .applications-grid {
    grid-template-columns: 1fr;
  }

  .installation-section {
    padding: 32px;
  }

  .page-carpet-tiles .benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-carpet-tiles .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-carpet-tiles .applications-grid {
    grid-template-columns: 1fr;
  }

  .range-images img {
    width: 100px;
    height: 100px;
  }

  .application-image img {
    height: 180px;
  }

  .specs-table {
    font-size: 13px;
  }

  .specs-table td,
  .specs-table th {
    padding: 12px;
  }

  .base-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .base-features {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .related-links {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   26. PRINT STYLES
   ======================================== */

@media print {
  header,
  footer {
    display: none;
  }

  body {
    background-color: white;
  }

  a {
    text-decoration: underline;
  }

  .btn {
    border: 1px solid #2C2D30;
  }
}

/* ========================================
   END OF STYLESHEET
   ======================================== */
