/* Services Specific Styles */

/* Service Cards */
.service-card, .exotic-service-card {
    background: #fff !important;
    border-radius: 28px !important;
    box-shadow: 0 12px 36px 0 rgba(0, 186, 148, 0.22), 0 4px 16px rgba(255,193,7,0.13) !important;
    border: 3.5px solid #FFC107 !important;
    color: #00332E !important;
    padding: 0 !important;
    overflow: hidden !important;
    min-height: 560px !important;
    position: relative;
    animation: exotic-card-pop 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card:hover, .exotic-service-card:hover {
    box-shadow: 0 12px 36px 0 rgba(0, 186, 148, 0.22), 0 4px 16px rgba(255,193,7,0.13) !important;
    border-color: #FFC107 !important;
    transform: none;
    filter: none;
}
@keyframes exotic-card-pop {
    0% { transform: scale(0.95) translateY(30px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.service-card::before, .exotic-service-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; height: 7px;
    border-radius: 22px 22px 0 0;
    background: #FFC107;
    z-index: 3;
}
.duration-badge-on-border {
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.duration-badge {
    background: #fff;
    color: #005244 !important;
    border: 2px solid #FFC107;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-block;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(255,193,7,0.10);
    padding: 4px 22px;
    letter-spacing: 0.5px;
}
.price-options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}
.exotic-price-option {
    width: 70%;
    box-sizing: border-box;
    border: 2.5px solid #005244;
    border-radius: 16px;
    padding: 14px 26px;
    background: #f6fffa;
    color: #005244;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.13em;
    transition: border 0.22s, background 0.22s, color 0.22s, box-shadow 0.22s;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,122,99,0.09);
    outline: none;
    position: relative;
}
.exotic-price-option.selected,
.exotic-price-option:active {
    border: 2.5px solid #FFC107;
    background: #fffbe6;
    color: #b88600;
    box-shadow: 0 2px 12px rgba(255,193,7,0.10);
}
.exotic-price-option .duration,
.exotic-price-option .price {
    display: block;
    font-size: 1.08em;
}
.exotic-price-option .price,
.selected-price-display .selected-price {
    color: #007A63 !important; /* Green for price */
}
.selected-price-display {
    background: #e0f2ef;
    border-radius: 12px;
    padding: 12px 20px;
    color: #005244;
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 0.7em;
    box-shadow: 0 1px 4px rgba(0,122,99,0.07);
}
.exotic-location-list, .location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border: 2px solid #005244;
    border-radius: 16px;
    padding: 0.5rem 1.2rem;
    background: #f6fffa;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: flex-start;
    min-height: 40px;
    list-style: none;
}
.exotic-location-list li, .location-pills li {
    font-size: 1em;
    color: #007A63 !important;
    background: #e6f4ef;
    border-radius: 12px;
    padding: 0.22em 1.1em;
    margin: 0;
    list-style: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #FFC107;
    box-shadow: 0 1px 4px rgba(255,193,7,0.07);
    letter-spacing: 0.2px;
}
.location-pills li {
    background: #fffbe6 !important;
    color: #007A63 !important;
    border: 1.5px solid #FFC107 !important;
}
.location-pills li::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.1em;
    color: #007A63 !important;
}
.service-card .book-now-btn, .exotic-service-card .book-now-btn {
    font-size: 0.95em !important;
    padding: 8px 0 !important;
    border-radius: 10px !important;
    margin-top: 8px !important;
    min-width: 120px;
    max-width: 200px;
    width: auto;
}

.service-card-header {
    background-color: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #005244;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.service-title {
    color: #005244;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.service-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.service-location i {
    color: #FFC107;
    margin-right: 5px;
}

.experience-badge {
    padding: 1rem 1.5rem;
    background-color: rgba(0, 82, 68, 0.05);
}

.experience-badge-inner {
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #005244;
}

.experience-badge-inner i {
    color: #FFC107;
    margin-right: 8px;
}

.card-divider {
    margin: 0;
    opacity: 0.1;
}

.pricing-options {
    padding: 1.5rem;
}

