/* ===== ROOT VARIABLES ===== */
:root {
  --dark: #1a1a1a;
  --darker: #111111;
  --orange: #d4572a;
  --orange-dark: #b8451f;
  --green: #2d5a27;
  --green-dark: #1e3d1a;
  --cream: #f5f0e8;
  --light-gray: #e8e3db;
  --white: #ffffff;
  --text-light: #cccccc;
}

/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oswald', sans-serif;
  background-color: var(--darker);
  color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p, label, input, textarea, select {
  font-family: 'Open Sans', sans-serif;
}

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

img {
  max-width: 100%;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title span {
  color: var(--orange);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: rgba(17, 17, 17, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  border-bottom: 3px solid var(--orange);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.25rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  height: 60px;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 45px;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--orange);
}

.navbar-toggler {
  border-color: var(--orange) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4572a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--darker) 0%, #2a1a0a 50%, var(--darker) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(212, 87, 42, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(45, 90, 39, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  max-width: 400px;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
  filter: drop-shadow(0 0 30px rgba(212, 87, 42, 0.3));
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
  color: var(--orange);
  display: block;
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-splatter {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.hero-splatter.orange {
  background: var(--orange);
  top: -200px;
  right: -200px;
}

.hero-splatter.green {
  background: var(--green);
  bottom: -200px;
  left: -200px;
}

/* ===== BUTTONS ===== */
.btn-fire {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 40px;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-fire:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 87, 42, 0.4);
}

.btn-forest {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 40px;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-forest:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
}

.btn-outline-fire {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 38px;
  border-radius: 0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-outline-fire:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 87, 42, 0.4);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--dark);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><rect fill="none" stroke="%23222" stroke-width="0.5" width="80" height="80"/></svg>');
  background-size: 80px 80px;
  opacity: 0.3;
}

.service-card {
  background: var(--darker);
  border: 1px solid #333;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange), var(--green));
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 40px
  );
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  position: relative;
}

/* ===== ABOUT SECTION ===== */
.about-highlight {
  border-left: 4px solid var(--orange);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-highlight p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: var(--dark);
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.stat-box .number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  font-family: 'Oswald', sans-serif;
}

.stat-box .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-top: 0.5rem;
  display: block;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
  background: var(--darker);
}

.portfolio-filter .btn {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  margin: 0.25rem;
  padding: 0.5rem 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 87, 42, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h5 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.portfolio-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

/* Placeholder portfolio items */
.portfolio-placeholder {
  width: 100%;
  height: 280px;
  background: var(--dark);
  border: 2px dashed #444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #666;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.portfolio-placeholder:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.portfolio-placeholder i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
  background: var(--dark);
}

.brand-card {
  background: var(--white);
  padding: 2rem;
  text-align: center;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  border-color: var(--orange);
}

.brand-card img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
}

.brand-card h5 {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.brand-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== CONTACT / QUOTE FORM ===== */
.contact-section {
  background: var(--darker);
}

.contact-form {
  background: var(--dark);
  border: 1px solid #333;
  padding: 3rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--darker);
  border: 1px solid #444;
  color: var(--cream);
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-family: 'Open Sans', sans-serif;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(212, 87, 42, 0.25);
  background: var(--darker);
  color: var(--cream);
}

.contact-form .form-control::placeholder {
  color: #777;
}

.contact-form label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-info-card {
  background: var(--dark);
  border: 1px solid #333;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.contact-info-card i {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.contact-info-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker);
  border-top: 3px solid var(--orange);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.footer p, .footer a {
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--orange);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--cream);
  margin-right: 0.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #777;
}

/* ===== PAGE HEADERS ===== */
.page-header {
  background: linear-gradient(135deg, var(--darker) 0%, #2a1a0a 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 87, 42, 0.08) 0%, transparent 70%);
}

.page-header h1 {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}

.page-header h1 span {
  color: var(--orange);
}

.page-header .breadcrumb {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb-item a {
  color: var(--text-light);
}

.page-header .breadcrumb-item.active {
  color: var(--orange);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #666;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-logo {
    max-width: 280px;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-logo {
    max-width: 220px;
  }
  section {
    padding: 50px 0;
  }
  .contact-form {
    padding: 2rem;
  }
  .cta-banner h2 {
    font-size: 1.8rem;
  }
}
