:root {
  --primary: #4A6FA5;
  --secondary: #3AB795;
  --accent: #FF7E5D;
  --light: #F7F9FA;
  --dark: #333333;
  --gray: #666666;
  --light-gray: #DDDDDD;
  --success: #2e7d32;
  --warning: #ed6c02;
  --error: #d32f2f;
  --premium: #FFD700;
  --premium-dark: #D4AF37;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.legal-notice {
  background-color: #fff8e1;
  border-left: 4px solid var(--warning);
  padding: 8px 12px;
  margin-bottom: 15px;
  font-size: 0.7rem;
  border-radius: 0 4px 4px 0;
  color: #5c3b00;
  line-height: 1.3;
}

.header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 20px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.sticky-header.hidden {
  transform: translateY(-100%);
}

.sticky-header .header-content {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 15px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s ease;
}

.sticky-header.compact .header-content {
  min-height: 80px;
  padding: 10px 20px;
}

.sticky-header.compact .welcome-message,
.sticky-header.compact .property-subtitle {
  display: none;
}

.sticky-header.compact .property-name {
  font-size: 1.4rem;
}

.sticky-header.compact .property-location {
  font-size: 0.8rem;
}

.welcome-message {
  font-size: 1.1rem;
  margin-bottom: 4px;
  opacity: 0.9;
  font-weight: 600;
}

.property-name {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
  line-height: 1.2;
}

.property-subtitle {
  font-size: 1.0rem;
  margin-bottom: 6px;
  opacity: 0.9;
  color: white;
  font-weight: 500;
}

.property-location {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.9;
  color: white;
  font-weight: 500;
}

.tabs {
  display: flex;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 25px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: var(--light);
  z-index: 10;
  padding-top: 10px;
}

.sticky-header .tabs {
  background-color: white;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 15px 25px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray);
  transition: all 0.3s ease;
}

.tab:hover {
  color: var(--primary);
}

.tab.active {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.tab.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tab-content {
  display: none;
  padding: 20px 0;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content.active {
  display: block;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}

.card-subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-content {
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.7;
}

.category-tag {
  display: inline-block;
  background: rgba(74, 111, 165, 0.1);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
}

.premium-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  border-radius: 0;
}

.premium-lock {
  font-size: 2rem;
  color: var(--premium-dark);
  margin-bottom: 10px;
}

.premium-text {
  font-weight: bold;
  color: var(--premium-dark);
  text-align: center;
  padding: 0 20px;
}

.upgrade-btn {
  margin-top: 15px;
  background: linear-gradient(135deg, var(--premium), var(--premium-dark));
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.butler-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.butler-content {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.butler-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.form-container {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
}

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

.btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn:hover {
  background-color: #3a5a8c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background-color: #1877F2;
}

.btn-secondary:hover {
  background-color: #166fe5;
}

.btn-accent {
  background-color: var(--accent);
}

.btn-accent:hover {
  background-color: #e66a4a;
}

.btn-premium {
  background: linear-gradient(135deg, var(--premium), var(--premium-dark));
  color: #000;
}

.btn-premium:hover {
  background: linear-gradient(135deg, var(--premium-dark), var(--premium));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-large {
  padding: 16px 35px;
  font-size: 1.1rem;
}

.btn:disabled {
  background-color: var(--light-gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.host-indicator {
  background: var(--secondary);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.admin-indicator {
  background: var(--accent);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.premium-indicator {
  background: linear-gradient(135deg, var(--premium), var(--premium-dark));
  color: #000;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--success);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toast.show {
  opacity: 1;
}

.toast.error {
  background-color: var(--error);
}

.toast.warning {
  background-color: var(--warning);
}

.toast.info {
  background-color: var(--primary);
}

.guide-content {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  animation: fadeIn 0.5s ease;
}

.public-guide-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.guide-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
}

.guide-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.guide-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-item p {
  color: var(--dark);
  line-height: 1.7;
}

.recommendation-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--primary);
  position: relative;
}

.recommendation-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.recommendation-author {
  font-weight: 600;
  color: var(--primary);
}

.recommendation-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-left: auto;
}

.recommendation-content {
  margin-bottom: 15px;
  line-height: 1.6;
}

.recommendation-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
}

.social-share {
  display: flex;
  gap: 12px;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--dark);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-share a:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: white;
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--gray);
}

.feedback-history-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 3px solid var(--secondary);
}

