﻿/*
Theme Name: MotoTransit
Theme URI: https://www.mototransit.ca/
Author: MotoTransit
Author URI: https://www.mototransit.ca/
Description: High-performance, responsive WordPress theme engineered for motorcycle transport, underground garage recovery, roadside breakdown towing, vehicle safety inspection, and custom motorcycle repair services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mototransit
Tags: motorcycle, transport, towing, automotive, services, dark-theme, responsive-layout, custom-menu, custom-logo, translation-ready
*/

/* Import Outfit and Inter fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

/* CSS Variables for design system */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --color-bg-deep: #0a0b0d;
  --color-bg-card: #14161d;
  --color-bg-nav: rgba(10, 11, 13, 0.85);
  
  --color-accent-red: #e50914;
  --color-accent-red-hover: #b80710;
  --color-accent-yellow: #ffb700;
  --color-accent-yellow-hover: #e0a100;
  
  --color-text-main: #ffffff;
  --color-text-muted: #9fa6b2;
  --color-text-dim: #64748b;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --max-width-content: 1200px;
}

/* Reset and base styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient-red {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-yellow {
  background: linear-gradient(135deg, var(--color-accent-yellow), #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.25);
  color: var(--color-accent-red);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color var(--transition-normal), padding var(--transition-normal);
  padding: 16px 0;
}

header.scrolled {
  padding: 12px 0;
  background-color: rgba(10, 11, 13, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-red);
  transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-main);
}

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

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--color-accent-red), #ff4b2b);
  color: var(--color-text-main);
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
  color: var(--color-text-main);
}

.phone-btn i {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(to right, rgba(10, 11, 13, 0.95) 45%, rgba(10, 11, 13, 0.4)), url('assets/images/hero.webp') no-repeat center center / cover;
  background-attachment: fixed;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-red), #ff4b2b);
  color: var(--color-text-main);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Floating contact overlay info */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--color-accent-yellow);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Section Common Layouts */
section {
  padding: 100px 0;
}

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

.section-card-bg {
  background-color: #0e1017;
}

.section-header {
  max-width: 700px;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 8px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-top: 16px;
  font-weight: 300;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: 40px 32px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-red), var(--color-accent-yellow));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-sm);
  background: rgba(229, 9, 20, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(229, 9, 20, 0.15);
  transition: background-color var(--transition-normal);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--color-accent-red);
}

.service-card:hover .service-icon {
  background: rgba(229, 9, 20, 0.15);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 700;
}

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

/* Quote/Booking Panel (Glassmorphism layout) */
.booking-section {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 16, 23, 0.95) 0%, rgba(10, 11, 13, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.booking-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.booking-text p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-list-item i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 183, 0, 0.1);
  color: var(--color-accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.booking-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.calculator-group {
  margin-bottom: 24px;
}

.calculator-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.calculator-select, .calculator-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.calculator-select:focus, .calculator-input:focus {
  border-color: var(--color-accent-red);
}

.range-slider-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.range-slider {
  flex-grow: 1;
  height: 6px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent-red);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 60px;
  text-align: right;
  color: var(--color-accent-yellow);
}

.quote-result {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 24px;
  text-align: center;
  margin-top: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.quote-result .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.quote-result .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-text-main);
  margin: 8px 0;
}

.quote-result .note {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

/* About Us Section with modern image collage */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-accent-yellow);
  color: #000000;
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}

.about-floating-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.about-floating-card p {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.about-content h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-weight: 300;
}

.about-content p strong {
  color: var(--color-text-main);
  font-weight: 600;
}

/* Testimonials Carousel */
.testimonials-section {
  background-color: #0e1017;
  overflow: hidden;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
  text-align: center;
}

.quote-icon {
  font-size: 3.5rem;
  color: rgba(229, 9, 20, 0.2);
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-main);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent-yellow);
}

.author-location {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent-yellow);
  margin-bottom: 12px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-accent-red);
  transform: scale(1.3);
}

/* Gallery Showcase Page & Sections */
.gallery-section {
  padding: 120px 0 100px 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
  color: var(--color-text-main);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.9) 10%, rgba(10, 11, 13, 0.2));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-accent-yellow);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  color: var(--color-text-main);
  font-weight: 700;
}

.gallery-overlay p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent-red) 0%, #aa0000 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-content h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-banner-content .btn-secondary {
  background: #ffffff;
  color: #000000;
  border: none;
}

.cta-banner-content .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Footer styling */
footer {
  background-color: #06070a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-about .logo {
  margin-bottom: 24px;
}

.footer-about p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 300;
}

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

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-accent-red);
  color: var(--color-text-main);
  border-color: var(--color-accent-red);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.contact-info-item i {
  color: var(--color-accent-red);
  font-size: 1.1rem;
  margin-top: 4px;
}

.contact-info-item strong {
  color: var(--color-text-main);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--color-text-dim);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  color: var(--color-text-dim);
  font-size: 0.85rem;
}

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

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero {
    background: linear-gradient(rgba(10, 11, 13, 0.92), rgba(10, 11, 13, 0.92)), url('assets/images/hero.webp') no-repeat center center / cover;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    max-width: 500px;
    margin: 48px auto 0 auto;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px 0;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-deep);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: right var(--transition-normal);
    z-index: 999;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-toggle {
    display: block;
    z-index: 1000;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-floating-card {
    position: static;
    margin: 24px auto 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .quote-result .price {
    font-size: 2rem;
  }
  .booking-card {
    padding: 24px;
  }
}


/* ==========================================================================
   WordPress Core Alignment & Utility Classes
   ========================================================================== */
.admin-bar header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar header {
    top: 46px;
  }
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.alignleft {
  float: left;
  margin: 0.5em 1.5em 1.5em 0;
}

.alignright {
  float: right;
  margin: 0.5em 0 1.5em 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
  text-align: center;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* Page & Single Post Templates */
.page-hero {
  padding: 160px 0 60px 0;
  background: linear-gradient(180deg, rgba(14, 16, 23, 0.95) 0%, rgba(10, 11, 13, 1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-content-wrapper {
  padding: 80px 0;
  min-height: 50vh;
}

.entry-content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--color-text-main);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content a {
  color: var(--color-accent-red);
  text-decoration: underline;
}

.entry-content a:hover {
  color: #ff4b2b;
}

.entry-content blockquote {
  border-left: 4px solid var(--color-accent-red);
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-main);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.entry-content th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-main);
  font-weight: 600;
}

/* 404 Error Template */
.error-404-wrapper {
  padding: 180px 0 120px 0;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-404-code {
  font-size: 7rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-accent-red), #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}

.error-404-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.error-404-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 36px auto;
}

/* Post Cards Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.post-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.1);
}

.post-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-meta {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.post-card-title a {
  color: var(--color-text-main);
}

.post-card-title a:hover {
  color: var(--color-accent-red);
}

.post-card-excerpt {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-weight: 600;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--color-accent-red);
  color: var(--color-text-main);
  border-color: var(--color-accent-red);
}
