/* 
    #40b968 main color
*/

/* Pricing Section Styles */
.pricing-section {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pricing-main-title {
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-main-title i {
    color: #40b968;
    margin-right: 10px;
}

.pricing-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #40b968;
    box-shadow: 0 10px 30px rgba(64, 185, 104, 0.15);
    transform: translateY(-5px);
}

.pricing-card-header {
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.pricing-card-header i {
    font-size: 1.8rem;
}

.pricing-card-header h5 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.pricing-card-body {
    padding: 25px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    margin-bottom: 12px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.pricing-item:last-child {
    margin-bottom: 0;
}

.pricing-item-time {
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing-item-time i {
    color: #40b968;
    font-size: 0.9rem;
}

/* Pricing Item Note */
.pricing-item-note {
    display: block;
    color: #f59e0b;
    font-size: 0.8rem;
    margin-top: 5px;
    font-style: italic;
    line-height: 1.5;
}

/* Pricing Note Styles */
.pricing-note {
    margin-top: 25px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #fff9e6 0%, #fffef5 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
}

.pricing-note-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #d97706;
    font-size: 1.05rem;
    padding-left: 10px;
}

.pricing-note-header i {
    color: #f59e0b;
    font-size: 1.3rem;
    animation: pulse-info 2s infinite;
}

@keyframes pulse-info {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.pricing-note-header strong {
    font-weight: 700;
}

.pricing-note-list {
    list-style: none;
    padding: 0 0 0 10px;
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.8;
}

.pricing-note-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
}

.pricing-note-list li:before {
    display: none;
}

/* Responsive for Pricing Note */
@media (max-width: 576px) {
    .pricing-note {
        padding: 15px 20px;
    }
    
    .pricing-note-header {
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .pricing-note-header i {
        font-size: 1.1rem;
    }
    
    .pricing-note-list {
        font-size: 0.9rem;
    }
}

.pricing-item:hover {
    background: rgba(64, 185, 104, 0.05);
    border-color: #40b968;
    transform: translateX(5px);
}

.pricing-item.highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px solid #FFD700;
}

.pricing-item.highlight:hover {
    background: linear-gradient(135deg, #fff5cc 0%, #fffaf0 100%);
    transform: translateX(5px) scale(1.02);
}

.pricing-item-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #333;
}

.pricing-item-name i {
    color: #40b968;
    font-size: 1.2rem;
}

.pricing-item-price {
    color: #40b968;
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Services Included Section */
.services-included-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 40px;
    border: 2px dashed #40b968;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    justify-content: center;
}

.services-header i {
    color: #40b968;
    font-size: 2rem;
}

.services-header h4 {
    color: #333;
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
}

.service-benefit-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(64, 185, 104, 0.2);
    border-color: #40b968;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(64, 185, 104, 0.3);
}

.benefit-icon i {
    color: white;
    font-size: 1.8rem;
}

.service-benefit-card h6 {
    color: #333;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-benefit-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive for Pricing */
@media (max-width: 991px) {
    .pricing-section {
        padding: 40px 30px;
    }
    
    .pricing-main-title {
        font-size: 1.7rem;
    }
    
    .pricing-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 30px 20px;
    }
    
    .pricing-main-title {
        font-size: 1.5rem;
    }
    
    .pricing-card-header {
        padding: 15px 20px;
    }
    
    .pricing-card-header h5 {
        font-size: 1.1rem;
    }
    
    .pricing-card-body {
        padding: 20px 15px;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    .pricing-item-price {
        align-self: flex-end;
    }
    
    .services-included-section {
        padding: 30px 20px;
    }
    
    .services-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .services-header h4 {
        font-size: 1.5rem;
    }
    
    .service-benefit-card {
        margin-bottom: 20px;
    }
}

/* Header Section */
.section-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(64, 185, 104, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(64, 185, 104, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(64, 185, 104, 0.3);
}

.section-label i {
    margin-right: 5px;
}

.header-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Content Section */
.section-content {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Venue Section */
.venue-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.venue-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.venue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(64, 185, 104, 0.3);
}

.venue-icon i {
    font-size: 1.8rem;
    color: white;
}

.venue-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.venue-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Venue Item */
.venue-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.venue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(64, 185, 104, 0.25);
}

.venue-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-item:hover img {
    transform: scale(1.1);
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 185, 104, 0.85) 0%, rgba(45, 138, 77, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-item:hover .venue-overlay {
    opacity: 1;
}

.venue-overlay i {
    font-size: 2.5rem;
    color: white;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    border-radius: 12px;
    padding: 40px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(64, 185, 104, 0.3);
}

.contact-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: #40b968;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-info-value {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.contact-info-value:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info-value:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .section-header {
        padding: 40px 0;
    }
    
    .section-content {
        padding: 40px 0;
    }
    
    .venue-section {
        padding: 30px 20px;
    }
    
    .venue-header {
        gap: 15px;
    }
    
    .venue-icon {
        width: 50px;
        height: 50px;
    }
    
    .venue-icon i {
        font-size: 1.5rem;
    }
    
    .venue-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-header {
        padding: 30px 0;
    }
    
    .section-content {
        padding: 30px 0;
    }
    
    .venue-section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .venue-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .venue-title {
        font-size: 1.3rem;
    }
    
    .contact-box {
        padding: 25px 20px;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }
    
    .contact-info-item {
        padding: 20px 15px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon i {
        font-size: 1.3rem;
    }
}

/* Calendar Section */
.calendar-section {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.calendar-main-title {
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.calendar-main-title i {
    color: #40b968;
    margin-right: 10px;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #e9ecef;
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.calendar-month-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.btn-calendar-nav {
    width: 45px;
    height: 45px;
    border: 2px solid #40b968;
    background: white;
    color: #40b968;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-calendar-nav:hover {
    background: #40b968;
    color: white;
    transform: scale(1.1);
}

.calendar-grid {
    margin-bottom: 30px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.calendar-weekday {
    text-align: center;
    font-weight: bold;
    color: #40b968;
    padding: 10px;
    font-size: 1rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
    border: 2px solid transparent;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day:not(.empty):hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.calendar-day.today {
    background: #40b968;
    color: white;
    border-color: #2d8a4d;
    font-weight: bold;
}

.calendar-day.booked {
    background: #dc3545;
    color: white;
    border-color: #c82333;
    position: relative;
}

.calendar-day.booked:hover {
    background: #c82333;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 2px solid transparent;
}

.legend-today {
    background: #40b968;
    border-color: #2d8a4d;
}

.legend-booked {
    background: #dc3545;
    border-color: #c82333;
}

.legend-available {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
}

/* Responsive for Calendar */
@media (max-width: 991px) {
    .calendar-section {
        padding: 40px 30px;
    }
    
    .calendar-container {
        padding: 25px;
    }
    
    .calendar-month-year {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .calendar-section {
        padding: 30px 20px;
    }
    
    .calendar-main-title {
        font-size: 1.5rem;
    }
    
    .calendar-container {
        padding: 20px 15px;
    }
    
    .calendar-month-year {
        font-size: 1.1rem;
    }
    
    .btn-calendar-nav {
        width: 40px;
        height: 40px;
    }
    
    .calendar-weekday {
        font-size: 0.85rem;
        padding: 8px 5px;
    }
    
    .calendar-days {
        gap: 5px;
    }
    
    .calendar-weekdays {
        gap: 5px;
    }
    
    .calendar-day {
        font-size: 0.9rem;
    }
    
    .legend-item {
        font-size: 0.85rem;
    }
    
    .legend-color {
        width: 25px;
        height: 25px;
    }
}
