/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.4;
}

.element-default {
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-line-1 {
  font-family: 'Caprasimo', serif;
  font-size: 24px;
  font-weight: 400;
  color: #2c2825;
  line-height: 1;
}

.logo-line-2 {
  font-family: 'Caprasimo', serif;
  font-size: 20px;
  font-weight: 400;
  color: #2c2825;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.login-btn {
  background-color: #2c2825;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #2c2825;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #666666;
}

/* Main Content */
.main-content {
  margin-top: 82px; /* Account for fixed navigation */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.main-title {
  font-family: 'Caprasimo', serif;
  font-size: 80px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-image {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #000000;
}

/* Section Styles */
section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-image {
  flex-shrink: 0;
}

.section-image img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.section-text {
  flex: 1;
  text-align: center;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #575757;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.section-description {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #171615;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: #ffc800;
  color: #2c2825;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e6b400;
}



/* Work With Us Section */
.work-with-us {
  text-align: center;
}

.work-with-us .section-content {
  flex-direction: column;
  gap: 30px;
}

.work-with-us .section-description {
  font-size: 40px;
  max-width: 600px;
}

/* Footer Image Section */
.footer-image {
  position: relative;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.image-overlay {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  color: #ffffff;
}

.location {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.brand {
  font-family: 'Caprasimo', serif;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.contact {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.instagram-link:hover {
  color: #ffc800;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .logo-line-1 {
    font-size: 20px;
  }
  
  .logo-line-2 {
    font-size: 16px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .main-title {
    font-size: 50px;
  }
  
  .hero-image img {
    height: 300px;
  }
  
  .section-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .section-description {
    font-size: 28px;
  }
  
  .what-we-do .section-description,
  .work-with-us .section-description {
    font-size: 28px;
  }
  
  .brand {
    font-size: 60px;
  }
  
  .location,
  .contact {
    font-size: 16px;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 40px 20px 30px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 15px;
  }
  
  .login-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .nav-link {
    font-size: 12px;
  }
  
  .main-title {
    font-size: 36px;
  }
  
  .hero-image img {
    height: 200px;
  }
  
  .section-description {
    font-size: 24px;
  }
  
  .what-we-do .section-description,
  .work-with-us .section-description {
    font-size: 24px;
  }
  
  .brand {
    font-size: 40px;
  }
  
  .image-overlay {
    padding: 0 20px;
  }
}

/* About Page Styles */
.about-header {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-header-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px; /* Further reduced from 30px to 20px */
  max-width: 600px; /* Further reduced from 900px to 800px */
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #171615;
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #575757;
  line-height: 1.4;
}

.about-image {
  flex-shrink: 0;
  position: relative;
}

.about-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.owner-info {
  margin-top: 20px;
  text-align: center;
}

.owner-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #171615;
  margin-bottom: 5px;
}

.owner-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #575757;
}

.coffee-journey {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-content {
  max-width: 1000px;
  margin: 0 auto;
}

.journey-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #171615;
  line-height: 1.3;
  margin-bottom: 60px;
  text-align: left;
}

.journey-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.journey-text {
  max-width: 800px;
}

.journey-text p {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #171615;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.park-section {
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.park-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.final-text {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.final-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-content p {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #171615;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.final-content .cta-button {
  margin-top: 40px;
}

/* Active navigation state */
.nav-link.active {
  color: #ffc800;
  font-weight: 700;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-header-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-title {
    font-size: 36px;
  }
  
  .about-subtitle {
    font-size: 20px;
  }
  
  .about-image img {
    width: 250px;
    height: 250px;
  }
  
  .journey-headline {
    font-size: 28px;
  }
  
  .journey-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-image img {
    height: 200px;
  }
  
  .journey-text p,
  .final-content p {
    font-size: 18px;
  }
  
  .park-image img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-header,
  .coffee-journey,
  .final-text {
    padding: 60px 20px;
  }
  
  .park-section {
    padding: 0 20px 60px;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-subtitle {
    font-size: 18px;
  }
  
  .about-image img {
    width: 200px;
    height: 200px;
  }
  
  .journey-headline {
    font-size: 24px;
  }
  
  .journey-text p,
  .final-content p {
    font-size: 16px;
  }
  
  .park-image img {
    height: 250px;
  }
}

/* Login Page Styles */
.login-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-title {
  font-family: 'Caprasimo', serif;
  font-size: 48px;
  font-weight: 400;
  color: #171615;
  margin-bottom: 10px;
  line-height: 1.2;
}

.login-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 1.4;
}

.auth-forms {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.auth-form {
  transition: opacity 0.3s ease;
}

.auth-form.hidden {
  display: none;
}

.form-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #171615;
  margin-bottom: 30px;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #171615;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #171615;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ffc800;
}

.auth-button {
  background-color: #ffc800;
  color: #2c2825;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.auth-button:hover {
  background-color: #e6b400;
}

.form-links {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #575757;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-link:hover {
  color: #ffc800;
}

.message-container {
  margin-top: 20px;
}

.message {
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.hidden {
  display: none;
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
  .login-section {
    padding: 60px 20px;
  }
  
  .login-title {
    font-size: 36px;
  }
  
  .login-subtitle {
    font-size: 16px;
  }
  
  .auth-forms {
    padding: 30px 20px;
  }
  
  .form-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 40px 20px;
  }
  
  .login-title {
    font-size: 28px;
  }
  
  .login-subtitle {
    font-size: 14px;
  }
  
  .auth-forms {
    padding: 20px 15px;
  }
  
  .form-title {
    font-size: 18px;
  }
  
  .form-group input {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .auth-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Onboarding Page Styles */
.onboarding-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onboarding-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.onboarding-header {
  text-align: center;
  margin-bottom: 40px;
}

.onboarding-title {
  font-family: 'Caprasimo', serif;
  font-size: 48px;
  font-weight: 400;
  color: #171615;
  margin-bottom: 10px;
  line-height: 1.2;
}

.onboarding-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 1.4;
}

.onboarding-form-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.onboarding-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.onboarding-button {
  background-color: #ffc800;
  color: #2c2825;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.onboarding-button:hover {
  background-color: #e6b400;
}

/* Dashboard Page Styles */
.dashboard-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-container {
  width: 100%;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 60px;
}

.dashboard-title {
  font-family: 'Caprasimo', serif;
  font-size: 48px;
  font-weight: 400;
  color: #171615;
  margin-bottom: 10px;
  line-height: 1.2;
}

.dashboard-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 1.4;
}

.dashboard-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.account-info {
  flex: 1;
  max-width: 500px;
}

.service-requests {
  flex: 1;
  max-width: 600px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #171615;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.info-item label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #575757;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 120px;
}

.info-item span {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #171615;
  flex: 1;
  margin: 0 20px;
}

.edit-btn {
  background-color: #ffc800;
  color: #2c2825;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.edit-btn:hover {
  background-color: #e6b400;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card.selected {
  border: 2px solid #ffc800;
  background-color: #fffbf0;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 200, 0, 0.3);
}

.service-submit-section {
  margin-top: 20px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.selected-service-info {
  margin-bottom: 15px;
}

.selected-service-info h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2c2825;
  margin: 0;
}

.submit-service-btn {
  background-color: #ffc800;
  color: #2c2825;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-service-btn:hover {
  background-color: #e6b800;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #171615;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card p {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #575757;
  line-height: 1.4;
}

.recent-requests {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.subsection-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #171615;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.requests-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.request-item {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
}

.request-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.request-header h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #171615;
}

.request-date {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #575757;
}

.request-status {
  display: flex;
  justify-content: flex-end;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-badge.pending {
  background-color: #fff3cd;
  color: #856404;
}

.status-badge.in-progress {
  background-color: #cce5ff;
  color: #004085;
}

.status-badge.completed {
  background-color: #d4edda;
  color: #155724;
}

.notes-indicator {
  margin-left: 8px;
  font-size: 14px;
  cursor: help;
}

.no-requests {
  text-align: center;
  padding: 40px 20px;
  color: #575757;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.loading {
  text-align: center;
  padding: 20px;
  color: #575757;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-overlay.hidden {
  display: none;
}

.modal {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #171615;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #575757;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: #f0f0f0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}

.cancel-btn {
  background-color: #f8f9fa;
  color: #575757;
  border: 1px solid #e0e0e0;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cancel-btn:hover {
  background-color: #e9ecef;
}

.save-btn {
  background-color: #ffc800;
  color: #2c2825;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.save-btn:hover {
  background-color: #e6b400;
}

/* Logout button */
.logout-btn {
  background-color: #2c2825;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* Responsive Design for Onboarding and Dashboard */
@media (max-width: 768px) {
  .onboarding-section,
  .dashboard-section {
    padding: 60px 20px;
  }
  
  .onboarding-title,
  .dashboard-title {
    font-size: 36px;
  }
  
  .onboarding-subtitle,
  .dashboard-subtitle {
    font-size: 16px;
  }
  
  .onboarding-form-container {
    padding: 30px 20px;
  }
  
  .dashboard-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .account-info,
  .service-requests {
    max-width: 100%;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .edit-btn {
    align-self: flex-end;
  }
  
  .modal {
    padding: 20px;
    width: 95%;
  }
}

@media (max-width: 480px) {
  .onboarding-section,
  .dashboard-section {
    padding: 40px 20px;
  }
  
  .onboarding-title,
  .dashboard-title {
    font-size: 28px;
  }
  
  .onboarding-subtitle,
  .dashboard-subtitle {
    font-size: 14px;
  }
  
  .onboarding-form-container {
    padding: 20px 15px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .info-card,
  .recent-requests {
    padding: 20px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .modal {
    padding: 15px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
}

/* Contact Page Styles */
.contact-header {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-text {
  text-align: center;
}

.contact-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #171615;
  margin-bottom: 10px;
  line-height: 1.2;
}

.contact-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #575757;
  line-height: 1.4;
}

.announcement-section {
  padding: 80px 40px;
  background-color: #f8f8f8;
}

.announcement-container {
  max-width: 800px;
  margin: 0 auto;
}

.announcement-content {
  text-align: center;
}

.announcement-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #171615;
  margin-bottom: 30px;
  line-height: 1.3;
}

.announcement-message {
  max-width: 600px;
  margin: 0 auto;
}

.announcement-message p {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 1.6;
  margin-bottom: 30px;
}

.announcement-cta {
  margin-top: 30px;
}

.contact-form-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-content {
  text-align: center;
}

.contact-form-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #171615;
  margin-bottom: 15px;
  line-height: 1.3;
}

.contact-form-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #575757;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

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

.contact-form .form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #171615;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #171615;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #ffc800;
}

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

.contact-button {
  background-color: #2c2825;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.contact-button:hover {
  background-color: #1a1a1a;
}

/* Contact page responsive styles */
@media (max-width: 768px) {
  .contact-header {
    padding: 60px 20px;
  }
  
  .contact-title {
    font-size: 36px;
  }
  
  .contact-subtitle {
    font-size: 20px;
  }
  
  .announcement-section {
    padding: 60px 20px;
  }
  
  .announcement-title {
    font-size: 28px;
  }
  
  .announcement-message p {
    font-size: 16px;
  }
  
  .contact-form-section {
    padding: 60px 20px;
  }
  
  .contact-form-title {
    font-size: 28px;
  }
  
  .contact-form-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 40px 20px;
  }
  
  .contact-title {
    font-size: 28px;
  }
  
  .contact-subtitle {
    font-size: 18px;
  }
  
  .announcement-section {
    padding: 40px 20px;
  }
  
  .announcement-title {
    font-size: 24px;
  }
  
  .announcement-message p {
    font-size: 15px;
  }
  
  .contact-form-section {
    padding: 40px 20px;
  }
  
  .contact-form-title {
    font-size: 24px;
  }
  
  .contact-form-subtitle {
    font-size: 15px;
  }
  
  .contact-form .form-group input,
  .contact-form .form-group textarea {
    font-size: 14px;
  }
}

/* Admin Dashboard Styles */
.admin-section {
  padding: 120px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.admin-container {
  width: 100%;
}

.admin-header {
  text-align: center;
  margin-bottom: 40px;
}

.admin-title {
  font-family: 'Caprasimo', serif;
  font-size: 48px;
  font-weight: 400;
  color: #2c2825;
  margin-bottom: 10px;
}

.admin-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: #666666;
  font-weight: 400;
}

.admin-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.admin-badge {
  background-color: #2c2825;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-email {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #666666;
}

/* Filters Section */
.filters-section {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.filter-controls {
  display: flex;
  gap: 20px;
  align-items: end;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.filter-group label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #2c2825;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-group select {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  background-color: #ffffff;
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: #ffc800;
  box-shadow: 0 0 0 2px rgba(255, 200, 0, 0.2);
}

.refresh-btn {
  background-color: #ffc800;
  color: #2c2825;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.refresh-btn:hover {
  background-color: #e6b800;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #666666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-card span {
  font-family: 'Caprasimo', serif;
  font-size: 36px;
  font-weight: 400;
  color: #2c2825;
}

/* Requests Table Section */
.requests-table-section {
  margin-bottom: 60px;
}

.table-container {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.requests-table {
  width: 100%;
  border-collapse: collapse;
}

.requests-table th {
  background-color: #f8f8f8;
  padding: 16px 20px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #2c2825;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #e0e0e0;
}

.requests-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #2c2825;
}

.requests-table tr:last-child td {
  border-bottom: none;
}

.requests-table tr:hover {
  background-color: #f8f8f8;
}

.request-row.pending {
  border-left: 4px solid #ffc800;
}

.request-row.in-progress {
  border-left: 4px solid #007bff;
}

.request-row.completed {
  border-left: 4px solid #28a745;
}

.action-btn {
  background-color: #2c2825;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.no-data {
  text-align: center;
  color: #666666;
  font-style: italic;
  padding: 40px 20px;
}

/* Business Profiles Section */
.businesses-section {
  margin-bottom: 40px;
}

.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.business-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.business-card h3 {
  font-family: 'Caprasimo', serif;
  font-size: 24px;
  font-weight: 400;
  color: #2c2825;
  margin-bottom: 16px;
}

.business-info p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #2c2825;
  margin-bottom: 8px;
  line-height: 1.5;
}

.business-info strong {
  font-weight: 600;
  color: #666666;
}

/* Status Modal Styles */
#status-modal .modal {
  max-width: 500px;
}

#status-modal .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  background-color: #ffffff;
}

#status-modal .form-group select:focus {
  outline: none;
  border-color: #ffc800;
  box-shadow: 0 0 0 2px rgba(255, 200, 0, 0.2);
}

#status-modal .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
}

#status-modal .form-group textarea:focus {
  outline: none;
  border-color: #ffc800;
  box-shadow: 0 0 0 2px rgba(255, 200, 0, 0.2);
}

/* Responsive Design for Admin */
@media (max-width: 768px) {
  .admin-section {
    padding: 100px 20px 60px;
  }

  .admin-title {
    font-size: 36px;
  }

  .admin-subtitle {
    font-size: 16px;
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    min-width: auto;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .requests-table {
    font-size: 12px;
  }

  .requests-table th,
  .requests-table td {
    padding: 12px 8px;
  }

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

  .business-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .admin-section {
    padding: 80px 15px 40px;
  }

  .admin-title {
    font-size: 28px;
  }

  .admin-subtitle {
    font-size: 14px;
  }

  .filters-section {
    padding: 20px;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-card span {
    font-size: 28px;
  }

  .requests-table {
    font-size: 11px;
  }

  .requests-table th,
  .requests-table td {
    padding: 8px 4px;
  }

  .action-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .business-card {
    padding: 16px;
  }

  .business-card h3 {
    font-size: 20px;
  }
} 