/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; color: #333; background: #f5f5f5; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 980px; margin: 0 auto; padding: 0 15px; }

/* Buttons */
.btn { display: inline-block; padding: 10px 24px; font-weight: bold; text-transform: uppercase; text-align: center; cursor: pointer; border: none; font-size: 13px; }
.btn-yellow { background: #FFD700; color: #000; }
.btn-yellow:hover { background: #e6c200; }
.btn-black { background: #000; color: #fff; }
.btn-black:hover { background: #333; }
.btn-large { padding: 12px 30px; font-size: 15px; }
.btn-block { display: block; width: 100%; }

/* Header */
.top-bar { background: #000; padding: 8px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.logo a { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { color: #fff; font-size: 22px; font-weight: bold; letter-spacing: 2px; }
.logo-bolt { color: #FFD700; }
.logo-tagline { color: #FFD700; font-size: 14px; font-weight: bold; }
.logo-subtitle { color: #fff; font-size: 11px; letter-spacing: 3px; }
.social-icons { display: flex; gap: 6px; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: #FFD700; color: #000; font-weight: bold; font-size: 12px; }

/* Navigation */
nav { background: #FFD700; }
.nav-menu { display: flex; }
.nav-menu li a { display: block; padding: 10px 14px; font-size: 11px; font-weight: bold; color: #000; text-transform: uppercase; }
.nav-menu li a:hover, .nav-menu li a.active { background: #000; color: #fff; }

/* Hero */
.hero { position: relative; height: 300px; background: linear-gradient(135deg, #1a0a00 0%, #4a2000 30%, #8B4513 50%, #CD853F 70%, #FFD700 100%); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
.hero .container { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; width: 100%; }
.hero-text { color: #fff; }
.hero-text h1 { font-size: 32px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-text p { font-size: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }

/* Quote Form */
.quote-form-box { background: #fff; padding: 20px; width: 320px; }
.quote-form-box h3 { margin-bottom: 12px; font-size: 16px; }
.quote-form-box .form-row { display: flex; gap: 8px; margin-bottom: 8px; }
.quote-form-box input, .quote-form-box select { flex: 1; padding: 6px 8px; border: 1px solid #ccc; font-size: 12px; }
.quote-form-box select { width: 100%; }
.quote-form-box .btn { margin-top: 8px; }

/* Sections */
.section { padding: 40px 0; background: #fff; }
.section-gray { background: #f5f5f5; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 20px; font-weight: normal; }
.section-text { text-align: center; max-width: 750px; margin: 0 auto 30px; font-size: 14px; line-height: 1.7; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { text-align: center; }
.card h3 { font-size: 14px; font-weight: bold; margin: 15px 0 10px; text-transform: uppercase; }
.card p { font-size: 13px; line-height: 1.6; margin-bottom: 15px; }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card .btn { width: 100%; }

/* What We Do */
.what-we-do { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start; }
.what-we-do-center { text-align: center; }
.what-we-do-center img { max-width: 100%; }
.what-we-do ul { padding-left: 20px; }
.what-we-do ul li { list-style: disc; font-size: 13px; margin-bottom: 4px; }

/* News Cards */
.news-card { border: 2px solid #FFD700; }
.news-card img { width: 100%; height: 160px; object-fit: cover; }
.news-card-body { padding: 12px; }
.news-card-body h3 { font-size: 13px; font-weight: bold; text-transform: uppercase; margin-bottom: 8px; }
.news-card-body p { font-size: 12px; line-height: 1.5; margin-bottom: 10px; }
.news-card .btn { width: 100%; border-top: 2px solid #FFD700; padding: 8px; background: #fff; color: #000; font-size: 12px; }
.news-card .btn:hover { background: #FFD700; }

/* Footer */
.footer-main { background: #333; color: #fff; padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h4 { font-size: 14px; margin-bottom: 12px; color: #fff; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: #ccc; font-size: 13px; }
.footer-col ul li a:hover { color: #FFD700; }
.footer-cta { text-align: center; }
.footer-cta p { font-size: 13px; color: #ccc; margin-top: 8px; }
.footer-cta .phone-numbers { color: #FFD700; font-size: 16px; margin-top: 5px; }
.footer-bottom { background: #222; color: #999; padding: 15px 0; text-align: center; font-size: 12px; }
.footer-bottom a { color: #ccc; }
.footer-bottom p { margin-bottom: 4px; }

/* Page Content */
.page-header { background: #FFD700; padding: 20px 0; }
.page-header h1 { font-size: 28px; font-weight: bold; }
.content-section { padding: 30px 0; background: #fff; }
.content-section p { font-size: 14px; margin-bottom: 15px; line-height: 1.7; }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.product-card { border: 1px solid #ddd; padding: 20px; }
.product-card h3 { font-size: 16px; margin-bottom: 10px; }
.product-card p { font-size: 13px; margin-bottom: 8px; }

/* Testimonials */
.testimonial { background: #f9f9f9; border-left: 4px solid #FFD700; padding: 20px; margin-bottom: 20px; }
.testimonial p { font-size: 14px; line-height: 1.7; font-style: italic; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-info h3 { margin-bottom: 10px; }
.contact-info p { font-size: 14px; margin-bottom: 8px; }
.map-placeholder { background: #e0e0e0; height: 300px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 18px; }

/* Quote Page Form */
.quote-page-form { max-width: 600px; margin: 0 auto; }
.quote-page-form .form-group { margin-bottom: 15px; }
.quote-page-form label { display: block; font-size: 13px; font-weight: bold; margin-bottom: 5px; }
.quote-page-form input, .quote-page-form select, .quote-page-form textarea { width: 100%; padding: 10px; border: 1px solid #ccc; font-size: 14px; }
.quote-page-form textarea { height: 100px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* News List */
.news-list-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid #eee; }
.news-list-item img { width: 200px; height: 130px; object-fit: cover; flex-shrink: 0; }
.news-list-item h3 { font-size: 16px; margin-bottom: 8px; }
.news-list-item p { font-size: 13px; line-height: 1.6; }

/* Responsive */
@media (max-width: 768px) {
  .nav-menu { flex-wrap: wrap; justify-content: center; }
  .nav-menu li a { padding: 8px 10px; font-size: 10px; }
  .hero .container { flex-direction: column; text-align: center; }
  .quote-form-box { width: 100%; margin-top: 15px; }
  .cards, .footer-grid { grid-template-columns: 1fr; }
  .what-we-do { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .news-list-item { flex-direction: column; }
  .news-list-item img { width: 100%; }
}
