/* 
 * Pakistan Paragliding Club - Card Styles
 * Theme colors: #005244 (Primary Green), #FFC107 (Secondary Gold), #FFFFFF (White)
 */

/* Common Card Styles */
.pgc-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none !important;
    height: 100%;
    background-color: #ffffff;
}

.pgc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pgc-card-header {
    background-color: #005244;
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 0 !important;
}

.pgc-card-body {
    padding: 1.5rem;
}

.pgc-card-title {
    color: #005244;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pgc-card-text {
    color: #555;
    margin-bottom: 1.5rem;
}

.pgc-card-footer {
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
}

/* Product Card Styles */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-title {
    color: #005244;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-card-price {
    color: #FFC107;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-card-description {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.03);
}

/* Feature Card Styles */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none !important;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card-icon {
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(0, 82, 68, 0.1);
    color: #005244;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background-color: #005244;
    color: white;
    transform: rotateY(180deg);
}

.feature-card-title {
    color: #005244;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card-text {
    color: #555;
}

/* Testimonial Card Styles */
.testimonial-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 25px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 82, 68, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-content {
    position: relative;
    z-index: 10;
}

.testimonial-card-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
}

.testimonial-card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid #FFC107;
}

.testimonial-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-info h5 {
    color: #005244;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-card-info p {
    color: #777;
    margin-bottom: 0;
}

/* Team Card Styles */
.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: white;
    border: none !important;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-card-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.team-card-body {
    padding: 1.5rem;
    text-align: center;
}

.team-card-title {
    color: #005244;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-card-position {
    color: #FFC107;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card-bio {
    color: #555;
    margin-bottom: 1.5rem;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-card-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 82, 68, 0.1);
    color: #005244;
    transition: all 0.3s ease;
}

.team-card-social a:hover {
    background-color: #005244;
    color: white;
    transform: translateY(-3px);
}

.exotic-product-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.75);
    border: 3px solid;
    border-image: linear-gradient(120deg, #FFC107 40%, #007A63 100%) 1;
    box-shadow: 0 12px 40px 0 rgba(0,82,68,0.13), 0 2px 12px 0 rgba(255,193,7,0.10);
    transition: box-shadow 0.35s, border 0.35s, transform 0.35s, background 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
}
.exotic-product-card:hover {
    box-shadow: 0 24px 60px 0 rgba(0,122,99,0.18), 0 6px 24px 0 rgba(255,193,7,0.18);
    border-image: linear-gradient(120deg, #007A63 40%, #FFC107 100%) 1;
    transform: scale(1.045) rotate(-1deg);
    background: rgba(255,255,255,0.92);
}
.exotic-product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,122,99,0.08);
    position: relative;
    z-index: 1;
}
.exotic-product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(90deg, #FFC107 60%, #007A63 100%);
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1rem;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,122,99,0.13);
    z-index: 2;
    letter-spacing: 1px;
    border: 2px solid #fff;
    filter: drop-shadow(0 2px 8px rgba(0,122,99,0.13));
}
.exotic-product-floating-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #fff;
    color: #007A63;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,122,99,0.13);
    font-size: 1.5rem;
    z-index: 2;
    border: 2px solid #FFC107;
}
.exotic-product-card-body {
    flex: 1 1 auto;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.exotic-product-title {
    color: #007A63 !important;
    font-weight: 900 !important;
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.exotic-product-description {
    color: #007A63 !important;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    min-height: 60px;
    font-weight: 700 !important;
}
.exotic-product-details {
    margin-bottom: 1.2rem;
}
.exotic-product-details li {
    color: #007A63 !important;
    font-weight: 700 !important;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    font-size: 1.01rem;
}
.exotic-product-details i {
    color: #FFC107 !important;
    margin-right: 0.7rem;
    font-size: 1.1rem;
}
.exotic-product-price {
    color: #FFC107 !important;
    font-size: 1.3rem;
    font-weight: 800 !important;
    letter-spacing: 1px;
}
.exotic-product-book-btn {
    background: linear-gradient(90deg, #007A63 60%, #FFC107 100%);
    color: #fff !important;
    border: none;
    border-radius: 14px;
    font-weight: 700 !important;
    font-size: 1.08rem;
    padding: 0.7rem 1.6rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,122,99,0.13);
    transition: background 0.22s, box-shadow 0.22s, color 0.22s, filter 0.22s;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    filter: drop-shadow(0 2px 8px rgba(255,193,7,0.13));
}
.exotic-product-book-btn:hover, .exotic-product-book-btn:focus {
    background: linear-gradient(90deg, #FFC107 60%, #007A63 100%);
    color: #00332E !important;
    box-shadow: 0 4px 18px rgba(255,193,7,0.18);
    filter: drop-shadow(0 4px 18px rgba(255,193,7,0.18));
}

.exotic-product-card, .exotic-product-card * {
    color: #007A63 !important;
    font-weight: 700 !important;
}
.exotic-product-badge {
    color: #fff !important;
    font-weight: 700 !important;
}
.exotic-product-price {
    color: #FFC107 !important;
    font-weight: 800 !important;
}
.exotic-product-book-btn {
    color: #fff !important;
    font-weight: 700 !important;
}

.exotic-product-duration-option {
    color: #007A63 !important;
    border: 2px solid #FFC107 !important;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    margin-bottom: 0.5rem;
    background: #fff;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.exotic-product-duration-option.selected,
.exotic-product-duration-option:active,
.exotic-product-duration-option:hover {
    background: #007A63 !important;
    color: #FFC107 !important;
    border: 2px solid #007A63 !important;
}

.exotic-product-location-badge {
    display: inline-block;
    font-size: 0.92rem;
    color: #007A63 !important;
    border: 2px solid #FFC107 !important;
    border-radius: 7px;
    padding: 0.18rem 0.7rem;
    margin: 0 0.18rem 0.18rem 0;
    background: #fff;
    font-weight: 700;
    vertical-align: middle;
}

