/* GRID LAYOUT */
.services-grid {
    padding: 60px 20px;
  }
  
  .services-grid .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  /* CARD STYLE */
  .card {
    background-color: #111;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* HOVER SHADOW */
  .card:hover {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
  }
  
  /* ICON & HEADER */
  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .card-header .icon {
    background-color: #f97316;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
  }
  
  .card-header h3 {
    flex: 1;
    font-size: 20px;
    margin-left: 10px;
  }
  
  .view-more {
    font-size: 14px;
    color: #f97316;
  }
  
  /* EXPANDED CONTENT */
  .card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    margin-top: 15px;
    border-top: 1px solid #222;
    padding-top: 0;
  }
  
  .card.expanded .card-content {
    max-height: 1000px; /* enough to show all content */
    padding-top: 15px;
  }
  
  /* CARD LISTS */
  .card-lists {
    display: flex;
    gap: 30px;
    margin: 15px 0;
  }
  
  .card-lists h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .card-lists ul {
    list-style: none;
    padding-left: 0;
  }
  
  .card-lists li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
  }
  
  .card-lists li::before {
    content: "✔";
    color: #f97316;
    position: absolute;
    left: 0;
  }
  
  /* PERFECT FOR */
  .perfect-for {
    background-color: #1a1a1a;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 14px;
  }
  
  /* BUTTONS */
  .card-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
  }
  
  .close-btn,
  .book-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .close-btn {
    background-color: #222;
    color: #fff;
  }
  
  .book-btn {
    background-color: #f97316;
    color: #fff;
  }


  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .services-grid .container {
      grid-template-columns: 1fr;
    }
  
    .card-lists {
      flex-direction: column;
    }
  }