/*
Theme Name: South Coast Auto Electrics
Theme URI: https://southcoastautoelectrics.com.au
Author: South Coast Auto Electrics
Author URI: https://southcoastautoelectrics.com.au
Description: Custom WordPress theme for South Coast Auto Electrics — Mandurah & Peel Region's trusted auto electrical & AC experts. Features a full service catalogue, product showcase, customer reviews, and enquiry form with email notifications.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: south-coast-auto-electrics
Tags: automotive, business, custom-theme, responsive, custom-colors, custom-menu, featured-images, translation-ready
*/

/* ========================================================================
   Table of Contents
   1.  Reset & Base
   2.  Typography
   3.  Layout & Containers
   4.  Top Bar
   5.  Header & Navigation
   6.  Mobile Menu
   7.  Hero & Banners
   8.  Home Page Sections
   9.  Services Hexagon Cards
   10. Service Detail Page
   11. Products Page
   12. Reviews Page
   13. About Page
   14. Contact Form
   15. Footer
   16. Utilities & Animations
   17. Responsive Breakpoints
   ======================================================================== */

/* 1. Reset & Base
   ------------------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* 2. Typography
   ------------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 1.875rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p { line-height: 1.6; }

.text-red-600 { color: #dc2626; }
.text-white { color: #fff; }
.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.text-gray-200 { color: #e5e7eb; }
.text-yellow-400 { color: #facc15; }
.text-red-500 { color: #ef4444; }
.text-red-400 { color: #f87171; }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-wide { letter-spacing: 0.025em; }

.border-red-500 { border-color: #ef4444; }
.border-red-600 { border-color: #dc2626; }
.border-red-700 { border-color: #b91c1c; }

.heading-underline {
  display: inline-block;
  border-bottom: 4px solid #ef4444;
  padding-bottom: 0.5rem;
}

/* 3. Layout & Containers
   ------------------------------------------------------------------------ */
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-12 { margin-top: 3rem; }
.mt-8 { margin-top: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-2 { margin-top: 0.5rem; }
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-5xl { font-size: 3rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-items-center { justify-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.inline-block { display: inline-block; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.z-50 { z-index: 50; }
.z-10 { z-index: 10; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Backgrounds */
.bg-white { background: #fff; }
.bg-black { background: #000; }
.bg-gray-50 { background: #f9fafb; }
.bg-gray-900 { background: #111827; }
.bg-gray-950 { background: #030712; }
.bg-red-600 { background: #dc2626; }
.bg-red-700 { background: #b91c1c; }
.bg-transparent { background: transparent; }

/* 4. Top Bar
   ------------------------------------------------------------------------ */
.top-bar {
  background: #000;
  color: #dc2626;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
}

.top-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: right;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-item {
  display: flex;
  align-items: right;
  gap: 0.5rem;
}

.top-bar-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: #dc2626;
  flex-shrink: 0;
}

.top-bar-sep {
  color: #dc2626;
  margin: 0 0.25rem;
}

/* 5. Header & Navigation
   ------------------------------------------------------------------------ */
.site-header {
  background: #000;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo img {
  height: 3.5rem;
  width: auto;
}

.header-logo:hover {
  opacity: 0.9;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #dc2626;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-call {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: #dc2626;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.btn-call:hover {
  background: #b91c1c;
}

.btn-quote {
  background: #dc2626;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-quote:hover {
  background: #b91c1c;
}

/* 6. Mobile Menu
   ------------------------------------------------------------------------ */
.mobile-menu-toggle {
  display: block;
  color: #fff;
  padding: 0.5rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle:hover {
  color: #dc2626;
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav {
  display: none;
  background: #000;
  border-top: 1px solid #27272a;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  text-align: left;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 0.75rem;
  transition: color 0.2s;
  border-bottom: 1px solid #27272a;
}

.mobile-nav a:hover {
  color: #dc2626;
}

.mobile-nav-buttons {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.mobile-nav-buttons a {
  flex: 1;
  text-align: center;
  background: #dc2626;
  color: #fff;
  padding: 0.625rem 1rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-bottom: none;
  transition: background 0.2s;
}

.mobile-nav-buttons a:hover {
  background: #b91c1c;
}

/* 7. Hero & Banners
   ------------------------------------------------------------------------ */
.hero-banner,
.full-width-banner {
  width: 100%;
  overflow: hidden;
}

.hero-banner img,
.full-width-banner img {
  width: 100%;
  aspect-ratio: 1920 / 700;
  object-fit: cover;
  display: block;
}

/* 8. Home Page Sections
   ------------------------------------------------------------------------ */
.home-intro {
  background: #fff;
  padding: 2.5rem 0;
}

.home-intro-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
  align-items: center;
}

.home-intro-text h2 {
  font-weight: 700;
  color: #dc2626;
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.home-intro-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
}

.home-intro-image {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

.home-footer-banner {
  background: #111827;
  padding: 2rem 0;
}

.home-footer-banner-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.home-footer-banner img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.customer-love {
  background: #fff;
  padding: 2.5rem 0;
}

.customer-love-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.customer-love a {
  display: block;
  cursor: pointer;
}

.customer-love img {
  width: 100%;
  max-width: 42rem;
  transition: opacity 0.2s;
}

.customer-love a:hover img {
  opacity: 0.9;
}

/* 9. Services Hexagon Cards
   ------------------------------------------------------------------------ */
.services-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.services-section-bg {
  position: absolute;
  inset: 0;
  background: #030712;
}

.services-section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.services-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3,7,18,0.8), rgba(3,7,18,0.6), rgba(3,7,18,0.9));
}

.services-section-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-grid-desktop {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 1.25rem;
}

.services-grid-desktop-row-2 {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.services-grid-mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.service-hexagon {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 9rem;
  width: 13rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #030712;
  padding: 3px;
  transition: transform 0.3s, background 0.3s;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  border: none;
  cursor: pointer;
}

.service-hexagon:hover {
  transform: translateY(-0.5rem) scale(1.03);
  background: #dc2626;
}

.service-hexagon-inner {
  position: absolute;
  inset: 3px;
  overflow: hidden;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.service-hexagon-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-hexagon:hover .service-hexagon-inner img {
  transform: scale(1.1);
}

.service-hexagon-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.35), rgba(0,0,0,0.9));
}

.service-hexagon-overlay-2 {
  position: absolute;
  inset: 0;
  background: rgba(185,28,28,0.1);
  transition: background 0.3s;
}

.service-hexagon:hover .service-hexagon-overlay-2 {
  background: rgba(185,28,28,0.25);
}

.service-hexagon-content {
  position: relative;
  z-index: 10;
  padding: 0 2rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0,0,0,0.9);
}

.service-hexagon-content h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

/* Large hexagon cards (services page) */
.service-hexagon-large {
  height: 18rem;
  width: 16rem;
}

.service-hexagon-large .service-hexagon-content h3 {
  font-size: 1.5rem;
}

.service-hexagon-large .service-hexagon-content p {
  font-size: 0.875rem;
  color: #e5e7eb;
  margin-top: 0.5rem;
}

.service-hexagon-explore {
  position: relative;
  z-index: 10;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #ef4444;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-hexagon-large:hover .service-hexagon-explore {
  opacity: 1;
}

/* 10. Service Detail Page
   ------------------------------------------------------------------------ */
.back-link {
  position: sticky;
  top: 5rem;
  z-index: 10;
  margin-left: 1rem;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #dc2626;
  font-weight: 700;
  transition: color 0.2s;
}

.back-link:hover {
  color: #b91c1c;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-detail-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.service-detail-content h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.service-detail-content .service-desc {
  font-size: 1.25rem;
  color: #dc2626;
  margin-bottom: 2rem;
}

.service-detail-features-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-feature-item span {
  color: #374151;
}

.btn-book-service {
  background: #dc2626;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: background 0.2s;
  display: inline-block;
}

.btn-book-service:hover {
  background: #b91c1c;
}

/* Products section within service detail */
.service-products-section {
  margin-bottom: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.service-products-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  display: inline-block;
  border-bottom: 4px solid #ef4444;
  padding-bottom: 0.5rem;
}

.service-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card-dark {
  background: #000;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #27272a;
  transition: box-shadow 0.2s;
}

.product-card-dark:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.product-card-dark img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-card-dark h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.product-card-dark p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.product-feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #dc2626;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 11. Products Page
   ------------------------------------------------------------------------ */
.products-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card-full {
  background: #000;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid #27272a;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card-full:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.product-card-full img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.product-card-full-body {
  padding: 1.5rem;
}

.product-card-full-service {
  font-size: 0.875rem;
  color: #dc2626;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card-full h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.product-card-full p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.btn-get-quote {
  width: 100%;
  background: #dc2626;
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: background 0.2s;
  text-align: center;
  display: block;
}

.btn-get-quote:hover {
  background: #b91c1c;
}

/* 12. Reviews Page
   ------------------------------------------------------------------------ */
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.reviews-rating .star {
  width: 2rem;
  height: 2rem;
  color: #facc15;
}

.reviews-rating .rating-num {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.review-card .review-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars .star {
  width: 1.25rem;
  height: 1.25rem;
  color: #facc15;
}

.review-card p {
  color: #374151;
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background: #000;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid #27272a;
  margin-top: 4rem;
}

.cta-banner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.cta-banner .btn-cta {
  background: #dc2626;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  transition: background 0.2s;
  display: inline-block;
}

.cta-banner .btn-cta:hover {
  background: #b91c1c;
}

/* 13. About Page
   ------------------------------------------------------------------------ */
.about-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-flyer img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.about-badge-dark {
  background: #111827;
  color: #fff;
}

.about-badge-red {
  background: #dc2626;
  color: #fff;
}

.about-reasons {
  margin-top: 1.5rem;
}

.about-reason {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-reason-icon {
  background: #dc2626;
  padding: 0.625rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.about-reason-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.about-reason h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.about-reason p {
  color: #4b5563;
  line-height: 1.6;
}

.about-info-box {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.about-photo-grid img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* 14. Contact Form
   ------------------------------------------------------------------------ */
.contact-form-wrapper {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 2rem;
}

.contact-form-success {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
}

.contact-form-success p {
  color: #166534;
  font-weight: 600;
}

.contact-form-error {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
}

.contact-form-error p {
  color: #991b1b;
  font-weight: 600;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #dc2626;
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

.form-file-upload {
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.form-file-upload:hover {
  border-color: #dc2626;
}

.form-file-upload label {
  cursor: pointer;
  display: block;
}

.form-file-upload-icon {
  width: 2rem;
  height: 2rem;
  color: #9ca3af;
  margin: 0 auto 0.5rem;
}

.btn-submit {
  width: 100%;
  background: #dc2626;
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background: #b91c1c;
}

.btn-submit:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.contact-info-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.contact-info-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-info-section p {
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.contact-info-section strong {
  color: #111827;
}

/* 15. Footer
   ------------------------------------------------------------------------ */
.site-footer {
  background: #000;
  color: #fff;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-col h3,
.footer-col h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col h3 {
  font-size: 1.25rem;
}

.footer-col p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  background: #dc2626;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: #b91c1c;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: #dc2626;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #dc2626;
}

.footer-bottom {
  border-top: 1px solid #27272a;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* 16. Utilities & Animations
   ------------------------------------------------------------------------ */
.transition {
  transition-property: all;
  transition-duration: 0.2s;
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Services page background */
.services-page-bg {
  background: #030712;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-page-overlay {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  background: rgba(0,0,0,0.35);
}

/* 17. Responsive Breakpoints
   ------------------------------------------------------------------------ */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .md\:flex {
    display: flex;
  }

  .main-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .btn-call {
    display: flex;
  }

  .home-intro-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
  }

  .about-main-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid-mobile {
    display: none;
  }

  .services-grid-desktop,
  .services-grid-desktop-row-2 {
    display: grid;
  }

  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

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

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

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

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

  .mobile-nav {
    display: none !important;
  }
}


/* Editable Services page responsive grid ---------------------------------- */
.scae-services-large-grid {
  grid-template-columns: 1fr !important;
}
@media (min-width: 640px) {
  .scae-services-large-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 1024px) {
  .scae-services-large-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Contact Form 7 integration ------------------------------------------------ */
.contact-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-wrapper .wpcf7-form .form-group {
  margin-bottom: 0;
}
.contact-form-wrapper .wpcf7-form-control-wrap {
  display: block;
}
.contact-form-wrapper .wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  color: #991b1b;
  font-size: 0.875rem;
}
.contact-form-wrapper .wpcf7 form .wpcf7-response-output {
  margin: 0 0 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}
.contact-form-wrapper .wpcf7 form.sent .wpcf7-response-output {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.contact-form-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.contact-form-wrapper .wpcf7 form.failed .wpcf7-response-output,
.contact-form-wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form-wrapper .wpcf7 form.spam .wpcf7-response-output {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.contact-form-wrapper .scae-upload-input {
  display: none !important;
}
.scae-file-upload-trigger {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  cursor: pointer;
  color: #4b5563;
  font: inherit;
  font-size: 0.875rem;
  text-align: center;
}
.scae-file-upload-trigger .form-file-upload-icon {
  display: block;
}
.scae-file-names {
  margin-top: 0.75rem;
  color: #4b5563;
  font-size: 0.8rem;
  line-height: 1.5;
}
.form-file-upload.scae-dragover {
  border-color: #dc2626;
}
