/* Contact Page Specific Styles */

/* Contact Form Styles */
.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin: 40px 0;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #2d3748;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d4d9e3;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1976d2;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.08), 0 0 12px rgba(25, 118, 210, 0.2);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

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

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  background: white;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  color: #2e7d32;
  margin-bottom: 24px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  color: #4a5568;
  line-height: 1.6;
}

.contact-detail i {
  color: #2e7d32;
  width: 24px;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail div {
  flex: 1;
}

.contact-detail strong {
  font-weight: 600;
  color: #2d3748;
  display: block;
  margin-bottom: 4px;
}

/* Working Hours */
.working-hours {
  background: linear-gradient(135deg, #f8fbf8 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e8f3e8;
}

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

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8f0;
  font-size: 0.95rem;
}

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

.hours-item.today {
  background-color: #f0f9f0;
  color: #2e7d32;
  font-weight: 600;
  padding: 12px 14px;
  margin: 0 -14px;
  border-radius: 8px;
  border: none;
}

.hours-item.today .day {
  color: #2e7d32;
  font-weight: 600;
}

.hours-item.today .time {
  color: #2e7d32;
  font-weight: 600;
}

.hours-item .day {
  color: #4a5568;
  font-weight: 500;
}

.hours-item .time {
  color: #666;
  font-weight: 500;
}

.hours-item.closed .time {
  color: #dc2626;
  font-weight: 600;
}

.status-open {
  color: #2e7d32;
  font-weight: 600;
}

.status-closed {
  color: #dc2626;
  font-weight: 600;
}

/* Desktop enhancements */
@media (min-width: 769px) {
  .contact-form-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fbf8 0%, #ffffff 50%, #f8fbf8 100%);
  }

  .contact-form-container {
    gap: 80px;
  }

  .contact-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .contact-details {
    gap: 28px;
  }

  .contact-item {
    padding: 0;
    background: transparent;
    border-left: none;
  }

  .contact-item i {
    font-size: 1.4rem;
    width: 28px;
    margin-top: 0;
  }

  .contact-item strong {
    font-size: 1rem;
  }

  .working-hours {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf8 100%);
    border: 1px solid #e0e8e0;
  }

  .submit-btn {
    width: auto;
    padding: 16px 52px;
  }
}

/* Contact Page Map */
.contact-map {
  margin: 40px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form {
    padding: 25px;
  }
}

/* Styles */

 .mobile-menu-toggle {
   display: none;
   flex-direction: column;
   gap: 5px;
   background: none;
   border: none;
   cursor: pointer;
   padding: 10px;
   z-index: 1001;
 }

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #2d3748;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu-portal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
}

.mobile-menu-portal.active {
  display: block;
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.mobile-menu-content {
  position: absolute;
  top: 120px;
  right: 20px;
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 0;
  min-width: 280px;
  max-width: 90vw;
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav__list {
    display: none !important;
  }

  .nav__item {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav__item:last-child {
    border-bottom: none;
  }

  .nav__link {
    display: block;
    padding: 15px 25px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
  }

  .nav__link:hover {
    background-color: #f7fafc;
    color: #87cc46;
  }

  .mobile-dropdown {
    display: none;
    flex-direction: column;
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
  }

  .mobile-dropdown.active {
    display: flex;
  }

  .mobile-dropdown > div {
    border-top: 1px solid #e2e8f0;
  }

  .mobile-dropdown > div:first-child {
    border-top: none;
  }

  .mobile-dropdown a {
    color: #4a5568;
    padding: 12px 25px 12px 40px;
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: background 0.3s, padding-left 0.3s, color 0.3s;
    font-size: 0.9rem;
  }

  .mobile-dropdown a:hover {
    background-color: #edf2f7;
    color: #87cc46;
    padding-left: 45px;
  }

  #mobileServicesToggle.active i {
    transform: rotate(180deg);
  }

  #mobileServicesToggle i {
    transition: transform 0.3s;
  }
}

.form-group {
  margin-bottom: 25px;
}





