* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Header Actions (Search and Button) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search Container */
.search-container {
  display: flex;
  align-items: center;
}

.search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  width: 200px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: #d4af37;
  width: 220px;
}

.search-btn {
  background: #d4af37;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: -40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #c19b2c;
}

/* Book Appointment Button */
.btn-appointment {
  background-color: #d4af37;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-appointment:hover {
  background-color: #c19b2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu - Hidden by default */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.menu-toggle:hover {
  color: #d4af37;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .header-top {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .logo img {
    height: 50px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 15px;
  }

  .search-input {
    width: 150px;
  }

  .search-input:focus {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .header-top {
    position: relative;
  }

  .logo {
    flex: 1;
  }

  .menu-toggle {
    display: block;
    order: 2;
    margin-left: 15px;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 99;
    margin-top: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    margin-left: 0;
    width: 100%;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Stagger animation for menu items */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-links.active li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .nav-links a {
    font-size: 18px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  /* Overlay when menu is open */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 98;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile search and appointment button in menu */
  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
  }

  .mobile-search-form {
    display: flex;
    width: 100%;
  }

  .mobile-search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
  }

  .mobile-search-btn {
    background: #d4af37;
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
  }

  .mobile-appointment {
    background-color: #d4af37;
    color: white;
    padding: 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    width: 100%;
    display: block;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .header-actions {
    gap: 10px;
  }

  .search-input {
    width: 120px;
    padding: 8px 12px;
  }

  .search-input:focus {
    width: 140px;
  }

  .btn-appointment {
    padding: 8px 15px;
    font-size: 14px;
  }
}
/* singlepost page */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Back to Blog Link */
.back-to-blog {
  margin-bottom: 30px;
  margin-top: 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.back-link:hover {
  color: #2c3e50;
}

/* Article Header */
.article-header {
  margin-bottom: 50px;
}

.article-category {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.article-title {
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  gap: 30px;
  color: #7f8c8d;
  font-size: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-item i {
  color: #2c3e50;
}

.article-cover {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}

/* Article Content */
.article-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.article-main {
  background-color: white;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Article Body */
.article-body h2 {
  font-size: 32px;
  color: #2c3e50;
  margin: 40px 0 25px;
  font-weight: 600;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 24px;
  color: #34495e;
  margin: 35px 0 20px;
  font-weight: 600;
}

.article-body p {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.article-body ul,
.article-body ol {
  margin: 20px 0 30px 40px;
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.article-body li {
  margin-bottom: 15px;
}

.highlight-box {
  background-color: #f8f9fa;
  border-left: 4px solid #2c3e50;
  padding: 30px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  font-size: 20px;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 30px;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 10px;
  margin: 60px 0;
  align-items: center;
}

.author-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.author-info h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.author-title {
  color: #3498db;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.author-description {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Social Sharing */
.social-sharing {
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 40px 0;
}

.social-sharing h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: #f8f9fa;
  color: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icon.facebook:hover {
  background-color: #3b5998;
  color: white;
}

.social-icon.twitter:hover {
  background-color: #1da1f2;
  color: white;
}

.social-icon.linkedin:hover {
  background-color: #0077b5;
  color: white;
}

.social-icon.link:hover {
  background-color: #2c3e50;
  color: white;
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.widget-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ecf0f1;
  font-weight: 600;
}

/* Table of Contents */
.toc-list {
  list-style-type: none;
}

.toc-item {
  margin-bottom: 15px;
}

.toc-link {
  color: #555;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 12px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.toc-link:hover {
  background-color: #f8f9fa;
  color: #2c3e50;
  border-left-color: #2c3e50;
}

/* Related Articles */
.related-articles {
  list-style-type: none;
}

.related-article {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.related-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-article-image {
  width: 100px;
  height: 80px;
  background-color: #ddd;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.related-article-content {
  flex: 1;
}

.related-article-title {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.related-article-date {
  color: #7f8c8d;
  font-size: 14px;
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
}

.newsletter-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-text {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
  font-size: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: white;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  width: 100%;
  background-color: white;
  color: #2c3e50;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

/* Comments Section */
.comments-section {
  background-color: white;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 80px;
}

.section-title {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 600;
}

.comments-count {
  color: #7f8c8d;
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Comment Form */
.comment-form {
  margin-bottom: 60px;
}

.form-title {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s;
  background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c3e50;
  background-color: white;
}

.submit-btn {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 18px 45px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.submit-btn:hover {
  background-color: #1a252f;
}

/* Comments List */
.comments-list {
  list-style-type: none;
}

.comment {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.comment:last-child {
  border-bottom: none;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.comment-author-info h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 600;
}

.comment-date {
  color: #7f8c8d;
  font-size: 14px;
}

.reply-btn {
  background-color: #f8f9fa;
  color: #2c3e50;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.reply-btn:hover {
  background-color: #e9ecef;
}

.comment-text {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .article-content {
    grid-template-columns: 1fr;
  }

  .article-title {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .article-main {
    padding: 30px;
  }

  .comments-section {
    padding: 30px;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 30px;
  }

  .article-meta {
    flex-direction: column;
    gap: 15px;
  }

  .article-cover {
    height: 300px;
  }

  .social-icons {
    flex-wrap: wrap;
  }
}
/* single project page */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Back Link */
.back-link-container {
  margin-bottom: 30px;
  margin-top: 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.back-link:hover {
  color: #2c3e50;
}

/* Project Header */
.project-header {
  margin-bottom: 50px;
}

.project-status {
  display: inline-block;
  background-color: #2ecc71;
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.project-title {
  font-size: 48px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.project-location {
  font-size: 22px;
  color: #7f8c8d;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-location i {
  color: #3498db;
}

/* Hero Gallery */
.project-gallery {
  margin-bottom: 60px;
}

.gallery-main {
  height: 550px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  position: relative;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.gallery-thumb {
  height: 120px;
  border-radius: 8px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: #2c3e50;
  transform: translateY(-5px);
}

/* Project Details */
.project-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.project-content {
  background-color: white;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 2px solid #ecf0f1;
}

.project-description {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Features & Amenities */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #2c3e50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
}

/* Project Specifications */
.specifications {
  margin-bottom: 50px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 18px 15px;
  font-size: 16px;
}

.specs-table td:first-child {
  color: #7f8c8d;
  font-weight: 500;
  width: 40%;
}

.specs-table td:last-child {
  color: #2c3e50;
  font-weight: 600;
}

/* Sidebar */
.project-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-card {
  background-color: white;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-title {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Project Stats */
.project-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 25px 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Timeline */
.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-phase {
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
}

.timeline-date {
  font-size: 15px;
  color: #7f8c8d;
  font-weight: 500;
  background-color: #ecf0f1;
  padding: 6px 15px;
  border-radius: 20px;
}

.timeline-date.completed {
  background-color: #2ecc71;
  color: white;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
  text-align: center;
}

.cta-card .card-title {
  color: block;
}

.cta-description {
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-btn {
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cta-btn.primary {
  background-color: white;
  color: #2c3e50;
}

.cta-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary:hover {
  background-color: #f8f9fa;
}

.cta-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Location Map */
.location-section {
  margin-bottom: 80px;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ddd;
  background-image: url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

/* Floor Plans */
.floorplans-section {
  margin-bottom: 80px;
}

.floorplans-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.floorplan-tab {
  background-color: white;
  border: 2px solid #e0e0e0;
  color: #555;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floorplan-tab:hover {
  background-color: #f8f9fa;
}

.floorplan-tab.active {
  background-color: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

.floorplan-content {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
}

.floorplan-content.active {
  display: block;
}

.floorplan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ecf0f1;
}

.floorplan-title {
  font-size: 24px;
  color: #2c3e50;
  font-weight: 600;
}

.floorplan-specs {
  display: flex;
  gap: 30px;
}

.floorplan-spec {
  text-align: center;
}

.spec-value {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.spec-label {
  font-size: 14px;
  color: #7f8c8d;
  text-transform: uppercase;
}

.floorplan-image {
  height: 400px;
  background-color: #f8f9fa;
  border-radius: 8px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

/* Related Projects */
.related-projects {
  margin-bottom: 80px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.related-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.related-image {
  height: 200px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.related-content {
  padding: 25px;
}

.related-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.related-location {
  color: #7f8c8d;
  font-size: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}

.related-link:hover {
  color: #2c3e50;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .project-details {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .floorplan-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .project-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-main {
    height: 400px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .project-title {
    font-size: 32px;
  }

  .project-location {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .project-content {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .gallery-thumbnails {
    grid-template-columns: 1fr;
  }

  .gallery-thumb {
    height: 150px;
  }

  .project-stats {
    grid-template-columns: 1fr;
  }

  .floorplan-specs {
    flex-direction: column;
    gap: 15px;
  }
}
/* single service page  */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Back Link */
.back-link-container {
  margin-bottom: 30px;
  margin-top: 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.back-link:hover {
  color: #2c3e50;
}

/* Service Header */
.service-header {
  margin-bottom: 50px;
}

.service-category {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-title {
  font-size: 48px;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.service-tagline {
  font-size: 22px;
  color: #7f8c8d;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.5;
}

.service-hero {
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ddd;
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(44, 62, 80, 0.85),
    rgba(44, 62, 80, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 40px;
}

.hero-text {
  max-width: 700px;
}

.hero-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-text p {
  font-size: 20px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Service Layout */
.service-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.service-main {
  background-color: white;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 2px solid #ecf0f1;
}

.service-description {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Benefits Section */
.benefits-section {
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 35px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: #2c3e50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.benefit-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-description {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  margin-bottom: 50px;
}

.process-steps {
  position: relative;
  padding-left: 30px;
}

.process-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: -30px;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: #2c3e50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
}

.step-content {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  border-left: 4px solid #3498db;
}

.step-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-description {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Service Packages */
.packages-section {
  margin-bottom: 50px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 2px solid #e0e0e0;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.package-card.featured {
  border-color: #3498db;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-header {
  background-color: #2c3e50;
  color: white;
  padding: 30px;
  text-align: center;
}

.package-card.featured .package-header {
  background-color: #3498db;
}

.package-name {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.package-period {
  font-size: 16px;
  opacity: 0.8;
}

.package-body {
  padding: 30px;
}

.package-features {
  list-style-type: none;
  margin-bottom: 30px;
}

.package-features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li i {
  color: #2ecc71;
}

.package-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  text-decoration: none;
}

.package-card.featured .package-btn {
  background-color: #3498db;
}

.package-btn:hover {
  background-color: #1a252f;
}

.package-card.featured .package-btn:hover {
  background-color: #2980b9;
}

/* Service Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-card {
  background-color: white;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-title {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Quick Facts */
.facts-list {
  list-style-type: none;
}

.fact-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.fact-item:last-child {
  border-bottom: none;
}

.fact-label {
  color: #555;
  font-weight: 500;
}

.fact-value {
  color: #2c3e50;
  font-weight: 600;
}

/* Team Section */
.team-section {
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-member {
  display: flex;
  gap: 20px;
  align-items: center;
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-info h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 600;
}

.member-role {
  color: #3498db;
  font-size: 14px;
  font-weight: 500;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
  text-align: center;
}

.cta-card .card-title {
  color: white;
}

.cta-description {
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-info {
  margin-bottom: 30px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: white;
  color: #2c3e50;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.cta-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Case Studies */
.case-studies {
  margin-bottom: 80px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-study-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.case-study-image {
  height: 200px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.case-study-content {
  padding: 30px;
}

.case-study-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.case-study-result {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.result-item {
  text-align: center;
}

.result-value {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.result-label {
  font-size: 14px;
  color: #7f8c8d;
  text-transform: uppercase;
}

.case-study-description {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.case-study-link:hover {
  color: #2c3e50;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 80px;
}

.faq-accordion {
  background-color: white;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item {
  margin-bottom: 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  padding: 25px 30px;
  background-color: #f8f9fa;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #e9ecef;
}

.faq-question.active {
  background-color: #2c3e50;
  color: white;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: 30px;
  max-height: 500px;
}

.faq-answer p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Related Services */
.related-services {
  margin-bottom: 80px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.related-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.related-icon {
  height: 150px;
  background-color: #2c3e50;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.related-content {
  padding: 30px;
}

.related-title {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.related-description {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}

.related-link:hover {
  color: #2c3e50;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .related-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 40px;
  }

  .service-tagline {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .packages-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .package-card.featured:hover {
    transform: translateY(-10px);
  }

  .service-title {
    font-size: 32px;
  }

  .service-tagline {
    font-size: 18px;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .service-main {
    padding: 30px;
  }

  .faq-accordion {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .case-study-result {
    flex-direction: column;
    gap: 15px;
  }

  .service-hero {
    height: 350px;
  }

  .hero-overlay {
    padding: 0 20px;
  }
}
/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #d4af37;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 14px;
}
/* book appointment  */
.appointment-container {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Header */
.appointment-header {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: white;
  padding: 30px;
  text-align: center;
}

.appointment-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.appointment-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* Progress Steps */
.progress-steps {
  display: flex;
  padding: 30px 40px 0;
  background-color: #f8f9fa;
  position: relative;
}

.progress-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 40px;
  right: 40px;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 1;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: 3px solid #e0e0e0;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.step.active .step-circle {
  background-color: #2c3e50;
  border-color: #2c3e50;
  color: white;
}

.step.completed .step-circle {
  background-color: #2ecc71;
  border-color: #2ecc71;
  color: white;
}

.step.completed .step-circle i {
  display: block;
}

.step.completed .step-circle span {
  display: none;
}

.step-label {
  font-weight: 600;
  color: #7f8c8d;
  font-size: 15px;
}

.step.active .step-label {
  color: #2c3e50;
}

.step.completed .step-label {
  color: #2ecc71;
}

/* Form Content */
.form-content {
  padding: 40px;
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-subtitle {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 30px;
}

/* Step 1: Calendar */
.calendar-container {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.month-year {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
}

.calendar-nav {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  background-color: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.day-header {
  text-align: center;
  font-weight: 600;
  color: #2c3e50;
  padding: 10px 0;
  font-size: 15px;
}

.day {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  position: relative;
}

.day:hover {
  background-color: #e9ecef;
}

.day.selected {
  background-color: #2c3e50;
  color: white;
  font-weight: 600;
}

.day.disabled {
  color: #ccc;
  cursor: not-allowed;
  background-color: #f8f9fa;
}

.day.disabled:hover {
  background-color: #f8f9fa;
}

.day.today {
  border: 2px solid #3498db;
}

.day.has-appointments::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2ecc71;
}

.day.selected.has-appointments::after {
  background-color: white;
}

/* Time Slots */
.time-slots-container {
  margin-top: 40px;
}

.time-slots-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.time-slot {
  padding: 15px;
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.time-slot:hover {
  border-color: #3498db;
  background-color: #f0f7ff;
}

.time-slot.selected {
  background-color: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

.time-slot.booked {
  background-color: #f8f9fa;
  color: #95a5a6;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
}

.time-slot.booked::after {
  content: "Booked";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #e74c3c;
  color: white;
  padding: 2px 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Step 2: Contact Form */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c3e50;
}

.form-label .required {
  color: #e74c3c;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s;
  background-color: #f8f9fa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2c3e50;
  background-color: white;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.appointment-type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.type-option {
  padding: 20px;
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.type-option:hover {
  border-color: #3498db;
  background-color: #f0f7ff;
}

.type-option.selected {
  background-color: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

.type-icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.type-option.selected .type-icon {
  color: white;
}

.type-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.type-desc {
  font-size: 14px;
  color: #7f8c8d;
}

.type-option.selected .type-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Summary */
.appointment-summary {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.summary-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.summary-item {
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.summary-value {
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  border-top: 1px solid #eaeaea;
  background-color: #f8f9fa;
}

.action-btn {
  padding: 16px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.prev-btn {
  background-color: white;
  color: #2c3e50;
  border: 2px solid #ddd;
}

.prev-btn:hover {
  background-color: #f8f9fa;
  border-color: #2c3e50;
}

.next-btn,
.submit-btn {
  background-color: #2c3e50;
  color: white;
}

.next-btn:hover,
.submit-btn:hover {
  background-color: #1a252f;
}

.submit-btn {
  background-color: #2ecc71;
}

.submit-btn:hover {
  background-color: #27ae60;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 60px 40px;
  display: none;
}

.success-message.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #2ecc71;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 30px;
}

.success-title {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.success-text {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.appointment-details {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
}

.details-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.new-appointment-btn {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.new-appointment-btn:hover {
  background-color: #1a252f;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .appointment-container {
    max-width: 100%;
  }

  .form-row,
  .summary-details,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .appointment-type {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    gap: 5px;
  }

  .day {
    height: 40px;
    font-size: 14px;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-actions {
    flex-direction: column;
    gap: 15px;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }

  .progress-steps {
    padding: 20px;
  }

  .progress-steps::before {
    left: 20px;
    right: 20px;
    top: 40px;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .appointment-header {
    padding: 20px;
  }

  .appointment-header h1 {
    font-size: 26px;
  }

  .form-content {
    padding: 20px;
  }

  .calendar-container {
    padding: 20px;
  }

  .time-slots {
    grid-template-columns: 1fr;
  }

  .step-title {
    font-size: 24px;
  }
}
