/* CSS Custom Properties */
:root {
  --mint-green: #A8E6CF;
  --sage-green: #87A96B;
  --dark-sage: #6B8E4A;
  --light-mint: #D4F4E8;
  --white: #FFFFFF;
  --dark-gray: #2C3E50;
  --light-gray: #F8F9FA;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Fixed Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.header-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--sage-green);
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: var(--sage-green);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint-green), var(--sage-green));
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-cta {
  background: var(--sage-green);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(135, 169, 107, 0.3);
}

.header-cta:hover {
  background: var(--dark-sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 169, 107, 0.4);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--sage-green);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-mobile.active {
  display: block;
}

.nav-menu-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.nav-menu-mobile li {
  border-bottom: 1px solid rgba(135, 169, 107, 0.1);
}

.nav-menu-mobile li:last-child {
  border-bottom: none;
}

.nav-menu-mobile a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-menu-mobile a:hover {
  color: var(--sage-green);
}

.mobile-cta {
  background: var(--sage-green);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 25px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(135, 169, 107, 0.3);
}

.mobile-cta:hover {
  background: var(--dark-sage) !important;
  box-shadow: 0 6px 20px rgba(135, 169, 107, 0.4);
}

/* Hero Section - Diagonal Split Design */
.hero {
  min-height: 100vh;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, var(--light-mint) 50%, transparent 50%),
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%),
    url('../img/office-cleaning-services.jpg');
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, center;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content-asymmetric {
  position: relative;
  z-index: 2;
}

.hero-content-asymmetric h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-highlight {
  color: var(--sage-green);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(168, 230, 207, 0.6);
  z-index: -1;
  border-radius: 4px;
}

.hero-content-asymmetric p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-form-compact {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form-compact h3 {
  color: var(--sage-green);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-form-compact .form-group {
  margin-bottom: 1.2rem;
}

.hero-form-compact .form-group input,
.hero-form-compact .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(135, 169, 107, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.hero-form-compact .form-group input::placeholder,
.hero-form-compact .form-group textarea::placeholder {
  color: rgba(44, 62, 80, 0.6);
}

.hero-form-compact .form-group input:focus,
.hero-form-compact .form-group textarea:focus {
  outline: none;
  background: white;
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.2);
  transform: translateY(-1px);
}

.hero-form-compact .form-group textarea {
  height: 80px;
  resize: vertical;
  min-height: 80px;
}

/* Button Styles */
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--sage-green);
  color: white;
  box-shadow: 0 6px 20px rgba(135, 169, 107, 0.3);
}

.btn-primary:hover {
  background: var(--dark-sage);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(135, 169, 107, 0.4);
}

.btn-outline {
  background: #fff;
  color: var(--sage-green);
  border: 2px solid var(--sage-green);
}

.btn-outline:hover {
  background: var(--sage-green);
  color: white;
  transform: translateY(-3px);
}

.btn-form {
  background: var(--sage-green);
  color: white;
  box-shadow: 0 6px 20px rgba(135, 169, 107, 0.3);
  width: 100%;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-form:hover {
  background: var(--dark-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(135, 169, 107, 0.4);
}

.btn-form:active {
  transform: translateY(0);
}

/* Services Section - Card Layout */
.services {
  padding: 6rem 0;
  background: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 2rem;
  width: 100%;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--mint-green);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--light-mint), transparent);
  border-radius: 0 20px 0 100px;
}

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

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-mint);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--sage-green);
}

.service-title {
  flex: 1;
}

.service-title h3 {
  font-size: 1.4rem;
  color: var(--dark-gray);
  margin-bottom: 0.3rem;
}

.service-price {
  font-size: 1.1rem;
  color: var(--sage-green);
  font-weight: 600;
}

.service-description {
  color: var(--dark-gray);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.service-features {
  position: relative;
  z-index: 2;
}

.service-features ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  width: 100%;
  max-width: 100%;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--dark-gray);
  font-size: 0.95rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.service-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--mint-green);
  color: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--light-gray);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--dark-gray);
  font-weight: 700;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
  opacity: 0.9;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--mint-green);
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.testimonial cite {
  font-weight: bold;
  color: var(--sage-green);
}

