/* ============================================
   7. VIP BOOKING CSS
   ============================================ */

/* Booking Widget Container */
.vip-booking-widget {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

.booking-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.booking-breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.booking-breadcrumb a:hover {
    text-decoration: underline;
}

.match-info-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #0066cc;
}

.match-teams {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.match-teams .vs {
    margin: 0 10px;
    color: #666;
    font-weight: 400;
}

.match-date, .match-stadium {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

/* Booking Steps */
.booking-steps {
    margin-top: 30px;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.step-number {
    background: #0066cc;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
}

.step-header h3 {
    margin: 0;
    font-size: 20px;
}

/* Experience Cards */
.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.experience-card {
    background: white;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-card:hover {
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,102,204,0.1);
}

.experience-card h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.package-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 10px 0 15px;
    min-height: 40px;
}

.price {
    color: #28a745;
    font-weight: 600;
    font-size: 18px;
    margin: 15px 0;
}

.select-experience-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.select-experience-btn:hover {
    background: #0052a3;
}

/* Package Selection */
.package-selection {
    margin: 30px 0;
}

.package-dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    margin-bottom: 20px;
    min-height: 50px;
}

.package-dropdown:focus {
    border-color: #0066cc;
    outline: none;
}

.package-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.package-details h4 {
    margin-top: 0;
    color: #333;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.inclusions-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.inclusions-list li:before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-prev, .btn-next {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn-prev {
    background: #6c757d;
    color: white;
}

.btn-prev:hover {
    background: #5a6268;
}

.btn-next {
    background: #28a745;
    color: white;
}

.btn-next:hover:not(:disabled) {
    background: #218838;
}

.btn-next:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* CF7 Form Styling */
.wpcf7-form {
    margin-top: 20px;
}

.wpcf7-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}
/* Ensure form fields are touch-friendly on mobile */
.wpcf7-form-control.wpcf7-select, 
.wpcf7-form-control[type="text"], 
.wpcf7-form-control[type="email"], 
.wpcf7-form-control[type="tel"] {
    min-height: 50px;
}
.wpcf7-submit {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
}

.wpcf7-submit:hover {
    background: #0052a3;
}

/* Match Page Styling */
.match-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.match-header {
    text-align: center;
    margin-bottom: 40px;
}

.match-league-badge {
    display: inline-block;
    background: #f8f9fa;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.live-indicator {
    color: #dc3545;
    margin-left: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.match-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.match-content {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

/* League Hub Styling */
.league-hub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.league-navigation {
    margin: 30px 0;
}

.league-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.league-btn {
    padding: 8px 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.league-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.league-btn.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.match-card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s;
}

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

.btn-view-packages {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

.btn-view-packages:hover {
    background: #0052a3;
    color: white;
}

/* Football Hub Styling */
.football-hub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.league-card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    flex-direction: column;
}

.league-card:hover {
    border-color: #0066cc;
    transform: translateY(-2px);
}

.league-icon {
    font-size: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .vip-booking-widget {
        padding: 20px;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .match-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .league-buttons {
        flex-direction: column;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
    }
}

.upcoming-matches-section{
    margin-top: 50px;
    display: none;
}


/* Club Pages */
.club-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.football-breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.football-breadcrumbs a {
    color: #0073aa;
    text-decoration: none;
}

.football-breadcrumbs a:hover {
    text-decoration: underline;
}

.club-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.club-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.club-info {
    flex: 1;
}

.club-title {
    margin: 0 0 10px 0;
    font-size: 32px;
}

.club-description {
    margin-bottom: 15px;
    line-height: 1.6;
}

.club-league {
    font-size: 16px;
}

.club-league .label {
    font-weight: bold;
    margin-right: 5px;
}

.club-league .league-link {
    color: #0073aa;
    text-decoration: none;
}

/* Stats */
.club-stats {
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Matches */
.club-matches {
    margin-bottom: 40px;
}

.matches-list {
    display: grid;
    gap: 15px;
}

.match-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.match-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.match-link {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.match-type-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.match-type-badge.home {
    background: #e8f5e9;
    color: #2e7d32;
}

.match-type-badge.away {
    background: #fff3e0;
    color: #ef6c00;
}

.match-date {
    font-size: 14px;
    color: #666;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 18px;
}

.match-teams .team {
    flex: 1;
}

.match-teams .club-team {
    font-weight: bold;
}

.match-teams .vs {
    color: #666;
    font-weight: bold;
}

.match-details {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.match-cta {
    text-align: right;
}

.cta-text {
    color: #0073aa;
    font-weight: bold;
}

/* Clubs Grid in League */
.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.club-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.club-card:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.club-card .club-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.club-info {
    flex: 1;
}

.club-card .club-name {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.club-match-count {
    font-size: 12px;
    color: #666;
}

.club-arrow {
    color: #0073aa;
    font-size: 20px;
}

/* Navigation */
.club-navigation {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.btn, .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: #6c757d;
}

.btn:hover, .btn-secondary:hover {
    opacity: 0.9;
}

/* Leagues List */
.leagues-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.league-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.league-tag:hover {
    background: #e9ecef;
}

.league-name {
    font-weight: bold;
}

.match-count {
    color: #666;
    font-size: 12px;
}
.club-card-inner{
    background: white; 
    border-radius: 10px; 
    padding: 25px; 
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease; 
    height: 100%;
    width: 100%;
}
.card-content-small svg path{
    fill: #009c9c;
}