.options-title {
    font-size: 1.1rem;
    color: #005244;
    margin-bottom: 1rem;
    font-weight: 600;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-option {
    background-color: #f8f9fa;
    border-radius: 50px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.price-option:hover {
    background-color: rgba(255, 193, 7, 0.2);
    transform: translateX(5px);
}

.price-option i {
    color: #FFC107;
}

.service-features {
    padding: 1.5rem;
    flex-grow: 1;
}

.features-title {
    font-size: 1.1rem;
    color: #005244;
    margin-bottom: 1rem;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.features-list li i {
    color: #005244;
}

.card-actions {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-book {
    width: 100%;
    font-weight: 600;
    padding: 0.75rem;
    font-size: 1.1rem;
}

/* Hero Section for Services */
.services-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.services-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax {
    background-attachment: fixed;
}

/* Testimonials section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid #FFC107;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 2rem;
    color: #005244;
    position: absolute;
    opacity: 0.2;
}

.testimonial-quote::before {
    top: -15px;
    left: -10px;
}

.testimonial-quote::after {
    bottom: -30px;
    right: -10px;
}

.testimonial-author {
    font-weight: 700;
    color: #005244;
    margin-bottom: 0.25rem;
}

.testimonial-date {
    font-size: 0.9rem;
    color: #999;
}

/* Exotic Service Card Styles */
.exotic-service-card::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; height: 7px;
    border-radius: 24px 24px 0 0;
    background: #FFC107;
    z-index: 3;
}
.exotic-service-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00b894 60%, #007A63 100%);
    color: #fff;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    box-shadow: 0 4px 16px rgba(0,122,99,0.18);
    border: 3px solid #fff;
    z-index: 2;
}
.exotic-service-icon i {
    color: #fff;
    font-size: 2.7rem;
}
.exotic-badge {
    font-size: 1.13rem;
    font-weight: 800;
    padding: 0.5em 1.3em;
    border-radius: 22px;
    background: #FFC107;
    color: #005244;
    box-shadow: 0 2px 8px rgba(255,193,7,0.13);
    margin-bottom: 1rem;
    display: inline-block;
    letter-spacing: 0.5px;
    border: 1.5px solid #FFC107;
}
.exotic-btn, .btn-book, .book-now-btn {
    font-size: 1.13rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(255,193,7,0.10);
    transition: background 0.3s, color 0.3s;
    background: #FFC107;
    color: #fff !important;
    border: none;
    width: 100%;
}
.exotic-btn:hover, .btn-book:hover, .book-now-btn:hover {
    background: linear-gradient(90deg, #005244 0%, #FFC107 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0,82,68,0.13);
}

/* All text in card green */
.exotic-service-card, .exotic-service-card * {
    color: #007A63 !important;
}

/* Service image */
.service-image-container {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,122,99,0.10);
}
.service-image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    transition: transform 0.22s;
}
.service-card:hover .service-image-container img {
    transform: scale(1.04) rotate(-1deg);
}
.service-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(90deg, #FFC107 60%, #FFD700 100%);
    color: #00332E;
    padding: 6px 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(255,193,7,0.10);
    z-index: 2;
}

/* Available locations styling */
.available-location h6 {
    color: #00332E;
    font-weight: 800;
    margin-bottom: 0.5em;
}
.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.location-pills li {
    list-style: none;
    background: linear-gradient(90deg, #007A63 60%, #00b894 100%);
    color: #fff;
    border-radius: 22px;
    padding: 7px 22px 7px 16px;
    font-weight: 600;
    font-size: 1.07em;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,122,99,0.10);
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
}
.location-pills li::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.1em;
    color: #007A63 !important;
}

/* Card footer separation */
.card-footer {
    border-top: 2px solid #e0f2ef;
    background: #f6fffa;
    border-radius: 0 0 22px 22px;
    margin-top: 1.2em;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .service-card {
        margin-bottom: 32px;
    }
    .service-image-container img {
        height: 260px;
    }
}
@media (max-width: 575px) {
    .service-card {
        border-radius: 14px;
    }
    .service-image-container img {
        border-radius: 14px 14px 0 0;
        height: 180px;
    }
    .exotic-service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3em;
        top: -18px;
    }
}

.custom-book-btn {
    background: linear-gradient(90deg, #FFC107 0%, #00b894 100%) !important;
    color: #fff !important;
    font-size: 1.18rem !important;
    font-weight: 900 !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 18px rgba(255,193,7,0.18), 0 2px 8px rgba(0,186,148,0.13) !important;
    border: none !important;
    letter-spacing: 1px !important;
    padding: 18px 0 !important;
    margin-top: 18px !important;
    transition: background 0.22s, box-shadow 0.22s, color 0.22s !important;
    text-transform: uppercase;
}
.custom-book-btn:hover, .custom-book-btn:focus, .custom-book-btn:active {
    background: linear-gradient(90deg, #00b894 0%, #FFC107 100%) !important;
    color: #00332E !important;
    box-shadow: 0 8px 32px rgba(0,186,148,0.18), 0 4px 16px rgba(255,193,7,0.18) !important;
    filter: brightness(1.12) saturate(1.3);
}
.custom-book-btn .custom-book-btn-text {
    color: #007A63 !important;
    font-weight: 800;
}
.custom-book-btn i {
    color: #007A63 !important;
}

/* Exotic and Attractive Service Card Enhancements */
.exotic-title {
    font-size: 2.1rem !important;
    font-weight: 900 !important;
    letter-spacing: 1.2px;
    background: linear-gradient(90deg, #FFC107 30%, #00b894 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 8px rgba(0,186,148,0.10);
}
.exotic-desc {
    font-size: 1.18rem !important;
    font-weight: 500 !important;
    color: #007A63 !important;
    text-shadow: 0 1px 6px rgba(0,186,148,0.07);
    margin-bottom: 1.2rem !important;
}
.book-now-btn:hover, .custom-book-btn:hover {
    background: linear-gradient(90deg, #00b894 0%, #FFC107 100%) !important;
    color: #00332E !important;
    box-shadow: 0 8px 32px rgba(0,186,148,0.18), 0 4px 16px rgba(255,193,7,0.18) !important;
    filter: brightness(1.12) saturate(1.3);
}

.book-now-btn {
    background: #FFC107 !important;
    color: #007A63 !important;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(255,193,7,0.10);
    border: none;
    width: 100%;
    padding: 10px 0 !important;
    margin-top: 8px !important;
    transition: background 0.3s, color 0.3s;
}
.book-now-btn:hover, .book-now-btn:focus, .book-now-btn:active {
    background: #FFD700 !important;
    color: #00332E !important;
    box-shadow: 0 4px 16px rgba(255,193,7,0.18);
} 