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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  line-height: 1.75;
  color: #2c3e50;
  background: #fafafa;
  min-height: 100vh;
}

/* Typography */
h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #c0392b;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #e74c3c;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #c0392b;
}

p {
  margin-bottom: 1.5rem;
  color: #34495e;
  font-size: 1.125rem;
}

a {
  color: #e74c3c;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 500;
}

a:hover {
  color: #c0392b;
}

/* Layout */
.main-wrapper {
  min-height: calc(100vh - 200px);
}

.section-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .section-wrap {
    padding: 0 3rem;
  }
}

/* Header */
.top-header {
  background: #ffffff;
  border-bottom: 4px solid #e74c3c;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 1.75rem 3rem;
  }
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-brand {
  font-size: 2rem;
  font-weight: 900;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.site-brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.top-nav {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-link {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.5rem 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e74c3c;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.is-active {
  color: #e74c3c;
}

.menu-trigger {
  display: block;
  background: #e74c3c;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  transition: background 0.3s ease;
  font-weight: bold;
}

.menu-trigger:hover {
  background: #c0392b;
}

.slide-menu {
  display: none;
  width: 100%;
  padding: 2rem 0;
  border-top: 2px solid #ecf0f1;
  margin-top: 1.5rem;
  background: #ffffff;
}

.slide-menu.is-open {
  display: block;
}

.slide-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slide-nav-link {
  color: #2c3e50;
  font-weight: 600;
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slide-nav-link:hover,
.slide-nav-link.is-active {
  color: #e74c3c;
  background: #fff5f5;
  border-left-color: #e74c3c;
}

@media (min-width: 768px) {
  .top-nav {
    display: block;
  }
  
  .menu-trigger {
    display: none;
  }
  
  .slide-menu {
    display: none !important;
  }
}

/* Hero Section */
.intro-section {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #922b21 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .intro-content {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-text h1 {
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.intro-text h2 {
  color: #fff5f5;
  font-weight: 400;
  font-size: 2rem;
}

.intro-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 5px solid rgba(255, 255, 255, 0.3);
}

/* Content Sections */
.content-section {
  padding: 5rem 0;
}

.text-content {
  max-width: 950px;
  margin: 0 auto;
}

.content-image {
  width: 100%;
  margin: 4rem 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid #ecf0f1;
}

/* Services Grid */
.services-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 4rem 0;
}

@media (min-width: 768px) {
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-box {
  background: #ffffff;
  border: 3px solid #ecf0f1;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #e74c3c, #c0392b);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.service-box:hover {
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
  border-color: #e74c3c;
  transform: translateY(-5px);
}

.service-box:hover::before {
  transform: scaleY(1);
}

.service-box h3 {
  color: #e74c3c;
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
}

.service-cost {
  font-size: 2.25rem;
  font-weight: 900;
  color: #c0392b;
  margin: 1.25rem 0;
  padding-left: 0.75rem;
}

.service-list {
  list-style: none;
  margin-top: 1.75rem;
  padding-left: 0.75rem;
}

.service-list li {
  padding: 0.625rem 0;
  color: #555;
  position: relative;
  padding-left: 2rem;
  font-size: 1.0625rem;
}

.service-list li::before {
  content: '🏑';
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

/* Footer */
.bottom-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 5rem 0 2.5rem;
  margin-top: 6rem;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 0 3rem;
  }
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.875rem;
}

.footer-list li a {
  color: #ecf0f1;
  transition: color 0.3s ease;
}

.footer-list li a:hover {
  color: #e74c3c;
}

.footer-bar {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9375rem;
}

/* Contact Section */
.contact-wrapper {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  padding: 3rem;
  border-radius: 15px;
  margin: 3rem 0;
  border: 3px solid #e74c3c;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.15);
}

.contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 5px solid #e74c3c;
}

.contact-row span {
  margin-right: 1.25rem;
  font-size: 2rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: 3rem;
}

.mb-lg {
  margin-bottom: 3rem;
}

/* Prose Styles */
.text-content p {
  font-size: 1.1875rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.text-content h2 {
  margin-top: 5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 4px solid #ecf0f1;
}

.text-content h2:first-of-type {
  margin-top: 0;
}

.text-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.text-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #e74c3c;
}

.text-content ul,
.text-content ol {
  margin-bottom: 2rem;
  padding-left: 3rem;
}

.text-content ul li,
.text-content ol li {
  margin-bottom: 1rem;
  line-height: 1.9;
  color: #34495e;
  font-size: 1.125rem;
}

.text-content ul li ul,
.text-content ul li ol,
.text-content ol li ul,
.text-content ol li ol {
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

