
circle[id^="seat"], text[id^="seat-text"] {
  cursor: pointer;
}
#booking-title{
    text-align: center;
    width: 100%;
    color: var(--color-prgreen);
}

circle[id^="seat"], text[id^="seat-text"] {
    cursor: pointer;
    transition: fill 0.2s;
}

circle[id^="seat"].hovered {
    fill: #57823f; 
}

        .flatpickr-day.booked-date {
            background: #f8d7da !important;
            color: #721c24 !important;
            cursor: not-allowed;
}
text[id^="seat-text"].hovered {
    fill: white; 
}


.form-group input:focus-visible,
.form-group textarea:focus-visible {
    border: none;
    border-bottom: 2px solid white;
    outline: none;
    box-shadow: none;
}

.booking-content {
  background: #1c1d1b;
  padding: 40px;
  border-radius: 20px;
  max-width: 650px;
  width: 90%;
  color: #a39f9f;
  text-align: left;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.title {
    display: flex;
    justify-content: center;
    color: var(--color-prgreen);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  color: #a7c538;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 15px 0px 15px 0px;
    margin: 0px 0px 0px 0px;
    border-radius: 0px;
    background-color: transparent;
    color: #ffffff;
    border-radius: 0px;
    margin: 7px 0;
    width: 90%;
    border: 0;
    border-bottom: 3px solid #ffffff33;
    font-size: 16px;
    transition: 0.2s 
ease-in-out;
}

.form-group textarea {
  grid-column: span 2;
  resize: none;
}

.booking-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.confirm-btn {
padding: 15px 40px;
    border: 0;
    background: #ffffff;
    color: #1c1d1b;
    font-size: 16px;
    text-transform: uppercase;
    margin: 7px 0;
    cursor: pointer;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    opacity: 0.9;
    transition: all 0.2s 
    ease-in-out;
}
.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.booking-type-buttons {
  display: flex;
  gap: 10px;
}

.type-btn {
  background: transparent;
  border: 1px solid #a7c538;
  color: #a7c538;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.type-btn:hover {
  background: #a7c538;
  color: #1c1d1b;
}

.type-btn.active {
  background: #a7c538;
  color: #1c1d1b;
}

.confirm-btn:hover {
  background: #b7d950;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background: #1c1d1b;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80%;
  overflow-y: auto;
  color: #a39f9f;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #57823f;
}

.page-space-container {
    width: 1230px;
    margin: 0 auto;
}

.headercontent {
    text-align: center;
    width: 65%;
    margin: 0 auto;
}
.headercontent p {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #a39f9f;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin: 0 auto 50px auto;
}
.pragmatic-image{
	width:100%;
	height:100%;
}
.fa-regular,
.fa-solid, .fas {
    color: var(--color-prgreen);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
}

.grid-container>div {
    text-align: center;
    padding: 20px 0;
    font-size: 25px;
    max-width: 400px;
}

.expertise-title {
    background-color: var(--color-gray-100);
    font-size: 22px;
    color: #a39f9f;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
}

.being-a-leading-container {
    font-size: 15px;
    color: var(--color-gainsboro);
}

.blob-image {
    position: absolute;
    z-index: -1;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-title-block {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-image-container {
    display: flex;
    justify-content: center;
    margin: 0 20%;
    position: relative;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
    margin-top: 40px;
}

.card {
    transform: translateY(-5px);
    background: #334529;
    border-radius: 12px;
    padding: 20px;
    width: 93%;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.main-title-price {
    display: block;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #a39f9f;
}

.card-header {
    position: relative;
    text-align: left;
}

.badge-price {
    position: absolute;
    top: 27px;
    right: 0;
    width: 170px;
    height: 60px;
    background: #57823f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    overflow: hidden;
}

.badge-price::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #334529;
}

.badge-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
	margin-left:29px;
}

.custom-list {
    font-size: 15px;
    color: var(--color-gainsboro);
    margin-top: 10px;
}


.modal-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

@media (max-width: 1199px){
    .page-space-container{
        width: 95%;
    }
}

@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr;
		width:85%;
		margin-left:auto;
		margin-right:auto;
    }
	.main-title-price {
		margin-bottom:0;	
	}
	.badge-number{
		font-size:15px;	
	}
	.grid-container {
        grid-template-columns: 1fr 1fr;
		
    }
	.custom-list{
		width:60%;	
	}
	.expertise-title{
		font-size: 16px;
        padding: 0;
	}
    .badge-price {
        width: 120px;
        height: 50px;
        font-size: 14px;
    }
    .badge-price::before {
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 25px solid #334529;
    }
}

@media (max-width: 480px) {
    .main-title-price {
        font-size: 22px;
    }
    .custom-list {
        font-size: 14px;
    }
    .modal-content {
        padding: 25px;
        width: 90%;
    }
}
