/* ============================================
   MISTHRIAS - INDUSTRIAL MODERN DESIGN SYSTEM
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* TYPOGRAPHY - INDUSTRIAL MODERN STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F4F4F4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E85D35 0%, #C74A28 100%);
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #B0B0B0;
}

a {
  text-decoration: none;
  color: #E85D35;
  transition: all 0.3s ease;
}

a:hover {
  color: #FF6B42;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER - INDUSTRIAL METALLIC STYLE */
header {
  background: linear-gradient(180deg, #2A2A2A 0%, #1F1F1F 100%);
  border-bottom: 2px solid #E85D35;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(232, 93, 53, 0.3));
}

/* MAIN NAVIGATION - METALLIC BARS */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F4F4F4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E85D35;
  transition: width 0.3s ease;
}

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

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

/* MOBILE MENU TOGGLE - INDUSTRIAL BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
  border: 2px solid #1A1A1A;
  color: #F4F4F4;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 93, 53, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #FF6B42 0%, #E85D35 100%);
  transform: scale(1.05);
}

/* MOBILE MENU - SLIDING INDUSTRIAL PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  border-left: 3px solid #E85D35;
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E85D35;
  color: #E85D35;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E85D35;
  color: #F4F4F4;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #F4F4F4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #E85D35;
  background: rgba(232, 93, 53, 0.1);
  color: #E85D35;
  padding-left: 24px;
}

/* HERO SECTION - INDUSTRIAL POWER */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(232, 93, 53, 0.05) 50%, transparent 70%);
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: #F4F4F4;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* BUTTONS - INDUSTRIAL METALLIC STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
  color: #F4F4F4;
  border-color: #E85D35;
  box-shadow: 0 4px 12px rgba(232, 93, 53, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF6B42 0%, #E85D35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 53, 0.5);
  color: #F4F4F4;
}

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

.btn-secondary:hover {
  background: #2C5F8D;
  color: #F4F4F4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* TRUST INDICATORS - METALLIC BADGES */
.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  color: #B0B0B0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  background: rgba(44, 95, 141, 0.2);
  border: 1px solid #2C5F8D;
  border-radius: 4px;
}

/* SECTIONS - INDUSTRIAL SPACING */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition,
.services-overview,
.process,
.testimonials,
.contact-cta {
  padding: 60px 20px;
  margin-bottom: 0;
}

.value-proposition {
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}

.services-overview {
  background: #1A1A1A;
}

