/* General Styles - Brutalist Raw */
body {
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
  background: #2b2d42; /* Dark concrete gray */
  color: #000;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Concrete Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.05;
  z-index: -1;
}

/* Hero Section */
.et-hero-tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  background: url('images/1.jpg') no-repeat center center/cover;
  text-align: center;
  color: #fff;
}

.et-hero-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10px;
  max-width: 800px;
}

.hero-title {
  font-family: 'Impact', sans-serif;
  font-size: 4rem;
  margin: 0;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: #ef233c;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  margin: 20px 0;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-button, .story-button {
  display: inline-block;
  padding: 15px 30px;
  background: #ef233c;
  color: #000;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  border: 2px solid #000;
  transition: background 0.3s ease;
}

.hero-button:hover, .story-button:hover {
  background: #fff;
  color: #ef233c;
}

/* Navbar - Raw Strip with Burger */
.et-hero-tabs-container {
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #000;
  z-index: 1000;
  border-top: 2px solid #ef233c;
}

.burger {
  display: none;
  font-size: 2rem;
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  align-self: center;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.et-hero-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: #fff;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  border-right: 1px solid #333;
}

.et-hero-tab:last-child {
  border-right: none;
}

.et-hero-tab:hover {
  color: #ef233c;
  background: #333;
}

.et-hero-tab.active {
  color: #ef233c;
  background: #111;
}

.et-hero-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ef233c;
  transition: left 0.3s ease;
}

/* Main Sections - Grid Logic */
.et-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  background: #2b2d42;
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid #ccc;
  color: #fff;
}

.et-slide h1, .et-slide h2 {
  font-family: 'Impact', sans-serif;
  font-size: 3rem;
  margin: 0 0 40px;
  letter-spacing: 0.2rem;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.et-slide h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #ef233c;
}

/* About Section */
.about-section {
  min-height: 60vh;
  padding: 0;
}

.about-title {
  font-size: 3rem;
  color: #fff;
  margin: 0 0 40px;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin: 20px 0;
}

.about-text .highlight {
  color: #ef233c;
  font-weight: bold;
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

/* Our Story Section */
.story-section {
  padding: 40px 0;
}

.story-title {
  text-align: center;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
  padding: 30px;
  border: 2px solid #333;
}

.story-text {
  color: #fff;
}

.story-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin: 20px 0;
}

.story-paragraph .highlight {
  color: #ef233c;
  font-weight: bold;
  text-transform: uppercase;
}

.story-image a {
  display: block;
}

.story-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border: 1px solid #333;
}

.story-image img:hover {
  border-color: #ef233c;
}

/* What Makes Us Different Section */
.different-content {
  max-width: 1200px;
  margin: 0 auto;
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #ccc;
}

.different-item {
  background: #2b2d42;
  padding: 20px;
  color: #fff;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  transition: background 0.3s ease;
}

.different-item:nth-child(3n) {
  border-right: none;
}

.different-item:nth-child(n+4) {
  border-top: 1px solid #ccc;
}

.different-item:hover {
  background: #000;
  color: #fff;
}

.different-icon {
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  color: #ef233c;
  display: block;
  margin-bottom: 10px;
}

.different-item h3 {
  font-family: 'Impact', sans-serif;
  font-size: 1.4rem;
  margin: 10px 0;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.different-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
}

/* Signature Services Section */
.services-content {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #ccc;
}

.service-item {
  position: relative;
  overflow: hidden;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.service-item:nth-child(3n) {
  border-right: none;
}

.service-item:nth-child(n+4) {
  border-top: 1px solid #ccc;
}

.service-item a {
  display: block;
}

.service-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover .service-overlay {
  opacity: 1;
}

.service-overlay h3 {
  color: #fff;
  font-family: 'Impact', sans-serif;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/* Contact Section */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 20px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #2b2d42;
  padding: 20px;
  border: 1px solid #333;
  color: #fff;
}

.contact-info h3 {
  font-family: 'Impact', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-info p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.contact-link:hover {
  color: #ef233c;
}

.contact-icon {
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}

.contact-link:hover .contact-icon path {
  fill: #ef233c;
}

.contact-details {
  background: #2b2d42;
  padding: 10px;
  border: 1px solid #333;
}

.contact-details p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
  margin: 10px 0;
}

.contact-details strong {
  color: #ef233c;
  text-transform: uppercase;
}

/* Footer */
.footer {
  background: #000;
  padding: 30px 10px;
  color: #fff;
  text-align: center;
  border-top: 2px solid #ef233c;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  border-bottom: 1px solid #333;
}

.footer-links a:hover {
  color: #ef233c;
}

/* Media Queries */
@media (max-width: 800px) {
  .burger {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    width: 100%;
    background: #000;
  }
  .nav-menu.active {
    display: flex;
  }
  .et-hero-tab {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #333;
  }
  .different-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .story-content {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    flex-direction: column;
  }
  .hero-title { font-size: 2.5rem; }
  .about-title { font-size: 2rem; }
}

@media (min-width: 800px) {
  .hero-title { font-size: 5rem; }
  .hero-subtitle { font-size: 1.8rem; }
  .et-hero-tab { font-size: 1rem; }
  .et-slide h2 { font-size: 3.5rem; }
}