.feedback-rating {
  display: inline-flex;
  margin-top: 5px;
}

.feedback-star {
  color: #FFD700;
}

.history-panel {
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  background: #fdfdfd;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
}

.admin-section {
  background: #f9f2ff;
  border: 2px solid #8a2be2;
  border-radius: 12px;
  padding: 25px;
  margin-top: 40px;
}

.admin-tabs {
  display: flex;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 25px;
  overflow-x: auto;
}

.admin-tab {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray);
  transition: all 0.3s ease;
}

.admin-tab:hover {
  color: #8a2be2;
}

.admin-tab.active {
  border-bottom-color: #8a2be2;
  color: #8a2be2;
}

.admin-tab-content {
  display: none;
  padding: 20px 0;
}

.admin-tab-content.active {
  display: block;
}

.qr-code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.property-list {
  margin-top: 20px;
}

.property-item {
  background: white;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.property-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.modal-title {
  font-size: 1.5rem;
  color: var(--dark);
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
}

.host-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
}

.host-btn {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.host-btn.edit-btn {
  background: var(--secondary);
  color: white;
}

.host-btn.delete-btn {
  background: var(--error);
  color: white;
}

.host-edit-btn {
  background: var(--secondary);
  color: white;
}

.host-edit-btn:hover {
  background: #2e9b7d;
}

.host-delete-btn {
  background: var(--error);
  color: white;
}

.host-delete-btn:hover {
  background: #b71c1c;
}

.interactive-stars {
  display: flex;
  margin: 10px 0;
}

.interactive-star {
  color: var(--light-gray);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
  margin-right: 3px;
}

.interactive-star:hover,
.interactive-star.filled {
  color: #FFD700;
}

.category-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.category-btn {
  padding: 8px 16px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.vote-btn {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.vote-btn:disabled {
  background-color: var(--light-gray);
  cursor: not-allowed;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.pagination-btn {
  padding: 8px 16px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.location-share {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

footer {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  background: #f8f9fa;
  border-top: 1px solid #ddd;
}

footer .legal {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 10px;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-text {
  margin-top: 15px;
  color: var(--primary);
  font-weight: 600;
}

.content-placeholder {
  min-height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.spinner {
  width: 40px;
  height:40px;
  border: 5px solid var(--light-gray);
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
  padding: 8px;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1098;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: white;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  z-index: 1099;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 15px 0;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 15px;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 10px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--dark);
  min-height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-tab {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  border-bottom: 1px solid var(--light-gray);
  transition: background-color 0.3s;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.mobile-tab:hover {
  background-color: #f5f5f5;
  text-decoration: none;
  color: var(--dark);
}

.mobile-tab.active {
  color: var(--primary);
  border-left: 4px solid var(--primary);
  background-color: rgba(74, 111, 165, 0.05);
}

.mobile-tab i {
  margin-right: 10px;
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.premium-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--premium), var(--premium-dark));
  color: #000;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.location-editor {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.vote-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.vote-summary {
  font-size: 0.9rem;
  color: var(--gray);
}

.location-map {
  margin-top: 15px;
  height: 200px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.delete-feedback-btn {
  background: var(--error);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  margin-left: 10px;
}

.property-info-container {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.property-info-section {
  margin-bottom: 20px;
}

.property-info-section h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-info-section p {
  color: var(--dark);
  line-height: 1.7;
}

.property-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.property-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-feature i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}

.service-category {
  font-size: 0.9rem;
  color: var(--gray);
}

.service-location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}

.service-description {
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-actions {
  display: flex;
  gap: 10px;
}

.service-action-btn {
  padding: 8px 15px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.service-action-btn:hover {
  background-color: #3a5a8c;
}

.services-filter {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.provider-form-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.accordion {
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--light-gray);
}

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

.accordion-header {
  background-color: #f8f9fa;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #e9ecef;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content {
  padding: 20px;
  line-height: 1.7;
}

.accordion-item.active .accordion-header {
  background-color: #e3f2fd;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.calculator-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.calculator-result {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin-top: 20px;
}

.result-value {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

.result-label {
  font-size: 1rem;
  opacity: 0.9;
}

.analysis-chart {
  width: 100%;
  height: 300px;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-style: italic;
}

.social-links-container {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.social-link-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--dark);
}

.social-link-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-decoration: none;
  color: var(--dark);
}

.social-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
  color: white;
}

.social-link-text {
  font-weight: 600;
}

.social-link-description {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 3px;
}

.instagram-bg { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.airbnb-bg { background: #FF5A5F; }
.booking-bg { background: #003580; }
.tiktok-bg { background: #000000; }
.google-bg { background: #4285F4; }
.telegram-bg { background: #0088CC; }
.facebook-bg { background: #1877F2; }
.whatsapp-bg { background: #25D366; }
.twitter-bg { background: #1DA1F2; }
.linkedin-bg { background: #0077B5; }
.pinterest-bg { background: #E60023; }
.youtube-bg { background: #FF0000; }
.vrbo-bg { background: #00A0DC; }
.expedia-bg { background: #1B75BB; }
.tripadvisor-bg { background: #34E0A1; }
.homeaway-bg { background: #2A7BDE; }

.links-form-container {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

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

.guest-history-container {
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  margin-top: 20px;
}

.provider-negotiation-tools {
  margin-top: 30px;
}

.negotiation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.negotiation-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.affiliate-program {
  margin-top: 30px;
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.affiliate-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.affiliate-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.tripadvisor-icon {
  color: #34E0A1;
}

.social-link-item.tripadvisor-bg .social-link-icon {
  background: #34E0A1 !important;
}

@media (max-width: 768px) {
  .tabs {
    display: none !important;
  }
  
  .sticky-header .tabs {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header, .header-content, .sticky-header .header-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .welcome-message {
    font-size: 1.0rem;
  }
  
  .property-name {
    font-size: 1.7rem;
  }
  
  .property-subtitle {
    font-size: 0.9rem;
  }
  
  .property-location {
    font-size: 0.8rem;
  }
  
  .container {
    padding: 15px;
  }
  
  .cards-container, .public-guide-items, .services-container, .subscription-plans, .calculator-grid, .negotiation-cards, .links-form-grid, .social-links-grid {
    grid-template-columns: 1fr;
  }
  
  .tab {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .guide-item {
    padding: 15px;
  }
  
  .admin-tab {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .property-actions {
    flex-direction: column;
  }
  
  .modal-content {
    margin: 20px;
    padding: 20px;
  }

  .host-actions {
    position: relative;
    top: 0;
    right: 0;
    justify-content: flex-end;
    margin-bottom: 10px;
  }

  .category-selector {
    justify-content: center;
  }

  .category-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .vote-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .property-features {
    grid-template-columns: 1fr;
  }

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

  .service-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .service-actions {
    width: 100%;
    justify-content: space-between;
  }
        
  .form-container, .guide-content, .property-info-container {
    padding: 20px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .form-title {
    font-size: 1.3rem;
  }
  
  .affiliate-stats, .affiliate-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .property-name {
    font-size: 1.5rem;
  }
  
  .welcome-message {
    font-size: 0.9rem;
  }
  
  .property-subtitle {
    font-size: 0.8rem;
  }
  
  .property-location {
    font-size: 0.8rem;
  }
  
  .btn-large {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .card {
    padding: 20px;
  }
}