.process {
  background: linear-gradient(180deg, #1A1A1A 0%, #2A2A2A 100%);
}

.testimonials {
  background: #1F1F1F;
}

.contact-cta {
  background: linear-gradient(135deg, #2C5F8D 0%, #1F4663 100%);
  text-align: center;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.value-proposition h2,
.services-overview h2,
.process h2,
.testimonials h2,
.contact-cta h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-cta h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.three-column-grid,
.services-grid,
.process-steps,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.three-column-grid {
  gap: 32px;
}

/* VALUE CARDS - INDUSTRIAL CONTAINERS */
.value-card,
.service-card,
.process-step,
.testimonial-card {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #E85D35;
  border-radius: 4px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  border-left-color: #FF6B42;
  box-shadow: 0 8px 24px rgba(232, 93, 53, 0.2);
}

.value-card {
  flex: 1 1 300px;
  text-align: center;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(85%) saturate(2413%) hue-rotate(343deg) brightness(98%) contrast(90%);
}

.value-card h3 {
  margin-bottom: 16px;
  color: #F4F4F4;
}

.value-card p {
  color: #B0B0B0;
  font-size: 15px;
}

/* SERVICE CARDS */
.service-card {
  flex: 1 1 280px;
  position: relative;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #F4F4F4;
}

.service-card p {
  color: #B0B0B0;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-card li {
  color: #B0B0B0;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E85D35;
  font-weight: bold;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E85D35;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #3A3A3A;
}

.service-card .btn {
  margin-top: 16px;
  width: 100%;
}

/* PROCESS STEPS - INDUSTRIAL TIMELINE */
.process-steps {
  position: relative;
  gap: 32px;
}

.process-step {
  flex: 1 1 250px;
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
  color: #F4F4F4;
  font-size: 24px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(232, 93, 53, 0.3);
}

.process-step h3 {
  margin-bottom: 12px;
}

.duration {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background: rgba(44, 95, 141, 0.2);
  color: #2C5F8D;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TESTIMONIALS - INDUSTRIAL REVIEW CARDS */
.testimonials-grid {
  gap: 32px;
}

.testimonial-card {
  flex: 1 1 500px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border-left-color: #2C5F8D;
}

.testimonial-card p {
  color: #E0E0E0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  color: #B0B0B0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
  margin-bottom: 0;
}

/* CONTACT CTA SECTION */
.contact-cta {
  color: #F4F4F4;
}

.contact-cta h2 {
  color: #F4F4F4;
}

.contact-cta p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info p {
  color: #E0E0E0;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-info strong {
  color: #F4F4F4;
}

/* PAGE HERO - INTERIOR PAGES */
.page-hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  padding: 60px 20px;
  border-bottom: 2px solid #E85D35;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #B0B0B0;
  max-width: 800px;
}

/* BREADCRUMB - INDUSTRIAL PATH */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #B0B0B0;
}

.breadcrumb a {
  color: #B0B0B0;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #E85D35;
}

/* CATEGORY NAVIGATION */
.category-navigation {
  padding: 60px 20px;
  background: #1A1A1A;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.category-card {
  flex: 1 1 280px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #E85D35;
  border-radius: 4px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-4px);
  border-left-color: #FF6B42;
  box-shadow: 0 8px 24px rgba(232, 93, 53, 0.2);
}

.category-card h3 {
  margin-bottom: 12px;
  color: #F4F4F4;
}

.category-card p {
  color: #B0B0B0;
  font-size: 14px;
}

/* TRUST BADGES */
.trust-badges {
  padding: 40px 20px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}

.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  flex: 1 1 200px;
  text-align: center;
}

.badge img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(85%) saturate(2413%) hue-rotate(343deg) brightness(98%) contrast(90%);
}

.badge span {
  color: #B0B0B0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* HELP SECTION */
.help-section {
  padding: 60px 20px;
  background: #1A1A1A;
  text-align: center;
}

.help-section h2 {
  margin-bottom: 16px;
}

.help-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.help-section p {
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  max-width: 250px;
}

.contact-option img {
  width: 56px;
  height: 56px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(85%) saturate(2413%) hue-rotate(343deg) brightness(98%) contrast(90%);
}

.contact-option p {
  color: #B0B0B0;
  font-weight: 600;
  margin-bottom: 0;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 20px;
  background: #1A1A1A;
}

.services-detailed .services-grid {
  gap: 32px;
}

/* SERVICE PROCESS */
.service-process {
  padding: 60px 20px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}

.service-process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.service-process h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.service-process .process-steps {
  gap: 32px;
}

/* CONSULTATION OFFER */
.consultation-offer {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C5F8D 0%, #1F4663 100%);
  text-align: center;
}

.consultation-offer h2 {
  color: #F4F4F4;
  margin-bottom: 16px;
}

.consultation-offer h2::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F4F4F4 0%, #E0E0E0 100%);
}

.consultation-offer p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 32px;
}

/* ABOUT PAGE STYLES */
.about-story {
  padding: 60px 20px;
  background: #1A1A1A;
  max-width: 900px;
  margin: 0 auto;
}

.about-story h2 {
  margin-bottom: 32px;
}

.about-story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-story blockquote {
  font-size: 24px;
  font-style: italic;
  color: #E85D35;
  border-left: 4px solid #E85D35;
  padding: 24px 32px;
  margin: 40px 0;
  background: rgba(232, 93, 53, 0.05);
  border-radius: 4px;
}

/* VALUES SECTION */
.values {
  padding: 60px 20px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.values .value-card {
  flex: 1 1 250px;
  text-align: left;
}

/* STATISTICS */
.statistics {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F4F4F4;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #F4F4F4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* LOCATION INFO */
.location-info {
  padding: 60px 20px;
  background: #1A1A1A;
  text-align: center;
}

.location-info h2 {
  margin-bottom: 32px;
}

.location-info h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.location-info p {
  font-size: 18px;
  margin-bottom: 24px;
}

.location-info strong {
  color: #F4F4F4;
}

/* SERVICE TYPES & PRICING */
.service-types,
.pricing {
  padding: 60px 20px;
  background: #1A1A1A;
}

.pricing {
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}

.pricing h2 {
  text-align: center;
  margin-bottom: 24px;
}

.pricing h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.pricing > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 16px;
}

.price-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px;
  border-collapse: collapse;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-radius: 4px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #3A3A3A;
}

