/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #222;
  margin-top: 0;
}

p {
  margin-bottom: 15px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: #ff5a5f;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e04e52;
}

.btn-secondary {
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
}

.btn-full {
  width: 100%;
  display: block;
}

/* Top Bar */
.top-bar {
  background-color: #222;
  color: #fff;
  padding: 10px 0;
  font-size: 0.9em;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info span {
  margin-right: 20px;
}

/* Header */
.header {
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8em;
  font-weight: 800;
  color: #333;
  display: flex;
  align-items: center;
}

.logo-icon {
  color: #ff5a5f;
  margin-right: 8px;
}

.logo span {
  color: #ff5a5f;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-link {
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ff5a5f;
  text-decoration: none;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #ff5a5f;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin-bottom: 4px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Page Transitions */
.page {
  display: none;
  animation: fadeInUp 0.8s ease-out forwards;
}

.page.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Property Listing Page */
.property-hero {
  background-color: #f0f0f0;
  padding: 40px 0;
  text-align: center;
}

.property-title {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #222;
}

.property-meta {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 30px;
}

.property-meta span {
  margin: 0 10px;
}

.property-meta i {
  color: #ff5a5f;
  margin-right: 5px;
}

.image-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-image-container {
  grid-column: 1 / 2;
  height: 450px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumbnail-gallery {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  height: 450px;
  overflow-y: auto;
}

.thumbnail-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
  opacity: 1;
  border-color: #ff5a5f;
}

.show-all-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.show-all-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.property-details-section {
  padding: 60px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.property-info-left {
  padding-right: 30px;
}

.property-overview .subtitle {
  font-size: 1.8em;
  color: #222;
  margin-bottom: 15px;
}

.property-overview .description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

.section-heading {
  font-size: 1.6em;
  color: #222;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* Amenities Section */
.property-amenities-section {
  margin-bottom: 40px;
}

.categorized-list-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.category-block {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-block h4 {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 5px;
}

.category-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-block li {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 8px;
}

.category-block li i {
  color: #ff5a5f;
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

.show-more-btn {
  background: none;
  border: none;
  color: #007bff;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 1em;
  transition: color 0.3s ease;
}

.show-more-btn:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* NEW SPACES SECTION - Modern Design */
.property-areas-section {
  margin-bottom: 40px;
}

.spaces-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.space-preview-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.space-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.space-images-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.space-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.space-preview-card:hover .space-main-image {
  transform: scale(1.05);
}

.space-images-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.space-mini-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.space-preview-content {
  padding: 20px;
}

.space-preview-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.space-preview-description {
  color: #666;
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 15px;
}

.space-features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-tag {
  background: linear-gradient(135deg, #ff5a5f, #ff385c);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 500;
}

.spaces-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.spaces-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.spaces-btn i {
  font-size: 1.2em;
}

/* Reviews Section */
.property-reviews {
  margin-bottom: 40px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.overall-rating {
  font-size: 1.5em;
  font-weight: 700;
  color: #222;
  margin-right: 10px;
}

.overall-rating i {
  color: #ff5a5f;
  margin-right: 5px;
}

.review-count {
  font-size: 1.1em;
  color: #666;
}

.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.review-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff5a5f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: 600;
  margin-right: 15px;
}

.reviewer-name {
  font-weight: 600;
  color: #333;
  font-size: 1.1em;
}

.review-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.review-date {
  font-size: 0.9em;
  color: #888;
  text-align: right;
}

/* Location Map Section */
.property-location-map {
  margin-bottom: 40px;
}

.map-description {
  color: #555;
  margin-bottom: 20px;
}

.map-placeholder {
  background-color: #e9ecef;
  height: 300px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6c757d;
  font-size: 1.2em;
  overflow: hidden;
}

/* Calendar Section */
.inline-calendar {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  justify-content: center;
}

/* Flatpickr overrides */
.flatpickr-calendar {
  box-shadow: none !important;
  border: none !important;
  width: auto !important;
  max-width: 100%;
}

.flatpickr-months .flatpickr-month {
  background-color: #fff;
  color: #333;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: #ff5a5f !important;
  border-color: #ff5a5f !important;
  color: #fff !important;
}

.flatpickr-day.inRange {
  background: #ffebeb !important;
  border-color: #ffebeb !important;
  color: #333 !important;
}

.flatpickr-day.today {
  border-color: #ff5a5f !important;
  color: #ff5a5f !important;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: #ccc !important;
  background: #f9f9f9 !important;
  cursor: not-allowed;
}

.calendar-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.clear-dates-link {
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.clear-dates-link:hover {
  color: #222;
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.booking-summary-card {
  padding: 25px;
  border-radius: 10px;
  background-color: #fff;
}

.price-display {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.price-display .price {
  font-size: 1.8em;
  font-weight: 700;
  color: #222;
  margin-right: 5px;
}

.price-display .per-night {
  font-size: 1em;
  color: #555;
}

.rating-summary {
  margin-bottom: 20px;
  color: #666;
  font-size: 0.95em;
}

.rating-summary .stars {
  color: #ff5a5f;
  font-weight: 600;
  margin-right: 5px;
}

.booking-form .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.booking-form .form-group {
  flex: 1;
  margin-bottom: 0;
  position: relative;
}

.booking-form label {
  display: block;
  font-size: 0.8em;
  font-weight: 600;
  color: #888;
  margin-bottom: 5px;
}

.booking-form input[type="text"],
.booking-form input[type="email"] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #fff;
}

.booking-form input[type="text"]:focus,
.booking-form input[type="email"]:focus {
  outline: none;
  border-color: #ff5a5f;
  box-shadow: 0 0 0 2px rgba(255, 90, 95, 0.2);
}

/* Guests Dropdown */
.guests-dropdown-container {
  position: relative;
  margin-bottom: 20px;
}

.guests-dropdown-display-btn {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1em;
  color: #333;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.guests-dropdown-display-btn:focus {
  outline: none;
  border-color: #ff5a5f;
  box-shadow: 0 0 0 2px rgba(255, 90, 95, 0.2);
}

.guests-dropdown-display-btn .guests-dropdown-arrow {
  transition: transform 0.3s ease;
}

.guests-dropdown-display-btn.active .guests-dropdown-arrow {
  transform: rotate(180deg);
}

.guests-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 10;
  margin-top: 10px;
  animation: fadeIn 0.3s ease-out forwards;
  max-height: 300px;
  overflow-y: auto;
  box-sizing: border-box;
  height: auto;
}

.guests-dropdown-content.active {
  display: block;
}

.guest-counter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.guest-counter-item:last-of-type {
  border-bottom: none;
}

.guest-details {
  flex-grow: 1;
}

.guest-type {
  font-weight: 600;
  color: #333;
  display: block;
}

.guest-description {
  font-size: 0.85em;
  color: #777;
}

.counter-controls {
  display: flex;
  align-items: center;
}

.counter-button {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 0.9em;
  color: #555;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.counter-button:hover:not(:disabled) {
  background-color: #f0f0f0;
  border-color: #999;
}

.counter-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.counter-value {
  margin: 0 15px;
  font-size: 1.1em;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.guest-info-text {
  font-size: 0.85em;
  color: #777;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.guest-info-text #maxGuestsCapacity {
  font-weight: 600;
  color: #333;
}

.close-guest-dropdown-btn {
  background: none;
  border: none;
  color: #007bff;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 1em;
  margin-top: 15px;
  display: block;
  width: 100%;
  text-align: center;
  transition: color 0.3s ease;
}

.close-guest-dropdown-btn:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Services Selection in Booking Form */
.services-selection {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  background: #f8fafc;
}

.services-selection label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
  display: block;
  font-size: 0.8em;
}

.services-summary {
  background: #fff;
  border-radius: 6px;
  padding: 12px;
  border: 1px solid #e2e8f0;
}

.services-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-info span {
  color: #718096;
  font-size: 0.9rem;
}

.view-services-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.view-services-link:hover {
  color: #5a6fd8;
  text-decoration: underline;
}

.selected-services-list {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}

.selected-service-item-booking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: #4a5568;
  font-size: 0.9rem;
}

.service-remove-btn-booking {
  color: #e53e3e;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.service-remove-btn-booking:hover {
  background: rgba(229, 62, 62, 0.1);
}

/* Price Breakdown */
.price-breakdown {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-bottom: 15px;
}

.price-breakdown .price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #555;
}

.price-breakdown .services-section {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.price-breakdown .services-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.price-breakdown .services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-breakdown .service-item {
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  font-size: 0.9em;
  color: #555;
}

.total-price-display {
  display: flex;
  justify-content: space-between;
  font-size: 1.2em;
  font-weight: 700;
  color: #222;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-bottom: 20px;
}

.report-ad-link {
  display: block;
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-top: 20px;
}

.report-ad-link i {
  margin-right: 5px;
}

/* SERVICES PAGE - NEW MODERN DESIGN */
.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.services-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.services-main {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
}

.service-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  line-height: 1.3;
}

.service-description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 25px;
  padding: 12px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  display: inline-block;
  border: 2px solid rgba(102, 126, 234, 0.2);
}

.service-price.free {
  color: #48bb78;
  background: rgba(72, 187, 120, 0.1);
  border-color: rgba(72, 187, 120, 0.2);
}

.service-actions {
  display: flex;
  gap: 12px;
}

.add-service-btn,
.remove-service-btn {
  flex: 1;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.add-service-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.add-service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.remove-service-btn {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.remove-service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.add-service-btn i,
.remove-service-btn i {
  font-size: 1.1em;
}

/* Modals */
.modal {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal.is-active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background-color: #fefefe;
  padding: 30px;
  border: 1px solid #888;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
  animation: slideInTop 0.4s ease-out forwards;
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 2em;
  margin-bottom: 25px;
  color: #222;
  text-align: center;
  flex-shrink: 0;
}

.modal .close {
  color: #aaa;
  font-size: 35px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 25px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2001;
}

.modal .close:hover,
.modal .close:focus {
  color: #333;
  text-decoration: none;
}

.modal-section {
  margin-bottom: 40px;
  flex-shrink: 0;
}

.modal-section .section-heading {
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
  border-bottom: 2px solid #ff5a5f;
  padding-bottom: 10px;
}

/* Spaces Modal Grid - NEW DESIGN */
.spaces-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  flex-grow: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 15px;
  padding-bottom: 15px;
  box-sizing: border-box;
}

.space-modal-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.space-modal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.space-modal-images {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.space-modal-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.space-modal-card:hover .space-modal-main-image {
  transform: scale(1.05);
}

.space-modal-thumbnails {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.space-modal-thumb {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.space-modal-thumb:hover {
  transform: scale(1.1);
}

.space-modal-content {
  padding: 25px;
}

.space-modal-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.space-modal-description {
  color: #666;
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.space-modal-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}

.space-modal-features li {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
}

.space-modal-features li i {
  color: #ff5a5f;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Photo Tour Grid */
.photo-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.photo-tour-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.photo-tour-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.photo-tour-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.photo-tour-label {
  padding: 12px;
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
  color: #333;
  background-color: #f8f9fa;
}

/* All Photos Grid */
.all-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.all-photo-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.all-photo-item:hover {
  transform: scale(1.02);
}

.all-photo-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* All Spaces Details Grid */
.all-spaces-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.area-detail-card-modal {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-detail-card-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.area-detail-images-modal {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.area-detail-main-image-modal {
  width: 100%;
  height: 100%;
}

.area-detail-main-image-modal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.area-detail-card-modal:hover .area-detail-main-image-modal img {
  transform: scale(1.05);
}

.area-detail-secondary-images-modal {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.area-detail-secondary-image-modal {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.area-detail-secondary-image-modal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-detail-header-modal {
  padding: 20px 20px 0 20px;
}

.area-detail-title-modal {
  font-size: 1.4em;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.area-detail-description-modal {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.area-detail-features-modal {
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.area-features-list-modal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}

.area-features-list-modal li {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
}

.area-features-list-modal li i {
  color: #ff5a5f;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.categorized-list-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  flex-grow: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 15px;
  padding-bottom: 15px;
  box-sizing: border-box;
}

.category-block-full {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-block-full h4 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.category-block-full ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-block-full li {
  font-size: 1em;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.category-block-full li i {
  color: #ff5a5f;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInTop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
  background-color: #f0f2f5;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.contact-form-side,
.contact-info-side {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.contact-form-side {
  background-color: #fff;
}

.contact-info-side {
  background-image: linear-gradient(135deg, #ff5a5f 0%, #fa709a 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-form-title {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.contact-form-subtitle {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 30px;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.success-message.show {
  display: block;
  opacity: 1;
}

.modern-form .form-row-modern {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.modern-form .form-group-modern {
  flex: 1;
  margin-bottom: 0;
}

.modern-form .form-label-modern {
  display: block;
  font-size: 0.9em;
  color: #555;
  margin-bottom: 8px;
  font-weight: 600;
}

.modern-form .form-input-modern {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modern-form .form-input-modern:focus {
  outline: none;
  border-color: #ff5a5f;
  box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.2);
}

.modern-form .form-textarea-modern {
  min-height: 120px;
  resize: vertical;
}

.submit-btn-modern {
  background-color: #ff5a5f;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: auto;
  display: inline-block;
}

.submit-btn-modern:hover {
  background-color: #e04e52;
  transform: translateY(-2px);
}

.submit-btn-modern:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.contact-info-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info-subtitle {
  font-size: 1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-icon {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 1.1em;
  margin-bottom: 5px;
  color: #fff;
}

.contact-info-details p {
  font-size: 0.95em;
  opacity: 0.9;
  margin: 0;
}

/* Notifications */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 350px;
  z-index: 3000;
  animation: slideInRight 0.3s ease-out forwards;
}

.notification-success {
  background-color: #28a745;
}

.notification-error {
  background-color: #dc3545;
}

.notification-info {
  background-color: #17a2b8;
}

.notification-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.notification-message {
  margin-right: 15px;
  font-size: 0.95em;
}

.close-notification {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.close-notification:hover {
  opacity: 1;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Loading Spinner */
.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* Booking Success Modal */
.booking-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.booking-success-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.success-icon {
  font-size: 4rem;
  color: #48bb78;
  margin-bottom: 20px;
}

.booking-success-content h2 {
  color: #2d3748;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.booking-success-content p {
  color: #4a5568;
  margin-bottom: 15px;
  line-height: 1.6;
}

.booking-status-info {
  background: #f7fafc;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  text-align: left;
}

.booking-status-info h3 {
  color: #2d3748;
  margin-bottom: 15px;
  text-align: center;
}

.booking-status-info ul {
  list-style: none;
  padding: 0;
}

.booking-status-info li {
  padding: 8px 0;
  color: #4a5568;
  display: flex;
  align-items: center;
}

.tracking-section {
  margin: 25px 0;
}

.tracking-section h3 {
  color: #2d3748;
  margin-bottom: 15px;
}

.tracking-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tracking-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  text-decoration: none;
  color: white;
}

.close-success-modal {
  background: #667eea;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.close-success-modal:hover {
  background: #f482db;
  transform: translateY(-1px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .property-info-left {
    padding-right: 0;
  }

  .booking-sidebar {
    position: static;
    margin-top: 40px;
  }

  .image-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .main-image-container {
    height: 350px;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    grid-template-rows: auto;
    height: auto;
    overflow-y: visible;
  }

  .show-all-btn {
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form-side,
  .contact-info-side {
    padding: 30px;
  }

  .modern-form .form-row-modern {
    flex-direction: column;
    gap: 0;
  }

  .modern-form .form-group-modern {
    margin-bottom: 20px;
  }

  .spaces-preview-grid {
    grid-template-columns: 1fr;
  }

  .photo-tour-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-title {
    font-size: 2.5rem;
  }

  .services-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-info span {
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
  }

  .header-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    border-radius: 8px;
    margin-top: 15px;
  }

  .nav-links.mobile-active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-link {
    padding: 10px 0;
    display: block;
  }

  .nav-link.active::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 25px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .property-title {
    font-size: 2em;
  }

  .property-meta {
    font-size: 0.9em;
  }

  .property-overview .subtitle {
    font-size: 1.5em;
  }

  .section-heading {
    font-size: 1.4em;
  }

  .review-cards-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    margin: 20px auto;
    padding: 20px;
  }

  .modal-title {
    font-size: 1.8em;
  }

  .categorized-list-full,
  .all-photos-grid,
  .all-spaces-details-grid,
  .spaces-modal-grid {
    grid-template-columns: 1fr;
  }

  .photo-tour-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .spaces-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-hero {
    padding: 60px 0;
  }

  .services-hero-title {
    font-size: 2rem;
  }

  .services-main {
    padding: 60px 0;
  }

  .service-card {
    padding: 25px;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .service-actions {
    flex-direction: column;
  }

  .booking-success-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .success-icon {
    font-size: 3rem;
  }

  .booking-success-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .property-title {
    font-size: 1.8em;
  }

  .main-image-container {
    height: 250px;
  }

  .booking-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .booking-form .form-group {
    margin-bottom: 15px;
  }

  .booking-form .form-group:last-child {
    margin-bottom: 0;
  }

  .price-display .price {
    font-size: 1.5em;
  }

  .total-price-display {
    font-size: 1em;
  }

  .submit-btn-modern {
    width: 100%;
  }

  .photo-tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .space-preview-title {
    font-size: 1.1em;
  }

  .services-hero-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 20px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-price {
    font-size: 1.2rem;
  }
}

/* Animation for service cards */
@keyframes serviceCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: serviceCardFadeIn 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Loading state for service buttons */
.add-service-btn.loading,
.remove-service-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.add-service-btn.loading::after,
.remove-service-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

/* Success state for added services */
.service-card.service-added {
  border-color: #48bb78;
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
}

.service-card.service-added::before {
  background: linear-gradient(90deg, #48bb78 0%, #38a169 100%);
}

/* Enhanced notification styles for services */
.notification.service-added {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
}

.notification.service-removed {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
/* Added styles for house rules section */
.property-rules-section {
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.rules-content {
  display: grid;
  gap: 1.5rem;
}

.rules-category h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.25rem;
  display: inline-block;
}

.rules-category ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.rules-category li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.rules-category li::before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.security-info {
  background: #fff3cd;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin-top: 0.5rem;
}

.security-info h5 {
  color: #856404;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.security-info p {
  color: #856404;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Added styles for additional services note */
.additional-services-note {
  margin-top: 2rem;
}

.note-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.note-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.note-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.note-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-link-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.phone-btn {
  background: rgba(46, 204, 113, 0.2);
}

.phone-btn:hover {
  background: rgba(46, 204, 113, 0.3);
}
/* Added styles for house rules section */
.property-rules-section {
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.rules-content {
  display: grid;
  gap: 1.5rem;
}

.rules-category h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.25rem;
  display: inline-block;
}

.rules-category ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.rules-category li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.rules-category li::before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.security-info {
  background: #fff3cd;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin-top: 0.5rem;
}

.security-info h5 {
  color: #856404;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.security-info p {
  color: #856404;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Added styles for additional services note */
.additional-services-note {
  margin-top: 2rem;
}

.note-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.note-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.note-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.note-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Adding modern services page styles */
.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.services-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.services-main {
  padding: 4rem 0;
  background: #f8f9fa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.main-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.modern-service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.modern-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
}

.service-unit {
  color: #6c757d;
  font-size: 0.9rem;
}

.service-select-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.service-select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.service-select-btn.selected {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.additional-services-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.additional-services-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.additional-services-content {
  position: relative;
  z-index: 1;
}

.additional-services-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.additional-services-icon {
  font-size: 3rem;
  opacity: 0.9;
}

.additional-services-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.additional-services-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-option-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-option-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-option-btn i {
  font-size: 1.2rem;
}

.email-btn:hover {
  background: rgba(52, 152, 219, 0.3);
}

.phone-btn:hover {
  background: rgba(46, 204, 113, 0.3);
}

/* Responsive design for services */
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2rem;
  }

  .main-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modern-service-card {
    padding: 1.5rem;
  }

  .additional-services-card {
    padding: 2rem;
  }

  .additional-services-title {
    font-size: 1.5rem;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-option-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


