:root {
  --orange: #FF6B00;
  --orange-dark: #E05500;
  --dark: #1A1A1A;
  --dark-mid: #2A2A2A;
  --dark-light: #3A3A3A;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --gray: #888;
  --gray-light: #CCC;
  --text: #E0E0E0;
  --text-dark: #333;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.7; background: var(--dark); }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-bar { background: var(--orange); color: #fff; padding: 6px 0; font-size: 13px; font-weight: 600; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--dark); }

/* Header */
.header { background: var(--dark); padding: 14px 0; border-bottom: 2px solid var(--orange); position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.logo-img { height: 50px; width: auto; }
.logo-text h1 { font-family: var(--font-heading); font-size: 28px; color: #fff; line-height: 1.1; text-transform: uppercase; letter-spacing: 2px; }
.logo-text h1 span { color: var(--orange); }
.logo-text small { font-size: 11px; color: var(--gray); letter-spacing: 3px; text-transform: uppercase; }
.nav ul { list-style: none; display: flex; gap: 28px; }
.nav a { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: 1px; padding: 8px 0; border-bottom: 2px solid transparent; transition: all 0.2s; }
.nav a:hover, .nav a.active { color: var(--orange); border-bottom-color: var(--orange); }
.mobile-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: #fff; }

/* Hero */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.6) 50%, rgba(26,26,26,0.3) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 580px; padding: 60px 0; }
.hero-content h1 { font-family: var(--font-heading); font-size: 52px; line-height: 1.1; margin-bottom: 18px; text-transform: uppercase; }
.hero-content h1 span { color: var(--orange); }
.hero-content p { font-size: 18px; margin-bottom: 28px; opacity: 0.85; }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%); padding: 55px 0; color: #fff; text-align: center; border-bottom: 3px solid var(--orange); }
.page-hero h1 { font-family: var(--font-heading); font-size: 42px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.breadcrumb { font-size: 14px; color: var(--gray); }
.breadcrumb a { color: var(--orange); }

/* Buttons */
.btn { display: inline-block; padding: 14px 34px; font-family: var(--font-heading); font-size: 14px; font-weight: 700; border-radius: 3px; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-outline { border: 2px solid var(--orange); color: var(--orange); background: transparent; }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-white { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-white:hover { background: #fff; color: var(--dark); }

/* Sections */
.section { padding: 75px 0; }
.section-dark { background: var(--dark-mid); }
.section-light { background: var(--light); color: var(--text-dark); }
.section-orange { background: var(--orange); color: #fff; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-heading); font-size: 38px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-light .section-header h2 { color: var(--dark); }
.section-header p { font-size: 16px; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-light .section-header p { color: #666; }
.divider { width: 60px; height: 3px; background: var(--orange); margin: 14px auto; }

/* Service Grid */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--dark-light); border-radius: 6px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; border: 1px solid rgba(255,255,255,0.05); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card .info { padding: 24px; }
.service-card h3 { font-family: var(--font-heading); font-size: 20px; color: #fff; text-transform: uppercase; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray); }
.section-light .service-card { background: #fff; border: 1px solid #e0e0e0; }
.section-light .service-card h3 { color: var(--dark); }
.section-light .service-card p { color: #666; }

/* Feature Grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { text-align: center; padding: 40px 25px; background: var(--dark-light); border-radius: 6px; border-top: 3px solid var(--orange); }
.feature-card .icon { font-size: 44px; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-heading); font-size: 18px; color: #fff; text-transform: uppercase; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray); }

/* About Split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { border-radius: 6px; width: 100%; object-fit: cover; max-height: 420px; }
.about-text h2 { font-family: var(--font-heading); font-size: 34px; color: #fff; text-transform: uppercase; margin-bottom: 18px; }
.section-light .about-text h2 { color: var(--dark); }
.about-text p { margin-bottom: 16px; color: var(--gray); }
.section-light .about-text p { color: #666; }

/* Banner */
.banner { position: relative; min-height: 320px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.banner .hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(26,26,26,0.8); }
.banner-content { position: relative; z-index: 2; color: #fff; padding: 50px 20px; }
.banner-content h2 { font-family: var(--font-heading); font-size: 40px; text-transform: uppercase; margin-bottom: 14px; }
.banner-content h2 span { color: var(--orange); }
.banner-content p { font-size: 18px; margin-bottom: 24px; opacity: 0.85; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 24px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.06); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 26px; }
.contact-info-item .icon { font-size: 28px; color: var(--orange); flex-shrink: 0; width: 42px; text-align: center; }
.contact-info-item h4 { font-family: var(--font-heading); font-size: 16px; color: #fff; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--gray); }
.section-light .contact-info-item h4 { color: var(--dark); }
.section-light .contact-info-item p { color: #666; }

/* Hours Table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-table td:first-child { font-weight: 600; color: #fff; }
.section-light .hours-table td { border-color: #e0e0e0; }
.section-light .hours-table td:first-child { color: var(--dark); }

/* Contact Form */
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 13px 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; font-family: var(--font-body); font-size: 14px; margin-bottom: 14px; background: var(--dark-light); color: #fff; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Map */
.map-section iframe { width: 100%; height: 350px; border: none; display: block; filter: grayscale(80%) contrast(1.1); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--dark-light); padding: 30px; border-radius: 6px; border-left: 3px solid var(--orange); }
.testimonial-card .stars { color: var(--orange); font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; color: var(--gray); font-size: 14px; margin-bottom: 14px; }
.testimonial-card .author { font-weight: 700; color: #fff; font-size: 14px; }

/* Footer */
.footer { background: #111; color: var(--gray); padding: 55px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 35px; }
.footer h3 { font-family: var(--font-heading); color: var(--orange); font-size: 18px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer p { font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--gray); font-size: 14px; }
.footer ul a:hover { color: var(--orange); }
.footer a { color: var(--gray); }
.footer a:hover { color: var(--orange); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--dark-light); border-radius: 50%; color: #fff; font-size: 16px; transition: background 0.2s; }
.social-links a:hover { background: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center; font-size: 13px; color: #555; }

/* Responsive */
@media (max-width: 900px) {
  .service-grid, .feature-grid, .testimonials-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 38px; }
}
@media (max-width: 650px) {
  .mobile-toggle { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); border-bottom: 2px solid var(--orange); padding: 15px 20px; }
  .nav.active { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav a { display: block; padding: 12px 0; }
  .hero { min-height: 420px; }
  .hero-content h1 { font-size: 30px; }
  .hero-content { padding: 40px 0; }
  .service-grid, .feature-grid, .testimonials-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 28px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
  .top-bar .container { justify-content: center; text-align: center; }
}
