/* ============================================
   SUPERFINISH - Main Stylesheet
   Rebuilt from WordPress (AutoZone theme)
   ============================================ */

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

:root {
  --primary: #8DC540;
  --primary-dark: #7AB535;
  --text-on-primary: #111111;
  --dark-bg: #1a1a1a;
  --darker-bg: #111111;
  --card-bg: #222222;
  --text-white: #ffffff;
  --text-light: #cccccc;
  --text-muted: #999999;
  --border-color: #333333;
  --overlay: rgba(0,0,0,0.7);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1170px;
  --header-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: #e74c3c; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--darker-bg);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar a {
  color: var(--text-muted);
  margin-left: 15px;
}

.top-bar a:hover { color: var(--text-white); }

.top-bar .phone-number {
  color: var(--text-white);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 1px;
}

/* --- Header / Nav --- */
.site-header {
  background: var(--darker-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo img {
  height: 50px;
  width: auto;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; }

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 0;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 28px 14px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s, background 0.3s;
  white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--primary);
}

/* Dropdown */
.main-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--darker-bg);
  min-width: 220px;
  list-style: none;
  border-top: 2px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.main-nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav ul li ul li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-light);
  font-size: 13px;
  font-family: var(--font-body);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s;
}

.main-nav ul li ul li a:hover {
  background: var(--primary);
  color: var(--text-on-primary);
  padding-left: 25px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Slider / Banner --- */
.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--primary);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 5;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.hero-tagline {
  font-size: 16px;
  color: var(--text-light);
  letter-spacing: 2px;
}

/* Page Banner (sub-pages) */
.page-banner {
  background: var(--darker-bg);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.75);
  z-index: 0;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

/* --- Icon Boxes (Homepage) --- */
.icon-strip {
  background: var(--primary);
  padding: 8px 0 10px;
  position: relative;
  z-index: 1;
}

.icon-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.icon-item svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 4px;
}

.icon-item span {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-on-primary);
  letter-spacing: 2px;
}

/* --- Section Styles --- */
.section {
  padding: 70px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.section-title h2 span {
  font-weight: 700;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto;
}

/* --- Welcome Section --- */
.welcome-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}

.welcome-text p {
  margin-bottom: 20px;
}

/* Location box */
.location-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  text-align: center;
  margin: 40px auto;
  max-width: 500px;
  border-radius: 4px;
}

.location-box h3 {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 5px;
  letter-spacing: 3px;
}

.location-box h4 {
  font-size: 20px;
}

/* --- Feature Image Band --- */
.feature-band {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.feature-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.feature-band-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 30px;
}

.feature-band-content h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-align: center;
}

.feature-band-content h2 span {
  color: var(--primary);
  font-weight: 700;
}

.feature-band-content p {
  font-size: 15px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}

.feature-band-content .btn {
  border-width: 2px;
}

@media (max-width: 768px) {
  .feature-band {
    height: 280px;
    background-attachment: scroll;
  }
  .feature-band-content h2 { font-size: 28px; }
}

/* --- Video Showreel --- */
.video-showreel {
  background: var(--darker-bg);
  overflow: hidden;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  max-width: 700px;
  width: 90%;
  padding: 10px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  background: #000;
  width: 100%;
  padding-top: 56.25%;
}

.video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-accent-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary);
  pointer-events: none;
}

.video-accent-corner.tl {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
  border-radius: 4px 0 0 0;
}

.video-accent-corner.br {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 4px 0;
}

@media (max-width: 768px) {
  .video-accent-corner { width: 40px; height: 40px; }
}

/* --- Testimonials Carousel --- */
.testimonials-section {
  background: var(--darker-bg);
  overflow: hidden;
}

.testimonials-track-wrapper {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

.testimonials-track {
  display: flex;
  gap: 25px;
  animation: scroll-testimonials 60s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: var(--primary);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
}

.testimonial-author strong {
  color: var(--text-white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-author span {
  display: block;
  color: var(--primary);
  font-size: 11px;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .testimonial-card { width: 280px; padding: 25px; }
  .testimonials-track { animation-duration: 45s; }
}

/* --- Contact Cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

a.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: var(--primary);
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card-icon.whatsapp-icon {
  color: #25D366;
}

.contact-card h3 {
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.contact-card p {
  font-size: 13px;
  color: var(--text-muted);
  word-break: break-word;
}

a.contact-card:hover p {
  color: var(--text-light);
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px 25px 35px;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card .card-icon {
  margin-bottom: 25px;
}

.service-card .card-icon svg {
  width: 70px;
  height: 70px;
}

.service-card .card-divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 20px 0 15px;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-card h3 span {
  color: var(--primary);
  font-weight: 700;
  display: block;
  font-size: 20px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card a:hover { color: #e74c3c; }

/* --- Stats / Counters --- */
.stats-section {
  background: var(--primary);
  padding: 50px 0;
}

.stats-section h2 {
  color: var(--text-on-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-on-primary);
}

.stat-item p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(0,0,0,0.6);
}

/* --- Contact Form Section --- */
.contact-section {
  padding: 70px 0;
}

.contact-section .section-title h2 {
  margin-bottom: 5px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s;
  border-radius: 2px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

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

/* GDPR Consent */
.consent-group {
  margin: 20px 0;
}

.consent-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  line-height: 1.5;
}

.consent-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.consent-group a {
  color: var(--primary);
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary);
  color: var(--text-on-primary);
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}

.btn-outline:hover {
  background: var(--text-white);
  color: var(--dark-bg);
}

.form-success {
  display: none;
  background: #27ae60;
  color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  margin-top: 15px;
  text-align: center;
}

.form-error {
  display: none;
  background: #d9534f;
  color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  margin-top: 15px;
  text-align: center;
}

/* --- Page Content (Service Pages) --- */
.page-content {
  padding: 60px 0;
}

.page-content h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.page-content h2 {
  font-size: 24px;
  margin: 30px 0 15px;
}

.page-content h3 {
  font-size: 18px;
  margin: 20px 0 10px;
}

.page-content p {
  margin-bottom: 15px;
}

.page-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.page-content ul li {
  padding: 5px 0 5px 20px;
  position: relative;
}

.page-content ul li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.page-content .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.enquire-cta {
  background: var(--card-bg);
  border-left: 4px solid var(--primary);
  padding: 20px 25px;
  margin: 30px 0;
  font-size: 16px;
}

.enquire-cta a {
  color: var(--primary);
  font-weight: 600;
}

/* Image gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  opacity: 0.85;
}

/* Two-column content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* --- Footer (see new styles below) --- */

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-copy a { color: var(--text-muted); }
.footer-copy a:hover { color: var(--primary); }

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

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover { color: var(--text-white); }

/* --- Sticky CTA (Book Now + Call) --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 998;
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.3s, color 0.3s;
}

.sticky-cta a:first-child {
  background: var(--primary);
  color: var(--text-on-primary);
}

.sticky-cta a:first-child:hover {
  background: var(--primary-dark);
  color: var(--text-on-primary);
}

.sticky-cta a:last-child {
  background: #111111;
  color: #ffffff;
}

.sticky-cta a:last-child:hover {
  background: #222222;
  color: #ffffff;
}

/* --- Cookie Consent Banner (UK GDPR) --- */
.cookie-banner {
  position: fixed;
  bottom: 50px;
  left: 0;
  right: 0;
  background: var(--darker-bg);
  border-top: 2px solid var(--primary);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 13px;
  color: var(--text-light);
  min-width: 200px;
}

.cookie-inner p a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: all 0.3s;
}

