/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-bottom: 1px solid #eee;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

nav strong {
  font-size: 1.4rem;
  color: #1a1a1a;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

nav a:hover {
  color: #666;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: #fff;
  color: #1a1a1a;
  padding: 4rem 2rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  border-bottom: 1px solid #eee;
  gap: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, #f5f5f5 49.5%, #f5f5f5 50.5%, transparent 50.5%);
  pointer-events: none;
  opacity: 0.5;
}

.large-logo-left {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.large-logo-img {
  width: 50vw;
  max-width: 600px;
  height: auto;
  display: block;
}

.hero-content {
  max-width: 500px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #555;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-features {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-features span {
  background: transparent;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Buttons */
.btn {
  background: #1a1a1a;
  color: #fff;
  padding: 1rem 2.5rem;
  display: inline-block;
  margin-top: 1rem;
  border: 2px solid #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn:hover {
  background: transparent;
  color: #1a1a1a;
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

/* Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3.5rem;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Services Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.services-grid {
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-card ul {
  list-style: none;
  text-align: left;
  padding-left: 0;
}

.service-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 0.95rem;
}

.service-card li:last-child {
  border-bottom: none;
}

/* Pricing Section */
#pricing {
  background: #fafafa;
  max-width: 100%;
  padding: 6rem 2rem;
}

#pricing > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-container {
  max-width: 700px;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
  overflow: hidden;
  border: 1px solid #eee;
}

thead {
  background: #1a1a1a;
  color: #fff;
}

th, td {
  padding: 1.2rem 1.5rem;
  text-align: left;
}

th {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

tbody tr:hover {
  background: #fafafa;
}

tbody tr:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  font-style: italic;
}

#pricing .btn {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
}

/* Estimate Section */
.estimate-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fafafa;
  padding: 2.5rem;
  border: 1px solid #eee;
}

#items {
  display: grid;
  gap: 1rem;
}

#items > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem 1.25rem;
  border: 1px solid #eee;
}

#items label {
  font-weight: 500;
  color: #1a1a1a;
  font-size: 0.95rem;
}

#items input {
  width: 80px;
  padding: 0.6rem;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 1rem;
  transition: border-color 0.3s;
}

#items input:focus {
  outline: none;
  border-color: #1a1a1a;
}

.estimate-total {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #1a1a1a;
  text-align: center;
}

.estimate-total p strong {
  font-size: 1.4rem;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.estimate-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
}

/* About Section */
#about {
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.about-features .feature {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid #eee;
}

.about-features strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-features p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: #666;
}

.business-hours {
  background: #1a1a1a;
  color: #fff;
  padding: 2.5rem;
}

.business-hours h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.business-hours ul {
  list-style: none;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.business-hours li:last-child {
  border-bottom: none;
}

.hours-note {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 1.5rem;
  text-align: center;
  font-style: italic;
}

/* Contact Form */
#contact {
  background: #fafafa;
  max-width: 100%;
  padding: 6rem 2rem;
}

#contact > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#quoteForm {
  background: #fff;
  padding: 3rem;
  border: 1px solid #eee;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

input, select, textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

#quoteForm .btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.2rem;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info strong {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-info p {
  opacity: 0.7;
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  opacity: 0.5;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
    border-bottom: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .large-logo-left {
    width: 100%;
  }

  .large-logo-img {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-features span {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .business-hours {
    margin-top: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem;
  }

  nav strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}
