/* Landlord Services - Custom Styles */

:root {
  --primary-blue: #2563EB;
  --primary-green: #10B981;
  --bg-white: #FFFFFF;
  --bg-light-gray: #F9FAFB;
  --text-dark: #1F2937;
  --text-gray: #6B7280;
  --border-gray: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --border-radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-light-gray);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header / Navigation */
.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1E40AF 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

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

.btn {
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--bg-light-gray);
  transform: translateY(-2px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* How It Works */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Service Details Page */
.service-detail-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.service-detail-header {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.service-detail-header .service-icon {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-detail-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-rating {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: #FBBF24;
  margin-bottom: 1rem;
}

.service-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.service-detail-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.service-detail-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.service-detail-content h2:first-child {
  margin-top: 0;
}

.service-detail-content ul, .service-detail-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-content li {
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.service-detail-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.sticky-booking-btn {
  position: sticky;
  bottom: 0;
  background-color: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Booking Form */
.booking-form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.booking-form {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-group input[readonly] {
  background-color: var(--bg-light-gray);
  cursor: not-allowed;
}

.required {
  color: #EF4444;
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

/* Confirmation Page */
.confirmation-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.confirmation-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.confirmation-icon {
  font-size: 4rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.confirmation-card h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.confirmation-card p {
  color: var(--text-gray);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.booking-summary {
  background-color: var(--bg-light-gray);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.booking-summary h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-gray);
}

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

.summary-label {
  font-weight: 600;
  color: var(--text-dark);
}

.summary-value {
  color: var(--text-gray);
}

/* Contact Page */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-info {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--bg-light-gray);
  border-radius: 12px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.contact-details h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.contact-details p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.copy-btn {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  margin-left: auto;
}

.copy-btn:hover {
  background-color: #1E40AF;
}

.copy-btn.copied {
  background-color: var(--primary-green);
}

/* Privacy Policy Page */
.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 4rem;
  box-shadow: var(--shadow-md);
}

/* Privacy Header */
.privacy-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--primary-blue);
  margin-bottom: 3rem;
}

.privacy-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-blue);
  text-align: center;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-style: italic;
}

/* Privacy Intro */
.privacy-intro {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  margin-bottom: 3rem;
}

.privacy-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

/* Privacy Sections */
.privacy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--bg-light-gray);
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
}

.privacy-section.highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
  border-left: 4px solid var(--primary-green);
}

.privacy-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
}

.privacy-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  padding-left: 1rem;
  border-left: 3px solid var(--primary-green);
}

.section-content {
  margin-top: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.privacy-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.9;
  font-size: 1rem;
}

/* Lists */
.privacy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  line-height: 1.9;
}

.info-list li,
.purpose-list li,
.sharing-list li,
.security-list li,
.retention-list li,
.rights-list li {
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.purpose-list li,
.security-list li,
.rights-list li {
  font-size: 1.05rem;
}

/* Special Notes */
.note {
  background-color: var(--bg-white);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-blue);
  font-style: italic;
  color: var(--text-dark);
  margin-top: 1rem;
}

.important-note {
  background-color: #FEF3C7;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #F59E0B;
  color: var(--text-dark);
  font-weight: 600;
  margin: 1.5rem 0;
}

.guarantee {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  border: 2px solid var(--primary-green);
}

.disclaimer {
  background-color: var(--bg-white);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--text-gray);
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-top: 1rem;
}

.user-right {
  background-color: var(--bg-white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
  border-left: 4px solid var(--primary-green);
}

.contact-box {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-top: 1.5rem;
}

.contact-company {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.contact-email {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.email-link {
  color: var(--primary-blue);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--primary-green);
}

.contact-response {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-style: italic;
}

.contact-info {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

/* Privacy Footer */
.privacy-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-gray);
  text-align: center;
}

.effective-date {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.footer-note {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-style: italic;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Loading Spinner */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
  }

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

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

  .hero h1 {
    font-size: 2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

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

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

  .service-detail-header h1 {
    font-size: 2rem;
  }

  .service-detail-header,
  .service-detail-content,
  .booking-form,
  .contact-card,
  .privacy-content {
    padding: 2rem;
  }

  .confirmation-container,
  .booking-form-container,
  .contact-container,
  .privacy-container {
    padding: 1rem;
  }

  .privacy-content h1 {
    font-size: 2rem;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content h3 {
    font-size: 1.15rem;
  }

  .section-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .privacy-section {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

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

  .privacy-content h1 {
    font-size: 1.75rem;
  }

  .privacy-content h2 {
    font-size: 1.25rem;
  }

  .privacy-intro,
  .privacy-section {
    padding: 1rem;
  }

  .contact-box {
    padding: 1.5rem;
  }
}
