@charset "utf-8";
:root {
  --color-steel-blue: #2C3E50;
  --color-steel-blue-light: #34495E;
  --color-energy-orange: #E67E22;
  --color-energy-orange-hover: #D35400;
  --color-dark-bg: #1a1a1a;
  --color-light-bg: #f8f9fa;
  --color-white: #ffffff;
  --color-text-dark: #212529;
  --color-text-light: #f8f9fa;
  --color-border: #dee2e6;
  --font-main: 'Teko', sans-serif;
  --font-body: system-ui, -apple-system, sans-serif;
  --border-radius: 4px;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
}
html { scroll-behavior: smooth; box-sizing: border-box; font-size: 100%; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
strong, b, p, h1, h2, h3, h4, h5, h6 { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-speed); }
ul { list-style: none; }
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
@media (max-width: 767px) { .grid { display: flex; flex-direction: column; gap: 20px; } }

.cell {
  grid-column: span 12;
}

/* Small devices (phones, less than 768px) */
@media (max-width: 767px) {
  .cell { grid-column: span 12; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cell.medium-1 { grid-column: span 1; }
  .cell.medium-2 { grid-column: span 2; }
  .cell.medium-3 { grid-column: span 3; }
  .cell.medium-4 { grid-column: span 4; }
  .cell.medium-5 { grid-column: span 5; }
  .cell.medium-6 { grid-column: span 6; }
  .cell.medium-7 { grid-column: span 7; }
  .cell.medium-8 { grid-column: span 8; }
  .cell.medium-9 { grid-column: span 9; }
  .cell.medium-10 { grid-column: span 10; }
  .cell.medium-11 { grid-column: span 11; }
  .cell.medium-12 { grid-column: span 12; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .cell.large-1 { grid-column: span 1; }
  .cell.large-2 { grid-column: span 2; }
  .cell.large-3 { grid-column: span 3; }
  .cell.large-4 { grid-column: span 4; }
  .cell.large-5 { grid-column: span 5; }
  .cell.large-6 { grid-column: span 6; }
  .cell.large-7 { grid-column: span 7; }
  .cell.large-8 { grid-column: span 8; }
  .cell.large-9 { grid-column: span 9; }
  .cell.large-10 { grid-column: span 10; }
  .cell.large-11 { grid-column: span 11; }
  .cell.large-12 { grid-column: span 12; }
}

/* XLarge devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .cell.xlarge-1 { grid-column: span 1; }
  .cell.xlarge-2 { grid-column: span 2; }
  .cell.xlarge-3 { grid-column: span 3; }
  .cell.xlarge-4 { grid-column: span 4; }
  .cell.xlarge-5 { grid-column: span 5; }
  .cell.xlarge-6 { grid-column: span 6; }
  .cell.xlarge-7 { grid-column: span 7; }
  .cell.xlarge-8 { grid-column: span 8; }
  .cell.xlarge-9 { grid-column: span 9; }
  .cell.xlarge-10 { grid-column: span 10; }
  .cell.xlarge-11 { grid-column: span 11; }
  .cell.xlarge-12 { grid-column: span 12; }
}
.section-padding { padding: 80px 0; }
@media (max-width: 767px) { .section-padding { padding: 50px 0; } }
.bg-dark { background-color: var(--color-dark-bg); color: var(--color-text-light); }
.bg-steel { background-color: var(--color-steel-blue); color: var(--color-text-light); }
.bg-light { background-color: var(--color-light-bg); color: var(--color-text-dark); }
.bg-orange-accent { background-color: var(--color-energy-orange); color: var(--color-white); }
.text-steel-blue { color: var(--color-steel-blue); }
.text-energy-orange { color: var(--color-energy-orange); }
.text-white { color: var(--color-white); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.1; text-transform: uppercase; letter-spacing: 1px; }
h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
@media (max-width: 767px) { h1 { font-size: 2.5rem; } }
h2 { font-size: 2.5rem; margin-bottom: 1.25rem; }
@media (max-width: 767px) { h2 { font-size: 2rem; } }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  min-height: 52px;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--color-energy-orange);
  color: var(--color-white);
  border-color: var(--color-energy-orange);
}
.btn-primary:hover {
  background-color: var(--color-energy-orange-hover);
  border-color: var(--color-energy-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark-bg);
}
.btn-dark {
  background-color: var(--color-steel-blue);
  color: var(--color-white);
  border-color: var(--color-steel-blue);
}
.btn-dark:hover {
  background-color: #1a252f;
  border-color: #1a252f;
}
.btn-text { background: none; color: var(--color-steel-blue); padding: 10px 0; font-size: 1.1rem; }
.btn-text:hover { color: var(--color-energy-orange); background: none; text-decoration: underline; }
.header-section {
  background-color: var(--color-dark-bg);
  color: var(--color-white);
  padding: 15px 0;
  font-size: 0.9rem;
}
.header-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.contact-info span { margin-right: 20px; display: inline-flex; align-items: center; gap: 8px; }
.contact-info svg { width: 18px; height: 18px; fill: var(--color-energy-orange); }
.main-header {
  background-color: var(--color-white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-steel-blue);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--color-energy-orange); }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-transform: uppercase;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-energy-orange); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-energy-orange);
  transition: width var(--transition-speed);
}
.main-nav a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
@media (max-width: 991px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-white); padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); flex-direction: column; gap: 15px; }
  .main-nav.active { display: flex; }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .mobile-menu-btn { display: block; }
  .mobile-menu-btn span { display: block; width: 25px; height: 3px; background: var(--color-steel-blue); margin: 5px 0; }
}
.hero-section {
  height: 80vh;
  min-height: 500px;
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.7)), url('../media/hero-automotive.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--color-white);
  position: relative;
}
.hero-content { max-width: 700px; }
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-energy-orange);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.hero-title { font-size: 4rem; margin-bottom: 30px; line-height: 1.1; }
@media (max-width: 767px) { .hero-title { font-size: 2.8rem; } }
.hero-btns { display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
@media (max-width: 767px) { .hero-btns { flex-direction: column; } .hero-btns .btn { width: 100%; } }
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--color-white), transparent);
}
.service-card {
  background: var(--glass-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-speed);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); }
.service-img { height: 220px; width: 100%; object-fit: cover; }
.service-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; color: var(--color-text-dark) }
.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-energy-orange);
}
.service-price {
  font-size: 1.5rem;
  color: var(--color-energy-orange);
  font-weight: 700;
  font-family: var(--font-main);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.btn-group-center { display: flex; justify-content: center; margin-top: 50px; }
.feature-box {
  padding: 40px 30px;
  background: var(--color-steel-blue);
  color: var(--color-white);
  border-radius: var(--border-radius);
  text-align: center;
  height: 100%;
  transition: transform var(--transition-speed);
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--color-energy-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-speed);
}
.feature-box:hover::before { transform: scaleX(1); }
.feature-box:hover { transform: translateY(-5px); }
.feature-icon {
  font-size: 3rem;
  color: var(--color-energy-orange);
  margin-bottom: 20px;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-speed);
}
.team-card:hover { transform: translateY(-5px); }
.team-img { height: 300px; width: 100%; object-fit: cover; }
.team-info { padding: 25px; text-align: center; border-bottom: 3px solid var(--color-energy-orange); }
.team-role { color: var(--color-energy-orange); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 5px; display: block; }
.team-name { font-size: 1.5rem; color: var(--color-steel-blue); font-family: var(--font-main); }
.review-card {
  background: var(--color-light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-energy-orange);
}
.review-text { font-style: italic; margin-bottom: 20px; color: #555; line-height: 1.8; }
.review-author { display: flex; align-items: center; gap: 15px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-energy-orange); }
.author-name { font-weight: 700; color: var(--color-steel-blue); display: block; }
.author-location { font-size: 0.85rem; color: #777; }
.contact-wrapper { background: var(--color-white); border-radius: var(--border-radius); box-shadow: var(--shadow-card); overflow: hidden; }
.contact-info-panel { background: var(--color-steel-blue); color: var(--color-white); padding: 40px; height: 100%; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 30px; }
.contact-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--color-energy-orange); flex-shrink: 0; }
.contact-text h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--color-white); }
.contact-text p { color: rgba(255,255,255,0.8); line-height: 1.4; }
.form-panel { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--color-steel-blue); }
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}
.form-control:focus { outline: none; border-color: var(--color-energy-orange); box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.page-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.8)), url('../media/about-workshop.webp') center/cover no-repeat;
  padding: 100px 0;
  color: var(--color-white);
  text-align: center;
}
.breadcrumbs { margin-top: 20px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.breadcrumbs a { color: var(--color-energy-orange); }
.faq-item { margin-bottom: 15px; border: 1px solid var(--color-border); border-radius: var(--border-radius); overflow: hidden; }
.faq-question {
  background: var(--color-light-bg);
  padding: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-steel-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover { background: #e9ecef; }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--color-white);
  color: #555;
}
.faq-item.active .faq-answer { padding: 20px; max-height: 500px; }
.faq-toggle { transition: transform 0.3s; font-size: 1.5rem; line-height: 1; }
.faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--color-energy-orange); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--border-radius); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.footer-main { background: var(--color-dark-bg); color: rgba(255,255,255,0.6); padding: 60px 0 30px; }
.footer-col h4 { color: var(--color-white); margin-bottom: 25px; font-size: 1.4rem; }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--color-energy-orange); padding-left: 5px; transition: all 0.2s; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--color-steel-blue);
  color: var(--color-white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  border-left: 5px solid var(--color-energy-orange);
  animation: slideUp 0.5s ease-out;
}
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--color-energy-orange); }
.cookie-text { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}
.cookie-accept { background: var(--color-energy-orange); color: var(--color-white); flex: 1; }
.cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--color-white); }
.hidden { display: none !important; }
.map-container { width: 100%; height: 400px; background: #e9ecef; border-radius: var(--border-radius); overflow: hidden; }
iframe { width: 100%; height: 100%; border: 0; }
.blog-card { background: var(--color-white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-card); height: 100%; }
.blog-img { height: 200px; width: 100%; object-fit: cover; }
.blog-content { padding: 25px; }
.blog-meta { font-size: 0.85rem; color: #777; margin-bottom: 10px; }
.blog-title { font-size: 1.3rem; margin-bottom: 15px; color: var(--color-steel-blue); line-height: 1.3; }
.toggle-btn {
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
  color: var(--color-energy-orange);
  font-weight: 600;
}
.full-content { margin-top: 15px; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--color-white);
  transform: translateY(100%);
  transition: transform 0.3s;
}