.cookie-accept {
  background: var(--primary);
  color: var(--text-on-primary);
}

.cookie-accept:hover { background: var(--primary-dark); }

.cookie-reject {
  background: var(--border-color);
  color: var(--text-light);
}

.cookie-reject:hover { background: #444; }

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 42px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .main-nav > ul > li > a { padding: 28px 10px; font-size: 12px; }
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--darker-bg);
    flex-direction: column;
    padding-top: 70px;
    transition: right 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }

  .main-nav.open { right: 0; }

  .main-nav > ul {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .main-nav > ul > li {
    display: block;
    width: 100%;
  }

  .main-nav > ul > li > a {
    display: block;
    padding: 16px 25px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(141,197,64,0.2);
    touch-action: manipulation;
    user-select: none;
  }

  /* Arrow indicator for items with submenus */
  .main-nav > ul > li > a[href="#"]::after {
    content: '+';
    float: right;
    font-size: 18px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
  }

  .main-nav ul li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    box-shadow: none;
    display: none;
    background: rgba(0,0,0,0.2);
    min-height: 0;
  }

  .main-nav ul li ul.open { display: block; }

  .main-nav ul li ul li {
    display: block;
    width: 100%;
  }

  .main-nav ul li ul li a {
    display: block;
    padding: 14px 25px 14px 40px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-light);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(141,197,64,0.2);
    touch-action: manipulation;
    user-select: none;
  }

  .main-nav ul li ul li a:hover,
  .main-nav ul li ul li a:active {
    background: var(--primary);
    color: var(--text-on-primary);
    padding-left: 45px;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
  }

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

  .hero { height: 400px; background-attachment: scroll; }
  .hero::after { height: 25px; }
  .hero h1 { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .icon-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat-item h3 { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .icon-strip .container { grid-template-columns: 1fr 1fr; gap: 15px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; text-align: center; }
}

/* === DIAGONAL GREEN CORNER ACCENTS === */
.hero .corner-accent-left,
.hero .corner-accent-right {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 4;
}

.hero .corner-accent-left {
  top: 0;
  left: 0;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hero .corner-accent-right {
  top: 0;
  right: 0;
  background: var(--primary);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* === ANGULAR SECTION DIVIDERS === */
.angle-top {
  position: relative;
}

.angle-top::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.angle-bottom::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 65px;
  background: var(--darker-bg);
  color: var(--text-white);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* === FOOTER ANGULAR REDESIGN === */
.site-footer {
  background: var(--darker-bg);
  position: relative;
  padding: 60px 0 30px;
  text-align: center;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--darker-bg);
  clip-path: polygon(48% 0, 50% 50%, 52% 0, 100% 100%, 0 100%);
}

.footer-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 50px;
  margin: 0 auto 25px;
}

/* === SECTION BACKGROUND IMAGES === */
.bg-section {
  position: relative;
  overflow: hidden;
}

.bg-section .bg-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.06;
  z-index: 0;
}

.bg-section > .container {
  position: relative;
  z-index: 1;
}

/* === BACK TO TOP - Diamond style === */
.back-to-top {
  position: fixed;
  bottom: 135px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--darker-bg);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  transform: rotate(45deg);
  border-radius: 4px;
}

.back-to-top span {
  transform: rotate(-45deg);
  display: block;
  font-size: 11px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--text-on-primary);
}

@media (max-width: 768px) {
  .hero .corner-accent-left,
  .hero .corner-accent-right { width: 70px; height: 70px; }
  .whatsapp-float { bottom: 65px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float .whatsapp-tooltip { display: none; }
  .back-to-top { bottom: 130px; right: 15px; width: 38px; height: 38px; }
  .site-footer::before { height: 30px; top: -30px; }
}