.price-table th {
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
  color: #F4F4F4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.price-table td {
  color: #B0B0B0;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:last-child {
  color: #E85D35;
  font-weight: 700;
  text-align: right;
}

.guarantee-info {
  text-align: center;
  color: #2C5F8D;
  font-weight: 700;
  font-size: 16px;
  margin-top: 32px;
}

/* SERVICE BENEFITS */
.service-benefits {
  padding: 60px 20px;
  background: #1A1A1A;
}

.service-benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.service-benefits h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.benefit-card {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #2C5F8D;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-left-color: #E85D35;
  box-shadow: 0 8px 24px rgba(232, 93, 53, 0.2);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(85%) saturate(2413%) hue-rotate(343deg) brightness(98%) contrast(90%);
}

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

.benefit-card p {
  font-size: 14px;
}

/* SERVICE BOOKING */
.service-booking {
  padding: 60px 20px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  text-align: center;
}

.service-booking h2 {
  margin-bottom: 48px;
}

.service-booking h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.booking-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.booking-method {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #E85D35;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: left;
}

.booking-method h3 {
  margin-bottom: 12px;
  color: #F4F4F4;
}

.booking-method p {
  color: #B0B0B0;
  font-size: 15px;
}

/* CONTACT METHODS */
.contact-methods {
  padding: 60px 20px;
  background: #1A1A1A;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-methods h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-card {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #E85D35;
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-left-color: #FF6B42;
  box-shadow: 0 8px 24px rgba(232, 93, 53, 0.2);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(85%) saturate(2413%) hue-rotate(343deg) brightness(98%) contrast(90%);
}

.contact-card h3 {
  margin-bottom: 16px;
  color: #F4F4F4;
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #E85D35;
  margin-bottom: 12px;
}

.contact-hours {
  color: #B0B0B0;
  font-size: 14px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-form-section > p {
  text-align: center;
  font-size: 16px;
  color: #B0B0B0;
  margin-bottom: 40px;
}

.form-notice {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #2C5F8D;
  border-radius: 4px;
}

.form-notice p {
  margin-bottom: 16px;
  font-size: 16px;
}

.form-notice strong {
  color: #F4F4F4;
}

/* OPENING HOURS */
.opening-hours {
  padding: 60px 20px;
  background: #1A1A1A;
}

.opening-hours h2 {
  text-align: center;
  margin-bottom: 48px;
}

.opening-hours h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.hours-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 32px;
  border-collapse: collapse;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-radius: 4px;
  overflow: hidden;
}

.hours-table th,
.hours-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #3A3A3A;
}

.hours-table th {
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
  color: #F4F4F4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.hours-table td {
  color: #B0B0B0;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:last-child {
  text-align: right;
  color: #E0E0E0;
}

.special-note {
  text-align: center;
  color: #E85D35;
  font-weight: 600;
  font-size: 14px;
}

/* TRANSPORT INFO */
.transport-info {
  padding: 60px 20px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}

.transport-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.transport-info h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.transport-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.transport-method {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #2C5F8D;
  border-radius: 4px;
  padding: 32px 24px;
}

.transport-method h3 {
  margin-bottom: 16px;
  color: #F4F4F4;
}

.transport-method p {
  color: #B0B0B0;
  line-height: 1.8;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  background: #1A1A1A;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0 20px 32px;
  color: #B0B0B0;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.last-updated,
.effective-date {
  color: #B0B0B0;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

.cookies-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-radius: 4px;
  overflow: hidden;
}

.cookies-table th,
.cookies-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #3A3A3A;
}

.cookies-table th {
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
  color: #F4F4F4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.cookies-table td {
  color: #B0B0B0;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  margin: 0 auto 32px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232, 93, 53, 0.4);
}

