@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
/* ================================
GLOBAL RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f5f7fb;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1,
h2,
h3 {
    font-weight: 700;
}

section {
    padding: 70px 0;
}

/* ================================
HEADER
================================ */

.header {
    background: #05080f;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}
.logo a {
    color: #fff;
    text-decoration: none;
}
.menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu li {
    cursor: pointer;
    font-weight: 500;
}
.menu li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
}
.menu .login-btn {
    width: auto;
    background: #f2b90d;
    border: none;
    color: #000;
    padding: 0 25px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.menu .login-btn a{
    color: #000;
}
.menu .login-btn:hover {
    background: #9b7e1e;
    color: #fff;
}
.menu li:hover {
    color: #f2b90d;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================================
HERO SECTION
================================ */

/* HERO SLIDER */

.short-heading-color{
    color: #f2b90d;
}

.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
    padding: 0;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.7s;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* overlay */

.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, hsla(222, 50%, 4%, 0.5), rgba(5, 8, 15, 0.5));
}

/* caption */

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 700px;
    width: 90%;
    z-index: 2;
}

.caption h1 {
    font-family: "Archivo Black", sans-serif;
    text-transform: uppercase;
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.caption p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    background: #f2b90d;
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #9b7e1e;
}

/* arrows */

.slider-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 3;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* dots */

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
}

.dot {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}

/* responsive */

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .caption h1 {
        font-size: 36px;
    }
}

/* ================================
SEARCH SECTION
================================ */

.search-section {
    background: linear-gradient(90deg, #263b6d, #05080f);
    padding: 40px 0;
    padding-bottom: 50px;
}
.search-section h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 0;
}
.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
}

.search-box button {
    background: #f2b90d;
    border: none;
    color: #000;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background: #9b7e1e;
}

/* ================================
TEAMS
================================ */

.teams {
    text-align: center;
}
.teams h2{
    font-size: 40px;
}

.team-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.team-grid a {
    text-decoration: none;
    color: #000;
}
.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.team-card img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 16px;
    font-weight: 600;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ================================
EVENTS
================================ */

.events {
    background: linear-gradient(90deg, #05080f, #263b6d);
    color: white;
    text-align: center;
}
.events h2{
    font-size: 40px;
}
.event-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.event-card {
    background: white;
    color: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-card h3 {
    margin: 10px 0 5px;
}

.event-card p {
    font-size: 14px;
    color: #666;
}

.event-card a {
    display: inline-block;
    text-decoration: none;
    background: #f2b90d;
    border: none;
    color: #000;
    padding: 10px 20px;
    margin: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-8px);
}

/* ================================
VOUCHER SECTION
================================ */

.voucher-section {
    background: #ffffff;
    padding: 80px 5%;
}

.voucher-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.voucher-title {
    font-size: 40px;
    margin-bottom: 10px;
}

.voucher-subtitle {
    color: #777;
    margin-bottom: 50px;
}

.voucher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.voucher-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.voucher-card:hover {
    transform: translateY(-10px);
}

.voucher-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.voucher-content {
    padding: 25px;
}

.voucher-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.voucher-content p {
    color: #666;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f2b90d;
}

.voucher-btn {
    display: inline-block;
    background: #f2b90d;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.voucher-btn:hover {
    background: #9b7e1e;
}
@media (max-width: 768px) {
    .voucher-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
TRIP BANNER
================================ */

.trip-banner {
    background: linear-gradient(90deg, #05080f, #263b6d);
    color: white;
    text-align: center;
}

.trip-banner h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.trip-banner button {
    margin-top: 15px;
    padding: 14px 30px;
    border: none;
    background: #f2b90d;
    color: #000;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.trip-banner button:hover {
    background: #9b7e1e;
}

/* ================================
TESTIMONIALS
================================ */

.review-section {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}

.review-title {
    font-size: 40px;
    margin-bottom: 40px;
}

.review-container {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.review-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.33% - 20px);
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.review-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.review-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #f2b90d;
}

.review-card p {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
    }
}


/* ================================
FOOTER
================================ */

/* FOOTER */

.footer{
background:#05080f;
color:#fff;
padding-top:60px;
font-family:'Poppins',sans-serif;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
padding-bottom:40px;
}

/* FOOTER COLUMN */

.footer-col h3{
font-size:20px;
margin-bottom:15px;
}

.footer-col h4{
font-size:16px;
margin-bottom:15px;
}

.footer-col p{
color:#ccc;
font-size:14px;
line-height:1.6;
margin-bottom: 10px;
}
.footer-col p a{
    color: #ccc;
    text-decoration: none;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#ccc;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#c8a45c;
}


/* SOCIAL ICONS */

.footer-social{
margin-top:15px;
display:flex;
gap:10px;
}

.footer-social a{
width:36px;
height:36px;
display:flex;
align-items:center;
justify-content:center;
background:#222;
border-radius:50%;
color:#fff;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.footer-social a:hover{
background:#c8a45c;
}


/* COPYRIGHT */

.footer-bottom{
border-top:1px solid #222;
text-align:center;
padding:20px;
font-size:14px;
color:#aaa;
}


/* RESPONSIVE */

@media(max-width:992px){

.footer-grid{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

}

@media(max-width:600px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-social{
justify-content:center;
}

}


/* ================================
RESPONSIVE
================================ */

@media (max-width: 1000px) {
    .team-grid,
    .event-grid,
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .exp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }

    .menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a2c55;
        flex-direction: column;
        padding: 20px;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        width: 100%;
    }

    .team-grid,
    .event-grid,
    .more-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Football page css */
.subhero {
    position: relative;
    height: 370px;
    background-image: url("../images/sub-hero-img1.jpg");
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.subhero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.subhero-content {
    position: relative;
    z-index: 2;
}

.subhero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 15px;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .subhero {
        height: 260px;
    }

    .subhero h1 {
        font-size: 28px;
    }
}

.ticket-layout {
    display: flex;
    gap: 40px;
}
.ticket-main {
    width: 70%;
}
.ticket-sidebar {
    width: 30%;
}
.ticket-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.ticket-filters select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.ticket-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ticket-date {
    background: #05080f;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 70px;
}

.ticket-date span {
    font-size: 12px;
}

.ticket-info {
    flex: 1;
    margin-left: 20px;
}

.badges {
    margin-top: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.limited {
    background: #ff4d4d;
    color: white;
}

.available {
    background: #2ecc71;
    color: white;
}

.ticket-price {
    text-align: right;
}
.ticket-price .countdown {
    font-size: 12px;
    margin-top: 5px;
}

.buy-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    background: #f2b90d;
    color: #000;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
}

.buy-btn:hover {
    background: #9b7e1e;
}

.ticket-sidebar {
    position: sticky;
    top: 100px;
    height: 100%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.ticket-sidebar h3 {
    font-size: 25px;
    margin-bottom: 10px;
}
.ticket-sidebar p {
    margin-bottom: 10px;
}

.ticket-sidebar img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sidebar-btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background: #0d3d6b;
    color: white;
    border: none;
    border-radius: 6px;
}

.review-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}
.review-section h2 {
    margin-bottom: 20px;
}