.about-image {
  position: relative;
}

/* Before/After Slider Styles */
.slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider-container:active {
  cursor: grabbing;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.before-image, .after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  will-change: clip-path;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  will-change: left;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  cursor: ew-resize;
}

.slider-button::before,
.slider-button::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.slider-button::before {
  border-left: 8px solid #3498db;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  left: 12px;
}

.slider-button::after {
  border-right: 8px solid #3498db;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  right: 12px;
}

.labels {
  position: absolute;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 5;
}

.label {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.slider-caption {
  text-align: center;
  margin-top: 15px;
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

/* Contact Section - Centered Layout */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--sage-green), var(--dark-sage));
  color: white;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.contact-intro {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

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

.contact-info {
  text-align: left;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.contact-item span:first-child {
  font-size: 1.3rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: left;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-gray);
  font-size: 1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.3);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--sage-green);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 25px;
  color: white;
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-green) 0%, var(--dark-sage) 100%);
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.left-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.company-info {
  text-align: left;
}

.company-info h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
  text-align: left;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-green);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(135, 169, 107, 0.3);
}

.logo-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.company-name {
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;
  overflow-wrap: break-word;
}

.contact-item a:hover {
  color: var(--light-mint);
}

.service-areas {
  margin-top: 20px;
  margin-bottom: 40px;
}

.about-section {
  margin-top: 20px;
}

.about-section h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
  text-align: left;
}

.about-content {
  color: white;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  opacity: 0.9;
}

.service-areas h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-areas h3 svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.area-item {
  background: white;
  color: var(--sage-green);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid white;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.area-item:hover {
  background: var(--dark-sage);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.area-item:nth-child(odd) {
  font-size: 14px;
}

.area-item:nth-child(3n) {
  font-size: 12px;
}

.area-item:nth-child(5n) {
  font-size: 15px;
}

.contact-form-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--sage-green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  align-self: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form-section h3 {
  font-size: 24px;
  color: var(--sage-green);
  margin-bottom: 30px;
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

.contact-form-section form {
  background: white;
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
  margin-top: 0;
}

.footer .form-group {
  margin-bottom: 20px;
}

.footer .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-weight: 500;
}

.footer .form-group input,
.footer .form-group textarea,
.contact-form-section select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--sage-green);
  border-radius: 10px;
  background: white;
  color: var(--dark-gray);
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.footer .form-group input:focus,
.footer .form-group textarea:focus,
.contact-form-section select:focus {
  outline: none;
  border-color: var(--dark-sage);
  box-shadow: 0 0 0 3px rgba(135, 169, 107, 0.2);
}

.contact-form-section select:hover {
  border-color: var(--dark-sage);
}

.footer .form-group input::placeholder,
.footer .form-group textarea::placeholder {
  color: rgba(44, 62, 80, 0.6);
}

.footer .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Select dropdown styling */
.contact-form-section select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2387A96B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.contact-form-section select option[value=""] {
  color: rgba(44, 62, 80, 0.6);
}

.contact-form-section select option {
  padding: 0.5rem;
  color: var(--dark-gray);
}

.footer .btn {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-sage) 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(135, 169, 107, 0.3);
  font-family: inherit;
}

.footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 169, 107, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 30px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--light-mint);
  opacity: 1;
}

.copyright {
  color: white;
  font-size: 14px;
  opacity: 0.8;
}