.success-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.thank-you-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-content {
  padding: 60px 20px;
  background: #1A1A1A;
}

.content-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #2C5F8D;
  border-radius: 4px;
  padding: 40px 32px;
}

.content-box h2 {
  margin-bottom: 24px;
}

.content-box h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-box ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.content-box li {
  color: #B0B0B0;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.content-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E85D35;
  font-weight: bold;
  font-size: 20px;
}

.urgent-note {
  margin-top: 32px;
  padding: 20px;
  background: rgba(232, 93, 53, 0.1);
  border-left: 3px solid #E85D35;
  border-radius: 4px;
}

.urgent-note strong {
  color: #F4F4F4;
}

.urgent-note a {
  color: #E85D35;
  font-weight: 700;
}

.quick-links {
  padding: 60px 20px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
}

.quick-links h2 {
  text-align: center;
  margin-bottom: 48px;
}

.quick-links h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.link-card {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #E85D35;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-4px);
  border-left-color: #FF6B42;
  box-shadow: 0 8px 24px rgba(232, 93, 53, 0.2);
}

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

.link-card p {
  margin-bottom: 24px;
  flex-grow: 1;
}

.contact-reminder {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C5F8D 0%, #1F4663 100%);
  text-align: center;
}

.contact-reminder h2 {
  color: #F4F4F4;
  margin-bottom: 32px;
}

.contact-reminder h2::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F4F4F4 0%, #E0E0E0 100%);
}

.contact-reminder .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-reminder .contact-info p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 0;
}

.contact-reminder strong {
  color: #F4F4F4;
}

/* FOOTER - INDUSTRIAL FOUNDATION */
footer {
  background: linear-gradient(180deg, #0F0F0F 0%, #1A1A1A 100%);
  border-top: 2px solid #E85D35;
  padding: 60px 20px 20px;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer-col h4 {
  color: #F4F4F4;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-col a:hover {
  color: #E85D35;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #3A3A3A;
}

.footer-bottom p {
  color: #808080;
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER - INDUSTRIAL NOTIFICATION */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2A2A2A 0%, #1F1F1F 100%);
  border-top: 2px solid #E85D35;
  padding: 24px 20px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #E0E0E0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #E85D35 0%, #C74A28 100%);
  color: #F4F4F4;
  border-color: #E85D35;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #FF6B42 0%, #E85D35 100%);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #B0B0B0;
  border-color: #3A3A3A;
}

.cookie-btn-reject:hover {
  background: #3A3A3A;
  color: #F4F4F4;
}

.cookie-btn-settings {
  background: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.cookie-btn-settings:hover {
  background: #2C5F8D;
  color: #F4F4F4;
}

/* COOKIE MODAL - INDUSTRIAL SETTINGS PANEL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #E85D35;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #F4F4F4;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid #3A3A3A;
  border-left: 3px solid #2C5F8D;
  border-radius: 4px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-category h3 {
  margin: 0;
  font-size: 18px;
  color: #F4F4F4;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3A3A3A;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #F4F4F4;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-slider {
  background: #E85D35;
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #B0B0B0;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons .cookie-btn {
  flex: 1 1 150px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .main-nav {
    display: none;
  }

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

  .three-column-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .category-grid,
  .badges-grid,
  .contact-options,
  .contact-grid,
  .benefits-grid,
  .booking-methods,
  .transport-methods,
  .links-grid,
  .values-grid,
  .stats-grid {
    flex-direction: column;
  }

  .value-card,
  .service-card,
  .process-step,
  .testimonial-card,
  .category-card,
  .contact-card,
  .benefit-card,
  .booking-method,
  .transport-method,
  .link-card {
    flex: 1 1 100%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 32px 20px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }

  .price-table,
  .hours-table,
  .cookies-table {
    font-size: 14px;
  }

  .price-table th,
  .price-table td,
  .hours-table th,
  .hours-table td,
  .cookies-table th,
  .cookies-table td {
    padding: 12px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .three-column-grid .value-card {
    flex: 1 1 calc(50% - 16px);
  }

  .services-grid .service-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ANIMATIONS */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

/* FOCUS STYLES */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #E85D35;
  outline-offset: 4px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}