.review-carousel {
    overflow: hidden;
    max-width: 941px;
    margin: auto;
}

.review-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s;
}

.review-card {
    min-width: 385px;
    background: #F5F5F5;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}
@media (max-width: 900px) {
    .ticket-layout {
        display: block;
    }
    .ticket-main {
        width: 100%;
    }
    .ticket-sidebar {
        width: 100%;
    }

    .ticket-filters {
        flex-direction: column;
    }

    .ticket-card {
        align-items: flex-start;
        gap: 10px;
    }

    .ticket-price {
        text-align: left;
    }
}

/* Ticket details page */

/* EVENT HEADER */

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.event-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* DATE BOX */

.event-date {
    background: #0b2c4d;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 80px;
}

.event-date span {
    font-size: 14px;
    display: block;
}

.event-date h2 {
    font-size: 30px;
    margin: 5px 0;
}

/* EVENT CONTENT */

.event-content h1 {
    font-size: 34px;
    margin: 5px 0;
}

.league {
    color: #2b6ef2;
    font-weight: 600;
}

.event-meta {
    margin: 10px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.availability {
    background: #ffe5e5;
    color: #e63946;
    padding: 4px 10px;
    border-radius: 20px;
}

.event-description {
    color: #666;
    max-width: 500px;
}

/* EVENT IMAGE */

.event-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
}

/* MAIN LAYOUT */

.ticket-details-layout {
    display: flex;
    gap: 40px;
}
.ticket-details-layout .ticket-left {
    width: 65%;
}
.ticket-details-layout .ticket-sidebar {
    background: transparent;
    padding: 0;
    width: 35%;
}

/* PACKAGE CARD */

.package-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}
.package-card h2 {
    font-size: 25px;
}
.package-price {
    font-size: 20px;
    color: #f2b90d;
    font-weight: 700;
    margin: 10px 0 20px;
}

.package-features {
    list-style: none;
}

.package-features li {
    margin-bottom: 10px;
    color: #444;
}

/* SEAT MAP */

.seat-map {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    text-align: center;
}

.seat-map img {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
}

/* GALLERY */