.form-group label {
  display: block;
  color: #4a5568;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.08), 0 0 12px rgba(25, 118, 210, 0.2);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  appearance: none;
}

.submit-btn {
  background: #ffffff;
  color: #2e7d32;
  font-family: inherit;
  box-shadow: 0 6px 24px rgba(46, 125, 50, 0.15);
  padding: 16px 48px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.submit-btn:hover {
  background: #f8fdf8;
  border-color: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46, 125, 50, 0.2);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}




.working-hours h3 {
  color: #10b981;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding: 20px;
}

.hours-list {
  list-style: none;
  padding: 10px;
  color: #10b981;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #10b981;
}

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

.hours-item.today {
  background: #f0fff4;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #10b981;
  margin: 5px 0;
}

.hours-item.today .day {
  color: #10b981;
  font-weight: 600;
}

.hours-item.closed .time {
  color: #e53e3e;
  font-weight: 600;
}

.hours-item:not(.closed) .time {
  color: #10b981;
  font-weight: 600;
}

.page-header {
  background: url("photos/IMG_Dirt1.jpg") no-repeat center center/cover;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.header-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.header-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #10b981;
  text-decoration: none;
}

.breadcrumb-separator {
  color: #a0aec0;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, #2e7d32, #1b5e20);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.btn-center {
  text-align: center;
  margin: 2rem 0;
}

/* Form Section - Full Width at Top */
.form-section-top {
  background: white;
  border-radius: 16px;
  padding: 70px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
}

.form-section h2 {
  color: #2e7d32;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form-section {
  padding: 50px 20px;
  background: #fafbfc;
}

/* Contact Details Section - Below Form */
.contact-details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: white;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-side {
  background: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-header {
    padding: 50px 20px;
  }

  .header-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .header-content p {
    font-size: 1.05rem;
    padding: 0 10px;
    line-height: 1.6;
  }

  .contact-form-section {
    padding: 40px 0;
    background: #f8f9fa;
  }

  .form-section-top {
    padding: 40px 24px;
    margin: 0 12px 24px 12px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 28px;
    color: #2e7d32;
  }

  .contact-details-section {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
    margin: 0 12px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .contact-side {
    padding-top: 0;
  }

  .contact-details {
    gap: 24px;
    margin-bottom: 32px;
  }

  .contact-item {
    font-size: 0.95rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8fdf8;
    border-radius: 10px;
    border-left: 4px solid #2e7d32;
  }

  .contact-item i {
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
    color: #2e7d32;
  }

  .contact-item strong {
    color: #2d3748;
    display: block;
    margin-bottom: 2px;
    font-size: 0.9rem;
  }

  .contact-side .contact-item div {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
  }

  .working-hours {
    background: linear-gradient(135deg, #f8fbf8 0%, #ffffff 100%);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e8f3e8;
    margin-top: 32px;
  }

  .working-hours h3 {
    font-size: 1.3rem;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .hours-list {
    padding: 0;
  }

  .hours-item {
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8f0;
  }

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

  .hours-item .day {
    color: #4a5568;
    font-weight: 500;
  }

  .hours-item .time {
    color: #666;
    font-weight: 500;
  }

  .hours-item.today {
    background-color: #f0f9f0;
    padding: 10px 12px;
    margin: 0 -12px;
    border-radius: 8px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
  }

  .form-group textarea {
    min-height: 130px;
  }

  .submit-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-top: 8px;
  }

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

  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 40px 16px;
  }

  .header-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .header-content p {
    font-size: 0.95rem;
  }

  .contact-form-section {
    padding: 32px 0;
  }

  .form-section-top {
    padding: 28px 20px;
    margin: 0 8px 20px 8px;
    border-radius: 14px;
  }

  .contact-details-section {
    padding: 28px 20px;
    gap: 32px;
    margin: 0 8px;
    border-radius: 14px;
  }

  .form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .contact-item {
    padding: 14px 12px;
    margin: 0 -12px;
  }

  .contact-item i {
    font-size: 1.2rem;
  }

  .working-hours {
    padding: 24px;
  }

  .working-hours h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 14px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}