/* Footer response message styling */
.footer-response-message {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: var(--sage-green) !important;
  line-height: 1.4;
  background: rgba(168, 230, 207, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(135, 169, 107, 0.2);
}

.footer-response-message strong {
  color: var(--dark-sage) !important;
  font-weight: 600;
}

/* Phone Icon Styles */
.phone-icon {
  width: 16px;
  height: 16px;
  fill: white;
  margin-right: 8px;
  vertical-align: middle;
}

.btn .phone-icon {
  margin-right: 6px;
}

.header-cta .phone-icon,
.mobile-cta .phone-icon {
  width: 14px;
  height: 14px;
}

.contact-item svg {
  width: 22px;
  height: 22px;
  fill: white;
  flex-shrink: 0;
}

/* Service Banner for individual service pages */
.service-banner {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%),
  url('../img/office-cleaning-services.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 80px;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.service-banner-overlay {
  width: 100%;
  padding: 4rem 0;
  color: white;
}

.service-banner .container {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: 4rem;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.service-banner-content {
  position: relative;
  z-index: 2;
}

.service-banner h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.service-banner p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  line-height: 1.6;
}

.service-banner .subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  color: var(--light-mint);
}

.service-banner .breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  color: var(--mint-green);
}

.service-banner .breadcrumb a {
  color: var(--mint-green);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.service-banner .breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

.service-banner .breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

/* Service Banner Form */
.service-banner-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.service-banner-form h3 {
  color: var(--sage-green);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.service-banner-form .form-group {
  margin-bottom: 1.2rem;
}

.service-banner-form .form-group input,
.service-banner-form .form-group select,
.service-banner-form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(135, 169, 107, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.service-banner-form .form-group input::placeholder,
.service-banner-form .form-group textarea::placeholder {
  color: rgba(44, 62, 80, 0.6);
}

.service-banner-form .form-group input:focus,
.service-banner-form .form-group select:focus,
.service-banner-form .form-group textarea:focus {
  outline: none;
  background: white;
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.2);
  transform: translateY(-1px);
}

.service-banner-form .form-group textarea {
  height: 80px;
  resize: vertical;
  min-height: 80px;
}

.service-banner-form .btn-form {
  background: var(--sage-green);
  color: white;
  box-shadow: 0 6px 20px rgba(135, 169, 107, 0.3);
  width: 100%;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.service-banner-form .btn-form:hover {
  background: var(--dark-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(135, 169, 107, 0.4);
}

/* Service Hero Styles - Consolidated for all service pages */
.service-hero,
.domestic-cleaning-hero,
.office-cleaning-hero {
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e8 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-hero::before,
.domestic-cleaning-hero::before,
.office-cleaning-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2387A96B" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%2387A96B" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%2387A96B" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%2387A96B" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.service-hero .container,
.domestic-cleaning-hero .container,
.office-cleaning-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.service-hero-content,
.domestic-content-wrapper,
.office-content-wrapper {
  padding-right: 2rem;
}

.service-hero h1,
.domestic-cleaning-hero h1,
.office-cleaning-hero h1 {
  font-size: 2.8rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-hero .subtitle,
.domestic-cleaning-hero .subtitle,
.office-cleaning-hero .subtitle {
  font-size: 1.3rem;
  color: var(--sage-green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-hero p,
.domestic-cleaning-hero p,
.office-cleaning-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.service-hero-features,
.domestic-features-row,
.office-features-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-feature,
.domestic-feature-item,
.office-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(135, 169, 107, 0.2);
}

.feature-icon,
.domestic-feature-item span:first-child,
.office-feature-item span:first-child {
  font-size: 1.2rem;
}

.hero-feature span:last-child,
.domestic-feature-item span:last-child,
.office-feature-item span:last-child {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.service-hero-form,
.domestic-quote-form,
.office-quote-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(135, 169, 107, 0.1);
  position: sticky;
  top: 100px;
}

.service-hero-form h3,
.domestic-quote-form h3,
.office-quote-form h3 {
  font-size: 1.4rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.service-hero-form .form-group,
.domestic-quote-form .form-group,
.office-quote-form .form-group {
  margin-bottom: 1.2rem;
}

.service-hero-form input,
.service-hero-form select,
.service-hero-form textarea,
.domestic-quote-form input,
.domestic-quote-form select,
.domestic-quote-form textarea,
.office-quote-form input,
.office-quote-form select,
.office-quote-form textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(135, 169, 107, 0.3);
  border-radius: 10px;
  background: rgba(248, 253, 249, 0.8);
  color: var(--dark-gray);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.service-hero-form input:focus,
.service-hero-form select:focus,
.service-hero-form textarea:focus,
.domestic-quote-form input:focus,
.domestic-quote-form select:focus,
.domestic-quote-form textarea:focus,
.office-quote-form input:focus,
.office-quote-form select:focus,
.office-quote-form textarea:focus {
  outline: none;
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(135, 169, 107, 0.1);
  transform: translateY(-1px);
}

.service-hero-form textarea,
.domestic-quote-form textarea,
.office-quote-form textarea {
  resize: vertical;
  min-height: 80px;
}

.service-hero-form .btn-form,
.domestic-submit-btn,
.office-submit-btn {
  width: 100%;
  background: var(--sage-green);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.service-hero-form .btn-form:hover,
.domestic-submit-btn:hover,
.office-submit-btn:hover {
  background: var(--dark-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(135, 169, 107, 0.3);
}

/* END OF TENANCY HERO - Unique styling maintained */
.tenancy-cleaning-hero {
  background: linear-gradient(rgba(135, 169, 107, 0.8), rgba(107, 142, 74, 0.8)),
  url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=1200&h=600&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 80px;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.tenancy-hero-wrapper {
  width: 100%;
  padding: 4rem 0;
  color: white;
}

.tenancy-content-wrapper {
  position: relative;
  z-index: 2;
}

.tenancy-cleaning-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.tenancy-cleaning-hero p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  line-height: 1.6;
}

.tenancy-cleaning-hero .subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  color: var(--light-mint);
}

.tenancy-breadcrumb-nav {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tenancy-breadcrumb-nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.tenancy-breadcrumb-nav a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.tenancy-breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.9);
}

.tenancy-quote-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 3;
}

.tenancy-quote-form h3 {
  color: var(--sage-green);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.tenancy-quote-form .form-group {
  margin-bottom: 1.2rem;
}

.tenancy-quote-form input,
.tenancy-quote-form select,
.tenancy-quote-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(135, 169, 107, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tenancy-quote-form input:focus,
.tenancy-quote-form select:focus,
.tenancy-quote-form textarea:focus {
  outline: none;
  background: white;
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.2);
  transform: translateY(-1px);
}

.tenancy-quote-form textarea {
  height: 80px;
  resize: vertical;
  min-height: 80px;
}

.tenancy-submit-btn {
  background: var(--sage-green);
  color: white;
  box-shadow: 0 6px 20px rgba(135, 169, 107, 0.3);
  width: 100%;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.tenancy-submit-btn:hover {
  background: var(--dark-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(135, 169, 107, 0.4);
}

/* Shared Breadcrumb Styles */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--sage-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--dark-sage);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--dark-gray);
}

/* General Select Styling */
select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  color: #999;
}

select:invalid {
  color: #999;
}

select:valid {
  color: #333;
}

select option {
  color: #333;
  padding: 8px;
}

select:focus {
  outline: none;
  border-color: #87A96B;
  box-shadow: 0 0 0 3px rgba(135, 169, 107, 0.1);
}

select::-ms-expand {
  display: none;
}

/* Hero form select specific styling */
.hero-form-compact select:invalid,
#hero-service:invalid {
  color: #999 !important;
}

.hero-form-compact select:valid,
#hero-service:valid {
  color: #333 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container,
  .service-hero .container,
  .service-banner .container,
  .domestic-cleaning-hero .container,
  .tenancy-cleaning-hero .container,
  .office-cleaning-hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-form-compact,
  .service-hero-form,
  .service-banner-form,
  .domestic-quote-form,
  .tenancy-quote-form,
  .office-quote-form {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .about{

    padding-top: 25px;

  }

  .hamburger {
    display: flex;
  }

  .header-content {
    padding: 1rem 2rem;
  }

  .container {
    padding: 0 1rem;
  }
  .breadcrumb{

    margin-top: 0;

  }
.service-banner-overlay{

  padding: 0;

}
  .hero,
  .service-hero,
  .service-banner,
  .domestic-cleaning-hero,
  .office-cleaning-hero {
    margin-top: 100px;
    min-height: auto;
    padding: 3rem 0;
  }

  .service-banner,
  .tenancy-cleaning-hero {
    background-attachment: scroll;
  }

  .tenancy-hero-wrapper {
    padding: 3rem 0;
  }

  .hero .container,
  .service-hero .container,
  .service-banner .container,
  .domestic-cleaning-hero .container,
  .tenancy-cleaning-hero .container,
  .office-cleaning-hero .container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .service-hero-content,
  .service-banner-content,
  .domestic-content-wrapper,
  .tenancy-content-wrapper,
  .office-content-wrapper {
    padding-right: 0;
    order: 1;
  }

  .service-hero-form,
  .service-banner-form,
  .domestic-quote-form,
  .tenancy-quote-form,
  .office-quote-form {
    order: 2;
    position: static;
    padding: 2rem;
  }

  .hero-content-asymmetric h1,
  .service-hero h1,
  .service-banner h1,
  .domestic-cleaning-hero h1,
  .tenancy-cleaning-hero h1,
  .office-cleaning-hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-form-compact {
    padding: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .contact h2 {
    font-size: 2.2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .slider-container {
    height: 300px;
  }

  .labels {
    padding: 0 15px;
  }

  .label {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .left-section {
    gap: 40px;
  }

  .areas-grid {
    justify-content: center;
    gap: 8px;
  }

  .area-item {
    font-size: 13px !important;
    padding: 6px 12px;
    max-width: calc(50% - 4px);
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-section {
    padding: 30px 20px;
  }

  .service-hero-features,
  .domestic-features-row,
  .office-features-row {
    gap: 1rem;
  }

  .hero-feature,
  .domestic-feature-item,
  .office-feature-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-content-asymmetric h1,
  .service-hero h1,
  .service-banner h1,
  .domestic-cleaning-hero h1,
  .tenancy-cleaning-hero h1,
  .office-cleaning-hero h1 {
    font-size: 2rem;
  }

  .hero-form-compact {
    padding: 1.5rem;
  }

  .hero-form-compact h3 {
    font-size: 1.3rem;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .footer .container {
    padding: 0 15px;
  }

  .logo-section {
    text-align: center;
    gap: 15px;
  }

  .footer-logo {
    max-width: 150px;
    max-height: 50px;
  }

  .company-name {
    font-size: 24px;
  }

  .hero-feature,
  .domestic-feature-item,
  .office-feature-item {
    flex: 1 1 100%;
  }

  .service-hero h1,
  .service-banner h1,
  .domestic-cleaning-hero h1,
  .tenancy-cleaning-hero h1,
  .office-cleaning-hero h1 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-banner-form,
  .contact-form-section {
    padding: 1.5rem;
  }

  .area-item {
    max-width: calc(100% - 8px);
    text-align: center;
  }
}
@media (max-width: 768px) {
  .compact-cleaning-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .services{

    padding-top: 25px;

  }
  .about{

    padding-bottom: 25px;

  }
}

@media (max-width: 480px) {
  .compact-cleaning-card {
    padding: 1rem !important;
  }
}
.cleaning-includes .services-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
/* 404 page styling */

 .error-404 {
   min-height: 70vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 120px 0 2rem 0;
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }

.error-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.error-number {
  font-size: 8rem;
  font-weight: bold;
  color: #87A96B;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.error-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.helpful-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.link-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  display: block;
}

.link-card:hover {
  border-color: #87A96B;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.link-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.link-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.link-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.cta-buttons {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #87A96B;
  color: white;
  border-color: #87A96B;
}

.btn-primary:hover {
  background: #7a9960;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #87A96B;
  border-color: #87A96B;
}

.btn-outline:hover {
  background: #87A96B;
  color: white;
}

.phone-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .error-number {
    font-size: 5rem;
  }

  .error-title {
    font-size: 1.5rem;
  }

  .helpful-links {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