.gallery {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* BOOKING SIDEBAR */

.ticket-sidebar .booking-card {
    position: sticky;
    top: 80px;
    background: #0b2c4d;
    color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}
.ticket-sidebar .booking-card .secure {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
}
.ticket-sidebar .booking-card .price {
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0;
}

/* QUANTITY */

.ticket-sidebar .booking-card .ticket-qty {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.ticket-sidebar .booking-card .ticket-qty input {
    width: 60px;
    text-align: center;
    border: none;
    border-radius: 5px;
    margin: 0 10px;
    padding: 8px;
}

.ticket-sidebar .booking-card .qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/* BUTTON */

.ticket-sidebar .booking-card .book-btn {
    width: 100%;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    border: none;
    background: #f2b90d;
    color: #000;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.ticket-sidebar .booking-card .book-btn:hover {
    background: #9b7e1e;
}

/* MOBILE RESPONSIVE */

@media (max-width: 900px) {
    .ticket-layout {
        grid-template-columns: 1fr;
    }

    .event-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FILTER BOX */

.ticket-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    align-items: center;
}

/* INPUT */

.ticket-filter input {
    flex: 1;
    min-width: 220px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.ticket-filter input:focus {
    border-color: #c8a45c;
}

/* SELECT */

.ticket-filter select {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.ticket-filter select:focus {
    border-color: #c8a45c;
}

/* BUTTON */

.ticket-filter button {
    background: #2ecc71;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.ticket-filter a {
    text-decoration: none;
    background: #f2b90d;
    color: #000;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.ticket-filter a:hover {
    background: #b89345;
}

.ticket-filter button:hover {
    background: #229b54;
}

/* MOBILE */

@media (max-width: 768px) {
    .ticket-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .ticket-filter input,
    .ticket-filter select,
    .ticket-filter button {
        width: 100%;
    }
}

/* CONTACT SECTION */

.contact-section {
    padding: 80px 20px;
    background: linear-gradient(90deg, #263b6d, #05080f);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* FORM */

.contact-form h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-form p {
    margin-bottom: 25px;
    color: #fff;
}

.form-row {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    margin-top: 10px;
    background: #f2b90d;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #9b7e1e;
}

/* CONTACT INFO */

.contact-info {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    margin-bottom: 25px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.info-item p {
    color: #666;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




.vip-about {
    padding: 80px 0;
    background: #fff;
}

.vip-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vip-feature {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.vip-feature span {
    color: #f2b90d;
    font-weight: bold;
}

.vip-stadiums {
    padding: 80px 0;
    background: #f6f6f6;
    text-align: center;
}

.stadium-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stadium-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stadium-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.stadium-content {
    padding: 25px;
}
.vip-cta h3{
    color: #000;
}
.vip-cta p{
    color: #000;
    max-width: 900px;
    margin: 10px auto;
}

.vip-cta {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.vip-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #f2b90d;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .vip-about-grid {
        grid-template-columns: 1fr;
    }

    .stadium-grid {
        grid-template-columns: 1fr;
    }

    .vip-hero h1 {
        font-size: 30px;
    }
}

.club-hero {
    height: 420px;
    background: url("images/manchester-united.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.club-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.club-hero-content {
    position: relative;
    text-align: center;
}

.club-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.club-about {
    padding: 80px 0;
    background: #fff;
}

.club-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.club-about h2{
    margin-bottom: 10px;
}

.club-benefits .benefit {
    margin-bottom: 12px;
    font-size: 15px;
}

.club-packages {
    padding: 80px 0;
    background: #f6f6f6;
    text-align: center;
}

.package-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    position: relative;
}

.package-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.match-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f2b90d;
    color: #000;
    padding: 8px 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
}

.package-content {
    padding: 20px;
}

.package-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.match-info {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.package-footer {
    display: block;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 600;
    color: #f2b90d;
}

.package-footer a {
    display: inline-block;
    background: #f2b90d;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}


.club-cta {
    padding: 80px 0;
    background: #fff;
    color: #000;
    text-align: center;
}

.club-btn {
    display: inline-block;
    margin-top: 20px;
    background: #f2b90d;
    padding: 14px 30px;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .club-about-grid {
        grid-template-columns: 1fr;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .club-hero h1 {
        font-size: 30px;
    }
}

.corp-services {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 10px auto 40px;
    color: #666;
}

.corp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.corp-grid h3{
    margin-bottom: 10px;
}
.corp-grid .icon{
    font-size: 40px;
    margin-bottom: 10px;
}

.corp-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.corp-benefits {
    padding: 80px 0;
    background: #f6f6f6;
}
.corp-benefits h2{
    margin-bottom: 10px;
}
.corp-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.corp-benefits-grid ul{
    list-style-type: none;
    margin-left: 10px;
    margin-top: 20px;
}

.corp-image img {
    width: 100%;
    border-radius: 8px;
}

.corp-stadiums {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.stadium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stadium-card {
    background: #ddd;
    color: #000;
    padding: 0;
    border-radius: 6px;
}

.corp-cta {
    padding: 80px 0;
    background: #f0f0f0;
    color: #000;
    text-align: center;
}

.corp-cta-box {
    max-width: 700px;
    margin: auto;
}
.corp-cta .corp-btn{
    display: inline-block;
    margin-top: 20px;
    background: #f2b90d;
    padding: 14px 30px;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .corp-grid {
        grid-template-columns: 1fr;
    }

    .corp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .stadium-grid {
        grid-template-columns: 1fr;
    }

    .corp-hero h1 {
        font-size: 28px;
    }
}


.about-section,
.about-story,
.about-company {
    padding: 80px 0;
    background: #fff;
}

.about-story {
    background: #f0f0f0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-vision {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.center-text {
    max-width: 700px;
    margin: 10px auto 40px;
    color: #666;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.about-company{
    background-color: #f0f0f0;
}
.about-company ul {
    margin-top: 15px;
    margin-left: 20px;
}

.about-company li {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }
}

.concierge-intro {
    padding: 80px 0 40px;
    text-align: center;
    background: #fff;
}

.center-text {
    max-width: 700px;
    margin: 10px auto;
    color: #666;
}

.concierge-services {
    padding: 60px 0;
    background: #f6f6f6;
}

.concierge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.concierge-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.concierge-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.concierge-card h3 {
    margin: 15px 0 10px;
}

.concierge-card p {
    padding: 0 15px 20px;
    color: #555;
    font-size: 14px;
}

.concierge-benefits {
    padding: 80px 0;
    background: #fff;
}

.concierge-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.concierge-image img {
    width: 100%;
    border-radius: 8px;
}

.concierge-text ul {
    margin-top: 15px;
    margin-left: 10px;
    list-style-type: none;
}

.concierge-text li {
    margin-bottom: 10px;
}

.concierge-cta {
    padding: 80px 0;
    background: #f0f0f0;
    color: #000;
    text-align: center;
}

.concierge-btn {
    display: inline-block;
    margin-top: 20px;
    background: #f2b90d;
    color: #000;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .concierge-grid {
        grid-template-columns: 1fr;
    }

    .concierge-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 32px;
}

.faq-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

/* FAQ CONTAINER */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #d4d4d4;
    padding: 15px 0;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

/* ICON */
.faq-question .icon {
    font-size: 22px;
    color: #f2b90d;
    transition: 0.3s;
}

/* ANSWER (HIDDEN) */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #555;
    line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
}




/* SECTION */
.contact-page {
    padding: 80px 20px;
}

.contact-page .contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT FORM */
.contact-page .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-page .contact-form h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.contact-page .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.contact-page .contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-page .contact-form button {
    background: #f2b90d;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contact-page .contact-form button:hover {
    background: #a88945;
}

/* RIGHT INFO */
.contact-page .contact-info {
    flex: 1;
    min-width: 300px;
    background: #fafafa;
    padding: 30px;
    border-radius: 10px;
}

.contact-page .contact-info h3 {
    margin-bottom: 20px;
}

/* ITEM */
.contact-page .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-page .info-icon {
    width: 40px;
    height: 40px;
    background: #f2b90d;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
}

/* WHATSAPP BUTTON */
.contact-page .whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-page .whatsapp-btn:hover {
    background: #1ebe5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-page .contact-container {
        flex-direction: column;
    }
}

.bonus-page {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.bonus-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.bonus-subtitle {
    color: #666;
    margin-bottom: 50px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    margin-bottom: 10px;
}

.bonus-card p {
    color: #666;
    font-size: 14px;
}

.bonus-cta {
    margin-top: 70px;
    background: #111;
    color: #fff;
    padding: 50px 20px;
    border-radius: 12px;
}

.bonus-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #f2b90d;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 900px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}




/* Cart side bar css */
.cart-icon {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

#cart-count {
    background: #f2b90d;
    color: #000;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -10px;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.cart-header #close-cart {
    padding: 5px 10px;
    background: red;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
#cart-sidebar #cart-content {
    overflow: auto;
}

#cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
    z-index: 9999;
    padding: 25px;
}

#cart-sidebar.active {
    right: 0;
}

.view-cart-btn {
    display: block;
    background: #111;
    color: white;
    text-align: center;
    padding: 14px;
    margin-top: 20px;
    text-decoration: none;
}
.add-to-cart-btn {
    background: #c8a45c;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: #a88945;
}
