@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root { 
    --gold: #b79b4b;      /* Warm gold - primary accent */
    --navy: #1a2639;       /* Deep navy - dark alternative */
    --grey: #777;          /* kept */
    --light-bg: #f8f9fa;   /* kept */
    --border-light: #e9ecef; /* kept */
}
body { font-family: 'Inter', sans-serif; margin: 0; background: #fff; overflow-x: hidden; }

/* --- E-BOOK SECTION – PREMIUM REDESIGN --- */
.ebook-section {
    padding: 70px 0;
    background: #fff;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* --- HEADER WITH BRANDING --- */
.ebook-section .headContent {
    text-align: center;
    margin-bottom: 50px;
}

.ebook-section .headContent .sub-tag-v25 {
    color: var(--gold, #B8860B);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.ebook-section .headContent h3 {
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    color: var(--navy, #1A2639);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-transform: uppercase;
    margin: 0;
}

.ebook-section .headContent h3 .outline-title {
    color: transparent;
    -webkit-text-stroke: 1.8px var(--navy, #1A2639);
    text-stroke: 1.8px var(--navy, #1A2639);
}

.ebook-section .headContent h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--gold, #B8860B);
    border-radius: 4px;
}

/* --- E-BOOK CARD – LUXURY FEEL --- */
.ebook-card {
    border: 1px solid #eef2f6;
    padding: 20px 16px 20px;
    border-radius: 24px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.ebook-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
    border-color: var(--gold, #B8860B);
}

/* subtle background pattern on hover */
.ebook-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(184,134,11,0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.ebook-card:hover::before {
    opacity: 1;
}

/* --- IMAGE CONTAINER --- */
.ebook-image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 3/4; /* book-like proportion */
}

.ebook-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 10px;
}

.ebook-card:hover .ebook-image img {
    transform: scale(1.06);
}

/* optional badge */
.ebook-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold, #B8860B);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- CONTENT AREA --- */
.ebook-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* meta info (author, pages) */
.ebook-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 11px;
    color: #6f7a84;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ebook-author {
    background: #f0f3f6;
    padding: 4px 12px;
    border-radius: 40px;
}

.ebook-pages {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* rating stars */
.ebook-rating {
    margin-bottom: 10px;
    font-size: 12px;
    color: #f5b342; /* star gold */
    display: flex;
    align-items: center;
    gap: 5px;
}

.ebook-rating .rating-count {
    color: #7a8a9a;
    font-weight: 600;
    font-size: 11px;
}

/* title */
.ebook-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy, #1A2639);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    font-style: italic;
}

/* price */
.ebook-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold, #B8860B);
    margin-bottom: 18px;
    line-height: 1;
    font-style: italic;
}

/* button – elegant */
.ebook-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    text-align: center;
    background: var(--navy, #1A2639);
    color: #fff !important;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-size: 13px;
    margin-top: auto;
    width: 100%;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.ebook-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.ebook-btn:hover {
    background: var(--gold, #B8860B);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(184,134,11,0.4);
}

.ebook-btn:hover i {
    transform: translateX(5px);
}

/* Container Width */
.container_own {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- RESPONSIVE – KEEPING 2 PER ROW ON MOBILE --- */
@media (max-width: 992px) {
    .ebook-section {
        padding: 50px 0;
    }
    
    .ebook-section .headContent h3 {
        font-size: 36px;
    }
    
    .ebook-image {
        aspect-ratio: 3/4;
    }
    
    .ebook-title {
        font-size: 15px;
        min-height: 42px;
    }
    
    .ebook-price {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .ebook-section {
        padding: 40px 0;
    }
    
    .ebook-section .headContent h3 {
        font-size: 32px;
    }
    
    .ebook-section .headContent {
        margin-bottom: 30px;
    }
    
    /* 2 per row - fixed */
    .col-md-4, .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .row.gy-4.gx-3 {
        margin: -8px;
    }
    
    .row.gy-4.gx-3 > [class*="col-"] {
        padding: 8px;
    }
    
    .ebook-card {
        padding: 16px 12px;
    }
    
    .ebook-image {
        aspect-ratio: 3/4;
        border-radius: 16px;
    }
    
    .ebook-image img {
        padding: 6px;
    }
    
    .ebook-meta {
        font-size: 10px;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .ebook-author {
        padding: 3px 8px;
    }
    
    .ebook-title {
        font-size: 14px;
        min-height: 40px;
        margin-bottom: 8px;
    }
    
    .ebook-price {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .ebook-btn {
        padding: 12px 8px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .ebook-section .headContent h3 {
        font-size: 28px;
    }
    
    .ebook-section .headContent .sub-tag-v25 {
        font-size: 11px;
    }
    
    /* Still 2 per row */
    .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .ebook-card {
        padding: 14px 10px;
    }
    
    .ebook-image {
        aspect-ratio: 4/5; /* slightly taller */
        border-radius: 14px;
    }
    
    .ebook-image img {
        padding: 5px;
    }
    
    .ebook-meta {
        font-size: 9px;
    }
    
    .ebook-title {
        font-size: 13px;
        min-height: 36px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .ebook-price {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .ebook-btn {
        padding: 10px 6px;
        font-size: 11px;
        border-radius: 40px;
    }
}

/* Extra small devices - still 2 per row */
@media (max-width: 400px) {
    .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .ebook-section .headContent h3 {
        font-size: 24px;
    }
    
    .ebook-card {
        padding: 12px 8px;
    }
    
    .ebook-image {
        aspect-ratio: 4/5;
    }
    
    .ebook-title {
        font-size: 12px;
        min-height: 34px;
    }
    
    .ebook-price {
        font-size: 16px;
    }
    
    .ebook-btn {
        font-size: 10px;
        padding: 8px 4px;
    }
    
    .ebook-meta {
        font-size: 8px;
    }
}
/* REUSABLE TITLES */
.title-main { font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 32px; color: var(--navy); letter-spacing: -1px; } /* updated */
.brand-line { width: 45px; height: 4px; background: var(--gold); margin: 8px 0 30px; } /* updated */
.brand-line-center { width: 45px; height: 4px; background: var(--gold); margin: 8px auto 40px; } /* updated */
.sub-txt { font-weight: 700; font-size: 11px; color: #999; letter-spacing: 1px; text-transform: uppercase; }

/* Breadcrumbs CSS with Light Gradient */
.breadcrumbs {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.breadcrumbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(183, 155, 75, 0.05) 0%, transparent 50%); /* updated */
    pointer-events: none;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.breadcrumbs h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy); /* updated */
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.breadcrumbs h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(183, 155, 75, 0.5)); /* updated */
    border-radius: 2px;
}

.breadcrumbs p {
    font-size: 14px;
    color: #767C8C;
    margin-bottom: 0;
    font-weight: 300;
}

.breadcrumbs p a {
    color: var(--gold); /* updated */
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumbs p a:hover {
    color: var(--navy); /* updated */
    padding-left: 5px;
}

.breadcrumbs p a:hover::before {
    content: '←';
    position: absolute;
    left: -15px;
    opacity: 0.7;
}

.breadcrumbs p .separator {
    color: #767C8C;
    margin: 0 8px;
    opacity: 0.6;
}

.breadcrumbs p .current-page {
    color: var(--gold); /* updated */
    font-weight: 500;
}

/* Add some subtle animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumbs h1,
.breadcrumbs p {
    animation: fadeInUp 0.5s ease forwards;
}

.breadcrumbs p {
    animation-delay: 0.1s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 25px 0;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .breadcrumbs h1 {
        font-size: 26px;
    }
    
    .breadcrumbs h1::after {
        width: 40px;
        height: 2px;
    }
    
    .breadcrumbs p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .breadcrumbs {
        padding: 20px 0;
        background: linear-gradient(135deg, #fafbfc 0%, #f1f3f5 100%);
    }
    
    .breadcrumbs h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .breadcrumbs p {
        font-size: 12px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .breadcrumbs {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    }
    
    .breadcrumbs h1 {
        color: #e2e8f0;
    }
    
    .breadcrumbs p {
        color: #a0aec0;
    }
    
    .breadcrumbs p a {
        color: var(--gold); /* updated */
    }
    
    .breadcrumbs p a:hover {
        color: #e2e8f0;
    }
}
/* --- 1. FULL SCREEN HERO WRAPPER --- */
.hero-sec-premium { 
    height: 100vh; 
    width: 100%;
    position: relative; 
    background: var(--navy, #1A2639); /* fallback navy */
    display: flex; 
    align-items: center; 
    overflow: hidden; 
}

/* --- 2. GRAPHIC BACKGROUND (CLEAN & MODERN) --- */
.hero-graphic-wrap { 
    position: absolute; 
    inset: 0; 
    z-index: 1; 
}

.hero-svg-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* ensures it covers like video */
}

/* --- 3. CLEAN LEFT-ONLY OVERLAY (NO BOTTOM SHADOW) --- */
.hero-overlay-clean { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(90deg, rgba(26,38,57,0.85) 0%, rgba(26,38,57,0.3) 60%, transparent 100%);
    z-index: 2; 
}

/* --- 4. CONTENT – BRAND COLORS UPDATED --- */
.hero-content { 
    position: relative; 
    z-index: 5; 
    width: 100%; 
    max-width: 800px;
}

.hero-tag {
    color: #B8860B; /* gold */
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 { 
    font-size: clamp(45px, 7vw, 85px);
    font-weight: 900; 
    font-style: italic; 
    color: #fff; 
    line-height: 0.85; 
    margin: 0; 
    text-transform: uppercase;
}

.outline-txt { 
    color: transparent; 
    -webkit-text-stroke: 1.5px #B8860B; /* gold */
    text-stroke: 1.5px #B8860B;
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-top: 25px;
    max-width: 550px;
    line-height: 1.6;
    font-weight: 500;
}

/* --- 5. PREMIUM BUTTON (SHARP & SLEEK) --- */
.hero-btn-premium { 
    background: #B8860B; /* gold */
    color: #fff;
    padding: 22px 50px; 
    font-weight: 900; 
    text-transform: uppercase;
    text-decoration: none !important; 
    border-radius: 4px; 
    display: inline-block; 
    margin-top: 40px; 
    font-size: 15px;
    letter-spacing: 1px;
    transition: 0.4s ease-in-out; 
    border: none;
    cursor: pointer;
}

.hero-btn-premium:hover { 
    background: #fff; 
    color: #1A2639; /* navy */
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* --- 6. MOBILE FIXES --- */
@media (max-width: 768px) {
    .hero-sec-premium { height: 100vh; } 
    
    .hero-content h1 { font-size: 50px; }
    
    .hero-content { 
        text-align: center; 
    }
    
    .hero-subtitle { margin: 20px auto; font-size: 16px; }
}
/* --- SECTION VARIABLES (match your theme) --- */
:root {
    --navy: #1A2639;
    --gold: #B8860B;
}

/* --- 1. SECTION & CENTERED TITLE (enhanced) --- */
.home-section-v25 { 
    background: #fff; 
    padding: 70px 0; 
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.headContent-v25 { 
    margin-bottom: 30px; 
}

.sub-tag-v25 { 
    color: var(--gold); 
    font-weight: 800; 
    font-size: 13px; 
    letter-spacing: 4px; 
    display: block; 
    margin-bottom: 12px; 
    text-transform: uppercase;
    background: rgba(184,134,11,0.08);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
}

.title-main-v25 { 
    font-weight: 900; 
    font-style: italic; 
    font-size: clamp(36px, 5vw, 48px); 
    color: var(--navy); 
    text-transform: uppercase; 
    margin: 0; 
    line-height: 1.1;
}

.outline-title {
    color: transparent;
    -webkit-text-stroke: 1.8px var(--navy);
    text-stroke: 1.8px var(--navy);
    font-style: italic;
}

.brand-line-v25 { 
    width: 80px; 
    height: 4px; 
    background: var(--gold); 
    margin: 20px auto 0; 
    border-radius: 4px;
}

/* --- 2. PRODUCT CARD – PREMIUM OVERLAY STYLE --- */
.product-card-overlay { 
    display: block; 
    position: relative;
    background: var(--navy);
    border-radius: 24px; 
    overflow: hidden; 
    text-decoration: none !important; 
    height: 420px; 
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); 
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.2);
    border: 1px solid rgba(184,134,11,0.15);
}

.p-img-box-v25 { 
    width: 100%; 
    height: 100%; 
    position: relative; 
    overflow: hidden; 
}

.p-main-img-v25 { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.8s ease; 
    opacity: 0.9;
}

/* Refined multi-layer gradient */
.p-mask-v25 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(26,38,57,0.2) 0%, 
        rgba(26,38,57,0.5) 40%,
        rgba(26,38,57,0.95) 100%);
    z-index: 2;
    transition: opacity 0.4s;
}

/* Accent badge – new */
.p-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* --- 3. INFO OVERLAY – BETTER TYPOGRAPHY & SPACING --- */
.p-info-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%;
    padding: 35px 30px; 
    z-index: 5;
    transition: transform 0.4s ease;
}

.p-head-v25 { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    margin-bottom: 15px; 
}

.p-logo-mini-v25 { 
    width: 54px; 
    height: 54px; 
    object-fit: contain; 
    background: rgba(255,255,255,0.12); 
    padding: 8px; 
    border-radius: 12px; 
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.p-title-wrap h3 { 
    margin: 0 0 5px 0; 
    font-weight: 900; 
    color: #fff; 
    font-size: 28px; 
    font-style: italic; 
    text-transform: uppercase; 
    line-height: 1;
    letter-spacing: -0.02em;
}

.p-matches-count { 
    color: var(--gold); 
    font-size: 12px; 
    font-weight: 700; 
    letter-spacing: 1.2px; 
    background: rgba(0,0,0,0.3);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

.p-desc-v25 { 
    color: rgba(255,255,255,0.8) !important; 
    font-size: 15px; 
    line-height: 1.5; 
    margin-bottom: 25px; 
    font-weight: 400;
    max-width: 90%;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* --- 4. CALL TO ACTION BUTTON (REFINED) --- */
.p-btn-v25 { 
    color: #fff; 
    font-weight: 800; 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    display: inline-flex; 
    align-items: center; 
    gap: 12px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.p-btn-v25 i {
    font-size: 12px;
    transition: transform 0.3s;
}

/* --- 5. HOVER EFFECTS – DYNAMIC & UPSCALE --- */
.product-card-overlay:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 30px 45px -10px rgba(0,0,0,0.4); 
    border-color: rgba(184,134,11,0.4);
}

.product-card-overlay:hover .p-main-img-v25 { 
    transform: scale(1.12); 
    opacity: 0.8; 
}

.product-card-overlay:hover .p-mask-v25 {
    background: linear-gradient(180deg, 
        rgba(26,38,57,0.1) 0%, 
        rgba(26,38,57,0.5) 30%,
        rgba(26,38,57,0.98) 100%);
}

.product-card-overlay:hover .p-logo-mini-v25 {
    background: rgba(184,134,11,0.25);
    border-color: var(--gold);
}

.product-card-overlay:hover .p-btn-v25 { 
    color: var(--gold); 
    gap: 18px;
    border-bottom-color: var(--gold);
}

.product-card-overlay:hover .p-btn-v25 i {
    transform: translateX(6px);
}

/* --- 6. MOBILE OPTIMIZATION (KEEPS LUXURY FEEL) --- */
@media (max-width: 768px) {
    .home-section-v25 { padding: 50px 0; }
    .product-card-overlay { height: 380px; border-radius: 20px; }
    .p-info-overlay { padding: 25px 20px; }
    .title-main-v25 { font-size: 36px; }
    .p-title-wrap h3 { font-size: 24px; }
    .p-head-v25 { gap: 12px; }
    .p-logo-mini-v25 { width: 46px; height: 46px; }
    .p-desc-v25 { font-size: 14px; max-width: 100%; }
    .p-card-badge { top: 15px; right: 15px; padding: 4px 12px; }
}

@media (max-width: 480px) {
    .product-card-overlay { height: 350px; }
    .p-info-overlay { padding: 20px; }
    .p-head-v25 { flex-wrap: wrap; }
}

/* --- SECTION VARIABLES --- */
:root {
    --navy: #1A2639;
    --gold: #B8860B;
}

/* --- 1. MASONRY WRAPPER LAYOUT (REFINED) --- */
.masonry-wrapper-v25 { 
    display: flex; 
    gap: 24px; 
    height: 680px; /* balanced fixed height */
}

.m-big-item-v25 { 
    flex: 1.1; 
    height: 100%; 
}

.m-small-grid-v25 { 
    flex: 1; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 24px; 
}

/* --- 2. CARD DESIGN – PREMIUM REFINEMENTS --- */
.masonry-card-v25 { 
    position: relative; 
    border-radius: 24px; 
    overflow: hidden; 
    background: var(--navy);
    height: 100%; 
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.3);
    border: 1px solid rgba(184,134,11,0.1);
}

.m-bg-v25 { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.9s ease; 
    opacity: 0.85; 
}

/* refined gradient overlay – deeper at bottom */
.m-overlay-v25 { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, 
        rgba(26,38,57,0.2) 0%, 
        rgba(26,38,57,0.6) 50%,
        rgba(26,38,57,0.98) 100%);
    z-index: 2;
    transition: opacity 0.4s;
}

/* --- 3. CONTENT & LOGOS --- */
.m-content-v25 { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: 30px 25px; 
    z-index: 5; 
    text-align: left;
}

/* big card logo */
.m-logo-v25 {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 20px;
}

.m-content-v25 h3 { 
    color: #fff; 
    font-weight: 900; 
    font-style: italic; 
    font-size: 34px; 
    margin-bottom: 8px; 
    text-transform: uppercase; 
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* small card header with inline logo */
.m-small-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.m-logo-small-v25 {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 6px;
    border: 1px solid rgba(184,134,11,0.4);
}

.m-content-v25 h3.small-h3-v25 { 
    font-size: 20px; 
    margin-bottom: 0;
    font-style: italic;
}

/* match info tag (big card only) */
.m-match-info {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: rgba(0,0,0,0.5);
    padding: 6px 16px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

/* --- 4. FULL WIDTH BUTTONS (REFINED) --- */
.m-full-btn-v25 { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--gold);
    color: #fff;
    padding: 18px 0;
    text-decoration: none !important;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1.5px;
    border-radius: 60px; /* pill shape for modern look */
    transition: all 0.4s;
    border: 1px solid transparent;
}

.m-full-btn-v25 i {
    font-size: 14px;
    transition: transform 0.3s;
}

.m-full-btn-v25:hover { 
    background: #fff; 
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(184,134,11,0.3);
}

.m-full-btn-v25:hover i {
    transform: translateX(6px);
}

.small-btn-v25 { 
    padding: 14px 0; 
    font-size: 13px;
    border-radius: 40px;
}

/* --- 5. HOVER ANIMATIONS (SMOOTH) --- */
.masonry-card-v25:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px -15px rgba(0,0,0,0.5);
    border-color: rgba(184,134,11,0.3);
}

.masonry-card-v25:hover .m-bg-v25 { 
    transform: scale(1.1); 
    opacity: 0.7; 
}

.masonry-card-v25:hover .m-overlay-v25 {
    background: linear-gradient(180deg, 
        rgba(26,38,57,0.15) 0%, 
        rgba(26,38,57,0.5) 40%,
        rgba(26,38,57,0.98) 100%);
}

/* big card logo subtle hover */
.masonry-card-v25:hover .m-logo-v25 {
    background: rgba(184,134,11,0.2);
    border-color: var(--gold);
}

/* --- 6. MOBILE RESPONSIVE (ENHANCED) --- */
@media (max-width: 991px) {
    .masonry-wrapper-v25 { 
        flex-direction: column; 
        height: auto;
        gap: 20px;
    }
    
    .m-big-item-v25, .masonry-card-v25 { 
        height: 320px; 
    }
    
    .m-small-grid-v25 { 
        grid-template-columns: 1fr;
        gap: 20px;
        height: auto;
    }
    
    .m-small-grid-v25 .masonry-card-v25 { height: 280px; }
    
    .m-content-v25 h3 { font-size: 32px; }
    .m-logo-v25 { width: 60px; height: 60px; padding: 10px; }
}

@media (max-width: 480px) {
    .m-big-item-v25, .masonry-card-v25 { height: 280px; }
    .m-content-v25 { padding: 20px; }
    .m-small-header { gap: 8px; }
    .m-logo-small-v25 { width: 36px; height: 36px; }
}

/* --- MATCH LIST SECTION – REFINED --- */
.match-list-sec {
    background: #fff;
    padding: 60px 0;
}

/* --- 1. TITLE (brand consistent) --- */
.headContent-v25.text-center { 
    margin-bottom: 50px; 
}

.sub-tag-v25 { 
    color: var(--gold, #B8860B); 
    font-weight: 800; 
    font-size: 12px; 
    letter-spacing: 3px; 
    display: block; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
}

.title-main-v25 { 
    font-weight: 900; 
    font-style: italic; 
    font-size: clamp(30px, 5vw, 44px); 
    color: var(--navy, #1A2639); 
    text-transform: uppercase; 
    margin: 0; 
}

.outline-title {
    color: transparent;
    -webkit-text-stroke: 1.8px var(--navy, #1A2639);
    text-stroke: 1.8px var(--navy, #1A2639);
}

.brand-line-v25 { 
    width: 70px; 
    height: 4px; 
    background: var(--gold, #B8860B); 
    margin: 18px auto 0; 
    border-radius: 4px;
}

/* --- 2. MATCH ROW – ELEGANT CARD --- */
.match-box-row-v25 { 
    display: flex; 
    align-items: center; 
    padding: 18px 35px; 
    background: #fff; 
    border: 1px solid #eaeef2; 
    border-radius: 20px; 
    margin-bottom: 16px; 
    text-decoration: none !important; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.match-box-row-v25:hover { 
    border-color: var(--gold, #B8860B); 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px -8px rgba(0,0,0,0.1); 
}

/* --- 3. COLUMN STYLES (DESKTOP) --- */
.m-col-v25 {
    display: flex;
    align-items: center;
}

.date-col-v25 { 
    width: 130px; 
    border-right: 1px solid #e0e8ed; 
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.m-day-v25 { 
    display: block; 
    font-weight: 900; 
    font-style: italic; 
    font-size: 24px; 
    color: var(--navy, #1A2639); 
    line-height: 1.1; 
}

.m-time-v25 { 
    font-size: 12px; 
    color: #6f7a84; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

/* Teams column */
.teams-col-v25 { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 20px; 
    padding: 0 30px; 
}

.team-ico-v25 { 
    width: 44px; 
    height: 44px; 
    object-fit: contain; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
    transition: transform 0.2s;
}

.match-box-row-v25:hover .team-ico-v25 {
    transform: scale(1.05);
}

.match-vs-txt-v25 { 
    font-weight: 900; 
    font-size: 18px; 
    color: var(--navy, #1A2639); 
    text-transform: uppercase; 
    font-style: italic; 
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* Venue column */
.venue-col-v25 { 
    width: 250px; 
    color: #4a5560; 
    font-size: 14px; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    text-transform: uppercase; 
    letter-spacing: 0.4px;
}

.venue-col-v25 i { 
    color: var(--gold, #B8860B); 
    font-size: 14px;
}

/* Button column */
.btn-col-v25 { 
    width: 160px; 
    justify-content: flex-end;
}

.buy-tkt-btn-v25 { 
    background: var(--navy, #1A2639); 
    color: #fff; 
    padding: 12px 28px; 
    border-radius: 40px; 
    font-weight: 800; 
    font-size: 13px; 
    letter-spacing: 1px; 
    transition: all 0.3s; 
    text-align: center; 
    display: inline-block;
    border: 1px solid transparent;
}

.match-box-row-v25:hover .buy-tkt-btn-v25 { 
    background: var(--gold, #B8860B); 
    color: #fff; 
    transform: scale(1.02);
    box-shadow: 0 8px 18px -6px rgba(184,134,11,0.4);
}

/* --- 4. MOBILE RESPONSIVE (UPGRADED) --- */
@media (max-width: 991px) {
    .match-box-row-v25 { 
        flex-direction: column; 
        align-items: stretch; 
        padding: 24px 20px; 
        border-radius: 24px;
    }
    
    /* Date row – centered with bottom border */
    .date-col-v25 { 
        width: 100%; 
        border-right: none; 
        border-bottom: 2px solid #f0f3f6; 
        padding-bottom: 18px; 
        margin-bottom: 18px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .m-day-v25 { font-size: 22px; }
    .m-time-v25 { font-size: 13px; background: #f0f3f6; padding: 4px 12px; border-radius: 40px; }
    
    /* Teams row – horizontal scroll if needed but fine */
    .teams-col-v25 { 
        gap: 12px; 
        padding: 0; 
        margin-bottom: 18px; 
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .team-ico-v25 { width: 38px; height: 38px; }
    .match-vs-txt-v25 { font-size: 16px; white-space: normal; text-align: center; }
    
    /* Venue row */
    .venue-col-v25 { 
        width: 100%; 
        justify-content: center; 
        margin-bottom: 22px; 
        font-size: 13px;
        background: #f8fafc;
        padding: 10px;
        border-radius: 60px;
    }
    
    /* Button full width */
    .btn-col-v25 { 
        width: 100%; 
        justify-content: center;
    }
    
    .buy-tkt-btn-v25 { 
        display: block; 
        width: 100%; 
        padding: 16px 0; 
        font-size: 14px; 
        border-radius: 60px;
    }
}

@media (max-width: 480px) {
    .match-box-row-v25 { padding: 20px 15px; }
    .m-day-v25 { font-size: 20px; }
    .team-ico-v25 { width: 32px; height: 32px; }
    .match-vs-txt-v25 { font-size: 14px; }
}

/* 5. CLOTHING */
.clothing-card { background: #fff; border: 1px solid #eee; border-radius: 15px; overflow: hidden; transition: 0.3s; text-align: center; }
.c-img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.c-body { padding: 25px; }
.c-body h4 { font-weight: 900; font-style: italic; margin-bottom: 15px; text-transform: uppercase; color: var(--navy); } /* updated */
.shop-link { color: var(--gold); font-weight: 900; text-decoration: none; font-size: 13px; } /* updated */

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 40px; }
    .masonry-wrapper { flex-direction: column; height: auto; }
    .m-big-item { height: 450px; }
    .match-box-row { flex-direction: column; text-align: center; gap: 15px; padding: 20px; }
    .venue-col { width: 100%; text-align: center; padding: 0; }
    .btn-col { width: 100%; }
    .buy-tkt-btn { width: 100%; padding: 15px; } /* Full width Ticket Button */
}
/* --- TABS DESIGN --- */
.premium-tabs-nav {
    display: flex; justify-content: center; gap: 30px; list-style: none; padding: 0; margin-bottom: 50px;
}
.tab-trigger { cursor: pointer !important; text-align: center; transition: 0.3s; }
.tab-icon-box {
    width: 80px; height: 80px; background: #fff; border: 1px solid #eee; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; padding: 10px; margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.tab-icon-box img { width: 100%; height: 100%; object-fit: contain; }
.tab-trigger span { color: #666; font-weight: 700; font-size: 13px; text-transform: uppercase; }
.tab-trigger.active .tab-icon-box { border-color: var(--gold); box-shadow: 0 0 15px rgba(183, 155, 75, 0.2); } /* updated */
.tab-trigger.active span { color: var(--gold); } /* updated */

/* Visibility */
.tab-panel { display: none !important; }
.tab-panel.active { display: block !important; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- MATCH CARDS --- */
.match-row-card {
    background: #ffffff; border: 1px solid #f0f0f0; border-radius: 12px;
    margin-bottom: 15px; box-shadow: 0 2px 12px rgba(0,0,0,0.03); transition: 0.3s;
}
.match-card-link { text-decoration: none !important; display: block; }
.match-row-card:not(.is-disabled):hover {
    transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0,0,0,0.08); border-color: var(--gold); /* updated */
}

.match-flex-wrapper { display: flex; align-items: center; padding: 20px 30px; }

/* Date Alignment */
.col-date-time { text-align: center; padding-right: 25px; border-right: 2px solid #f8f8f8; min-width: 100px; }
.m-day { font-size: 24px; font-weight: 900; color: var(--navy); line-height: 1; } /* updated */
.m-month { font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; } /* updated */
.m-time { font-size: 11px; color: #999; margin-top: 4px; }

/* Center Content Alignment */
.col-match-info { flex-grow: 1; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
.team-img-mini { width: 50px; height: 50px; object-fit: contain; }
.match-details-center { text-align: center; flex: 1; }
.match-main-name { font-size: 17px; font-weight: 800 !important; color: var(--navy); text-transform: uppercase; font-style: italic; margin: 0 0 5px 0; } /* updated */
.venue-info { color: #666; font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 5px; }
.venue-info i { color: var(--gold); } /* updated */

/* Button */
.buy-tkt-btn {
    background: var(--gold); color: #fff !important; padding: 12px 25px; border-radius: 6px; /* updated */
    font-weight: 800; text-transform: uppercase; font-size: 12px; transition: 0.3s;
}
.match-row-card:hover .buy-tkt-btn { background: var(--navy); } /* updated */
.is-disabled { opacity: 0.5; filter: grayscale(1); }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .match-flex-wrapper { flex-direction: column; text-align: center; padding: 20px; gap: 15px; }
    .col-date-time { border-right: none; border-bottom: 1px solid #f0f0f0; width: 100%; padding: 0 0 15px 0; }
    .col-match-info { flex-direction: row; width: 100%; padding: 0; justify-content: space-around; }
    .match-main-name { font-size: 14px; }
    .col-action { width: 100%; }
    .buy-tkt-btn { width: 100%; display: block; text-align: center; padding: 14px; }
}
:root { 
    --gold: #b79b4b;      
    --navy: #1a2639;       
    --dark: #232a31; 
    --bg: #f8f9fa; 
}

/* ==========================================
   1. HERO SECTION (Locked Left-Align)
   ========================================== */
.p-hero-section { background: var(--navy); padding: 70px 0 40px; color: #fff; border-bottom: 5px solid var(--gold); } /* updated */
.p-hero-flex { display: flex !important; justify-content: space-between !important; align-items: center !important; }
.p-hero-badge { background: var(--gold); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 4px; display: inline-block; margin-bottom: 10px; } /* updated */
.p-hero-title { font-size: 38px; font-weight: 900; text-transform: uppercase; font-style: italic; margin: 0; color: #fff; } 
.p-logo-box { background: #fff; padding: 10px; border-radius: 12px; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }
.p-logo-box img { max-width: 80%; height: auto; }

/* Hero Mobile */
@media (max-width: 768px) {
    .p-hero-flex { flex-direction: row !important; text-align: left !important; }
    .p-hero-title { font-size: 22px; max-width: 190px; }
    .p-logo-box { width: 65px; height: 65px; }
}

/* ==========================================
   2. PARENT GRID (Fixtures & Cards)
   ========================================== */
.p-parent-area { padding: 40px 0; background: var(--bg); }
.p-sec-head { margin-bottom: 30px; }
.p-sec-head h3 { font-size: 26px; font-weight: 900; color: var(--navy); text-transform: uppercase; } /* updated */
.p-sec-head p { font-size: 14px; color: #666; margin-top: 5px; }

.p-match-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.p-fixture-card { background: #fff; border-radius: 16px; border: 1px solid #e0e6e9; overflow: hidden; transition: 0.3s; }
.p-fixture-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

/* Head Bar: Date Top, Time Bot, Flags Right */
.p-card-head { background: #fbfcfd; padding: 15px 20px; border-bottom: 1px solid #f1f4f6; display: flex; justify-content: space-between; align-items: center; }
.p-date-top { display: block; font-size: 12px; font-weight: 800; color: var(--gold); text-transform: uppercase; } /* updated */
.p-time-bot { display: block; font-size: 12px; font-weight: 600; color: #555; }
.p-head-flags { display: flex; align-items: center; gap: 8px; }
.p-head-flags img { width: 30px; height: 30px; object-fit: contain; }
.p-vs-txt { font-size: 9px; font-weight: 900; color: #ccc; }

.p-card-body { padding: 25px 20px; }
.p-card-body h4 { font-size: 24px; font-weight: 900; margin: 0; color: var(--navy); line-height: 1.2; } /* updated */
.p-venue { margin-top: 10px; font-size: 13px; color: #888; font-weight: 600; }

.p-card-foot { padding: 0 20px 20px; }
.p-btn-go { display: flex; justify-content: center; align-items: center; gap: 10px; background: var(--navy); color: #fff !important; padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 800; text-decoration: none !important; transition: 0.3s ease; } /* updated */
.p-btn-go:hover { background: var(--gold) !important; box-shadow: 0 5px 15px rgba(183, 155, 75, 0.4); } /* updated */
.p-btn-sold { display: block; text-align: center; background: #eee; color: #aaa; padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 800; }

/* Parent Mobile */
@media (max-width: 768px) {
    .p-match-grid { grid-template-columns: 1fr; }
    .p-card-body h4 { font-size: 19px; }
    .p-sec-head h3 { font-size: 22px; }
    .p-btn-go { padding: 14px; }
}

/* ============================================================
   Sleek Mobile Premium Event Styles
   ============================================================ */

:root {
    /* Color Scheme */
    --primary-color: var(--gold); /* updated */
    --primary-dark: #8e7a3e; /* darker gold */
    --secondary-color: #ff6b35;
    --dark-color: var(--navy); /* updated */
    --light-color: #ffffff;
    --light-bg: #f8f9fa;
    --light-border: #e9ecef;
    --text-color: #495057;
    --text-light: #6c757d;
    --success-color: #28a745;
    --danger-color: #ff4757;
    --warning-color: #ffc107;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    
    /* Transitions */
    --transition: all 0.2s ease;
}

/* ========== BASE RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    background: var(--light-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== SLEEK HERO SECTION ========== */
.p-premium-hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.p-hero-bg-container {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.p-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.p-hero-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
                rgb(12 45 104 / 90%) 0%,
                rgb(12 45 104 / 70%) 50%,
                rgb(12 45 104 / 40%) 100%);
    z-index: 2;
}

.p-hero-content-wrapper {
    position: relative;
    z-index: 3;
    color: white;
    padding: 25px 0;
    width: 100%;
}

/* Hero Badges - Sleek */
.p-hero-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.p-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.p-badge-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark-color);
    border: none;
}

.p-badge-guarantee {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.p-badge-urgency {
    background: var(--danger-color);
    color: white;
    animation: pulse 2s infinite;
}

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

/* Hero Titles - Sleek */
.p-hero-titles {
    margin-bottom: 20px;
}

.p-hero-main-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    color: #fff; /* ensure visibility */
}

.p-hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
    color: #fff;
}

/* Event Details Grid - Sleek */
.p-event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.p-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.p-detail-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    color: var(--gold); /* updated */
}

.p-detail-content {
    flex: 1;
}

.p-detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 3px;
    color: #fff;
}

.p-detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.p-time {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

/* Mobile Quick Access - Sleek */
.p-mobile-quick-access {
    margin-top: 20px;
}

.p-quick-ticket-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.p-quick-ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ========== SLEEK QUICK STATS BAR ========== */
.p-quick-stats-bar {
    background: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--light-border);
}

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

.p-stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.p-stat-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.p-stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.p-stat-info {
    flex: 1;
}

.p-stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 3px;
}

.p-stat-text {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* ========== MAIN CONTENT - SLEEK ========== */
.container.p-main-content-wrapper {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* Event Description Card - Sleek */
.p-event-description-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
}

.p-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.p-section-title i {
    color: var(--primary-color);
    font-size: 14px;
}

.p-description-content {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 13px;
}

.p-description-content p {
    margin-bottom: 12px;
}

.p-expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.p-expandable-content.active {
    max-height: 1000px;
    margin-bottom: 15px;
}

.p-highlight-points {
    background: #e3f2fd;
    padding: 15px;
    border-radius: var(--radius-md);
    margin-top: 15px;
}

.p-point {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-color);
}

.p-point i {
    color: var(--success-color);
    font-size: 12px;
}

.p-point:last-child {
    margin-bottom: 0;
}

.p-read-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0;
    transition: var(--transition);
}

.p-read-more-btn:hover {
    color: var(--primary-dark);
}

.p-read-more-btn i {
    font-size: 12px;
}

/* Mobile Map Card - Sleek */
.p-mobile-map-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
}

.p-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.p-view-map-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.p-view-map-btn:hover {
    background: var(--primary-dark);
}

.p-map-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.p-stadium-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.p-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.p-map-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.p-map-overlay i {
    font-size: 20px;
    margin-bottom: 5px;
}

.p-map-overlay span {
    font-size: 12px;
    font-weight: 500;
}

/* ========== SLEEK TICKET SECTION ========== */
.p-ticket-section {
    margin-bottom: 30px;
}
.p-price-currency, .p-total-amount { font-family: Arial, sans-serif !important; }
.p-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.p-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-ticket-count {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-light);
}

.p-ticket-count i {
    color: var(--primary-color);
    font-size: 12px;
}

.p-header-right {
    display: flex;
    align-items: center;
}

.p-sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-border);
}

.p-sort-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.p-sort-select {
    border: none;
    background: transparent;
    font-size: 12px;
    color: var(--dark-color);
    font-weight: 500;
    cursor: pointer;
    outline: none;
    min-width: 120px;
}

/* Ticket Card - Sleek */
.p-ticket-listings {
    display: grid;
    gap: 15px;
}

.p-ticket-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
    transition: var(--transition);
}

.p-ticket-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.p-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.p-ticket-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.p-ticket-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.p-ticket-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.p-badge-digital {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.p-badge-lowstock {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

/* Ticket Features - Sleek */
.p-ticket-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-border);
}

.p-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-color);
}

.p-feature-item i {
    color: var(--primary-color);
    font-size: 12px;
    min-width: 14px;
}

/* Quantity Selector - Sleek */
.p-quantity-selector {
    background: var(--light-bg);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.p-quantity-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.p-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--light-border);
    background: white;
    border-radius: var(--radius-sm);
    color: var(--dark-color);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.p-qty-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.p-qty-input {
    width: 50px;
    height: 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    background: white;
    -moz-appearance: textfield;
}

.p-qty-input::-webkit-outer-spin-button,
.p-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.p-qty-text {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 8px;
}

/* Ticket Pricing - Sleek */
.p-ticket-pricing {
    margin-bottom: 15px;
}

.p-original-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.p-original-amount {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.p-discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.p-current-price {
    margin-bottom: 10px;
}

.p-price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.p-price-currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.p-price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.p-price-per {
    font-size: 13px;
    color: var(--text-light);
    margin-left: 4px;
}

.p-price-note {
    font-size: 11px;
    color: var(--success-color);
    font-weight: 500;
}

.p-total-price {
    font-size: 13px;
    color: var(--dark-color);
    font-weight: 500;
    margin-top: 8px;
}

.p-total-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    margin-left: 4px;
}

/* Ticket Actions - Sleek */
.p-ticket-actions {
    display: flex;
    gap: 10px;
}

.p-buy-form {
    flex: 2;
}

.p-buy-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.p-buy-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.p-info-btn {
    flex: 1;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.p-info-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* No Tickets - Sleek */
.p-no-tickets {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px dashed var(--light-border);
}

.p-no-tickets-icon {
    font-size: 40px;
    color: var(--light-border);
    margin-bottom: 15px;
}

.p-no-tickets h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.p-no-tickets p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
}

.p-waitlist-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.p-waitlist-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========== SIDEBAR - SLEEK ========== */
.p-sidebar-sticky {
    position: sticky;
    top: 20px;
}

.p-sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
}

.p-card-header {
    padding: 16px;
    border-bottom: 1px solid var(--light-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.p-card-actions {
    display: flex;
    gap: 8px;
}

.p-action-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--light-border);
    background: white;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.p-action-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.p-card-body {
    padding: 16px;
}

/* Stadium Map Card - Sleek */
.p-map-preview {
    position: relative;
}

.p-stadium-map {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.p-map-legend {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--light-border);
}

.p-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-color);
}

.p-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.p-legend-dot.available { background: var(--success-color); }
.p-legend-dot.limited { background: var(--warning-color); }

/* Trust Card - Sleek */
.p-trust-card {
    background: linear-gradient(135deg, var(--dark-color), #2c3e50);
    color: white;
}

.p-trust-card .p-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.p-trust-card .p-card-title {
    color: white;
}

.p-promise-list {
    display: grid;
    gap: 12px;
}

.p-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.p-promise-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    color: var(--gold); /* updated */
}

.p-promise-content h6 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    color: white;
}

.p-promise-content p {
    font-size: 11px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.p-payment-methods {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.p-payment-title {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 10px;
    text-align: center;
}

.p-payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* Facts Card - Sleek */
.p-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-facts-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-border);
    font-size: 12px;
}

.p-facts-list li:last-child {
    border-bottom: none;
}

.p-facts-list li i {
    color: var(--success-color);
    font-size: 12px;
    min-width: 14px;
}

.p-facts-list li span {
    color: var(--text-color);
}

/* ========== FAQ SECTION - SLEEK ========== */
.p-faq-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-border);
}

.p-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.p-faq-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
    cursor: pointer;
    transition: var(--transition);
}

.p-faq-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.p-faq-card.active {
    border-color: var(--primary-color);
}

.p-faq-question {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
    transition: var(--transition);
}

.p-faq-card:hover .p-faq-question {
    background: #f5f0e0; /* light gold tint */
}

.p-faq-question h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.p-faq-question i {
    color: var(--primary-color);
    font-size: 12px;
    transition: var(--transition);
}

.p-faq-answer {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.p-faq-card.active .p-faq-answer {
    padding: 0 16px 16px;
    max-height: 500px;
}

.p-faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 12px;
}

/* ========== MOBILE BOTTOM BAR - SLEEK ========== */
.p-mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    padding: 12px 0;
    z-index: 1000;
    border-top: 1px solid var(--light-border);
}

.p-bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-bottom-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-bottom-info i {
    font-size: 18px;
    color: var(--primary-color);
}

.p-bottom-text {
    display: flex;
    flex-direction: column;
}

.p-bottom-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.p-bottom-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
}

.p-bottom-btn {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.p-bottom-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Desktop Large */
@media (min-width: 1200px) {
    body {
        font-size: 15px;
    }
    
    .p-hero-main-title {
        font-size: 32px;
    }
    
    .p-hero-subtitle {
        font-size: 16px;
    }
    
    .p-event-details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .p-detail-item {
        padding: 15px;
    }
    
    .p-detail-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .p-detail-value {
        font-size: 14px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .p-main-content-wrapper {
        padding-top: 30px;
    }
    
    /* Show sidebar on desktop */
    .p-sidebar-sticky {
        display: block;
    }
    
    /* Hide mobile-only elements on desktop */
    .p-mobile-quick-access,
    .p-mobile-map-card,
    .p-mobile-bottom-bar {
        display: none;
    }
    
    /* Adjust ticket features for desktop */
    .p-ticket-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* FAQ grid for desktop */
    .p-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .p-hero-main-title {
        font-size: 28px;
    }
    
    .p-hero-subtitle {
        font-size: 16px;
    }
    
    .p-event-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p-ticket-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (Default - sleek design applies) */
@media (max-width: 767px) {
    /* Already styled for mobile with sleek design */
}

/* Small Mobile */
@media (max-width: 480px) {
    .p-hero-main-title {
        font-size: 22px;
    }
    
    .p-hero-subtitle {
        font-size: 13px;
    }
    
    .p-badge {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .p-event-details-grid {
        grid-template-columns: 1fr;
    }
    
    .p-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .p-price-amount {
        font-size: 24px;
    }
    
    .p-buy-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .p-info-btn {
        padding: 12px 8px;
        font-size: 11px;
    }
    
    .p-bottom-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .p-bottom-info {
        justify-content: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .p-hero-main-title {
        font-size: 20px;
    }
    
    .p-hero-subtitle {
        font-size: 12px;
    }
    
    .p-detail-item {
        padding: 10px;
        gap: 10px;
    }
    
    .p-detail-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .p-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .p-price-amount {
        font-size: 22px;
    }
    
    .p-ticket-actions {
        flex-direction: column;
    }
    
    .p-info-btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .p-premium-hero-section,
    .p-quick-stats-bar,
    .p-mobile-quick-access,
    .p-mobile-bottom-bar,
    .p-sidebar-sticky,
    .p-ticket-actions,
    .p-quantity-selector {
        display: none !important;
    }
    
    .container.p-main-content-wrapper {
        padding: 0 !important;
    }
    
    .p-ticket-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        margin-bottom: 15px;
        padding: 15px !important;
    }
}

/* ===== BUCKET EVENTS SECTION – REFINED ===== */
.bucket-events-section {
    background: #fff;
    position: relative;
    padding: 70px 0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.bucket-subtitle {
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Container */
.bucket-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    touch-action: pan-y;
    margin-top: 20px;
}

.bucket-slider-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 15px 0 35px;
}

/* Event Card – premium look */
.bucket-event-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px -8px rgba(0, 20, 30, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(184, 134, 11, 0.12);
}

.bucket-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.25);
    border-color: var(--gold, #B8860B);
}

/* Image Container */
.bucket-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.bucket-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bucket-event-card:hover .bucket-main-img {
    transform: scale(1.1);
}

.bucket-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(26,38,57,0.1) 0%, 
        rgba(26,38,57,0.4) 60%,
        rgba(26,38,57,0.95) 100%);
    z-index: 1;
}

/* Premium Badge */
.bucket-premium-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--gold, #B8860B);
    color: #fff;
    font-weight: 800;
    font-size: 10px;
    padding: 6px 16px;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,215,0,0.3);
}

/* Price Tag – refined */
.bucket-price-tag {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(26,38,57,0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 60px;
    text-align: center;
    backdrop-filter: blur(8px);
    z-index: 3;
    border: 1px solid rgba(184,134,11,0.5);
}

.bucket-from {
    display: block;
    font-size: 9px;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.bucket-price {
    display: block;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    color: var(--gold, #B8860B);
}

/* Content Area */
.bucket-content {
    padding: 28px 24px;
    background: #fff;
}

/* Meta Info */
.bucket-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
}

.bucket-date, .bucket-time {
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bucket-date i, .bucket-time i {
    color: var(--gold, #B8860B);
    width: 16px;
}

/* Title */
.bucket-title {
    color: var(--navy, #1A2639);
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    margin: 0 0 12px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Venue */
.bucket-venue {
    color: #444;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.bucket-venue i {
    color: var(--gold, #B8860B);
    width: 18px;
}

/* Features list */
.bucket-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    padding-top: 4px;
    border-top: 1px dashed rgba(184,134,11,0.2);
}

.bucket-feature {
    color: #444;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.bucket-feature i {
    color: var(--gold, #B8860B);
    font-size: 12px;
}

/* Action Button – sleeker */
.bucket-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold, #B8860B);
    font-weight: 900;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.bucket-action-btn:hover {
    color: var(--navy, #1A2639);
    gap: 16px;
    border-bottom-color: var(--gold, #B8860B);
}

.bucket-action-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.bucket-action-btn:hover i {
    transform: translateX(6px);
}

/* Navigation Arrows – positioned better */
.bucket-slider-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid rgba(184,134,11,0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy, #1A2639);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.bucket-slider-nav:hover {
    background: var(--gold, #B8860B);
    border-color: var(--gold, #B8860B);
    color: #fff;
    box-shadow: 0 10px 20px rgba(184,134,11,0.25);
}

.bucket-nav-prev {
    left: 0;
}

.bucket-nav-next {
    right: 0;
}

/* Dots Indicator – improved */
.bucket-dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.bucket-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.bucket-dot.active {
    background: var(--gold, #B8860B);
    width: 28px;
    border-radius: 20px;
    cursor: default;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
    .bucket-slider-container {
        padding: 0 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .bucket-slider-wrapper {
        gap: 18px;
        padding-bottom: 25px;
    }
    
    .bucket-event-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }
    
    .bucket-slider-nav {
        display: none; /* Hide arrows on mobile, use swipe */
    }
    
    .bucket-title {
        font-size: 22px;
    }
    
    .bucket-content {
        padding: 22px;
    }
    
    .bucket-img-container {
        height: 200px;
    }
    
    /* Hide scrollbar but allow scroll */
    .bucket-slider-container::-webkit-scrollbar {
        display: none;
    }
    .bucket-slider-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media (max-width: 576px) {
    .bucket-event-card {
        flex: 0 0 90%;
    }
    
    .bucket-price {
        font-size: 20px;
    }
    
    .bucket-title {
        font-size: 20px;
    }
    
    .bucket-feature {
        font-size: 12px;
    }
}
/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

/* Section Base */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #2c3e50 100%); /* updated */
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gold); /* updated */
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #c0c9d6;
    margin-top: 25px;
}

/* Slider Container */
.testimonials-slider {
    position: relative;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* ============================================
   TESTIMONIALS SECTION – REFINED BRAND STYLES
   ============================================ */

:root {
    --navy: #1A2639;
    --gold: #B8860B;
}

/* Section Base */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(145deg, var(--navy) 0%, #1e2a3a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="8" fill="rgba(184,134,11,0.05)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header – matching brand typography */
.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.sub-tag-v25 {
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.section-title .outline-title {
    color: transparent;
    -webkit-text-stroke: 1.8px #ffffff;
    text-stroke: 1.8px #ffffff;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 18px auto 0;
    border-radius: 4px;
}

.section-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #b0c0d0;
    margin-top: 25px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Container */
.testimonials-slider {
    position: relative;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden; /* ensure track stays inside */
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    text-align: center;
    margin-bottom: 20px;
}

.quote-icon svg {
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}

.testimonial-content {
    background: white;
    border-radius: 28px;
    padding: 50px 45px 45px;
    box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(184,134,11,0.2);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3a4a;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 450;
}

.testimonial-text strong {
    color: var(--gold);
    font-weight: 700;
}

/* customer info with location */
.customer-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f3f6;
}

.customer-name {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
    margin: 0;
    font-style: italic;
}

.customer-location {
    font-size: 13px;
    color: #7a8a9a;
    font-weight: 600;
    background: #f0f3f6;
    padding: 4px 14px;
    border-radius: 40px;
    letter-spacing: 0.3px;
}

/* Navigation */
.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 45px;
}

.nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(184,134,11,0.3);
}

.nav-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.nav-btn:hover svg path {
    stroke: var(--navy);
}

.nav-btn svg path {
    stroke: white;
    transition: stroke 0.3s;
}

.slider-dots {
    display: flex;
    gap: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(184,134,11,0.6);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 15px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .testimonial-content {
        padding: 40px 30px 35px;
        border-radius: 24px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .customer-name {
        font-size: 18px;
    }
    
    .customer-location {
        font-size: 12px;
    }
    
    .nav-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }
    
    .testimonial-content {
        padding: 35px 20px 30px;
    }
    
    .slider-navigation {
        gap: 20px;
        margin-top: 40px;
    }
    
    .customer-info {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }
}
/* contact page css start */
.contact_us {
	padding: 60px 0;
}

.contact_content {
	padding-right: 100px;
}

.contact_content .title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.contact_content .title .title_img {
	width: 35px;
	height: 35px;
	background-color: var(--gold); /* updated */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_content .title .title_img img {
	width: 20px;
}

.contact_content .title span {
	font-weight: 600;
	font-size: 22px;
	line-height: 21px;
	color: var(--navy); /* updated */
}

.contact_content h2 {
	font-weight: 600;
	font-size: 28px;
	line-height: 32px;
	color: var(--navy); /* updated */
}

.contact_content h2 span {
	font-size: 35px;
}

.contact_content p {
	font-weight: 300;
	font-size: 14px;
	line-height: 21px;
	color: #767C8C;
}

.contact_list ul {
	margin-bottom: 0;
	list-style-type: none;
	padding: 20px 0;
	border-top: 1px solid #F0F3FD;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact_list ul li {
	display: flex;
	align-items: start;
	gap: 15px;
}

.contact_list_icon {
	width: 45px;
	height: 45px;
	background-color: var(--gold); /* updated */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_list_icon i {
	color: #fff;
	font-size: 20px;
}

.contact_list_content h6 {
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 0;
	color: var(--text-color);
}

.contact_list_content p {
	font-weight: 300;
	font-size: 14px;
	line-height: 21px;
	color: #767C8C;
	margin-bottom: 0;
}

.contact_list_content p a {
	color: #767C8C;
	transition: 0.3s ease-in-out;
}

.contact_list_content p a:hover {
	color: var(--gold); /* updated */
}

.contact_social_links {
	padding: 15px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact_social_links a {
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	background-color: var(--gold) !important; /* updated */
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	transition: 0.3s ease-in-out;
}

.contact_social_links a:hover {
	background-color: var(--navy) !important; /* updated */
	color: #fff;
}

.contact_form {
	padding: 35px;
	border-radius: 12px;
	background-color: var(--gold); /* updated */
}

.contact_form h2 {
	font-weight: 500;
	font-size: 28px;
	line-height: 40px;
	color: #ffffff;
	margin-bottom: 20px;
}

.contact_field {
	width: 100%;
	position: relative;
}

.contact_field input {
	width: 100%;
	padding: 9px 10px 9px 45px;
	font-weight: 300;
	font-size: 14px;
	color: #767C8C;
	background-color: #fff;
	border-radius: 8px;
	border: none;
}

.contact_field input::placeholder {
	color: #767C8C80;
}

.contact_field select {
	width: 100%;
	padding: 10px 10px 10px 13px;
	font-weight: 300;
	font-size: 14px;
	color: #767C8C;
	background-color: #fff;
	border-radius: 8px;
	border: none;
}

.contact_field textarea {
	width: 100%;
	height: 165px;
	padding: 15px;
	font-weight: 300;
	font-size: 14px;
	color: #767C8C;
	background-color: #fff;
	border-radius: 8px;
	border: none;
	transition: 0.3s ease-in-out;
}

.contact_field textarea:focus {
	outline-color: var(--navy); /* updated */
}

.contact_field input:focus {
	outline-color: var(--navy); /* updated */
}

.contact_field select:focus {
	outline-color: var(--navy); /* updated */
}

.contact_field textarea::placeholder {
	color: #767C8C80;
}

.contact_field_icon {
	position: absolute;
	left: 20px;
	top: 9px;
}

.contact_field_icon i {
	color: var(--gold); /* updated */
	font-size: 16px;
}

.contact_submit_btn {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 170px;
	height: 40px;
	position: relative;
	background-color: #ffffff;
	border-radius: 8px;
	transition: 0.3s ease-in-out;
}

.contact_submit_btn:hover {
	background-color: var(--navy); /* updated */
}

.contact_submit_btn input {
	width: 100%;
	height: 100%;
	font-weight: 500;
	font-size: 14px;
	line-height: 12px;
	border: none;
	padding-left: 30px;
	text-align: left;
	background: transparent;
	transition: 0.3s ease-in-out;
	color: var(--gold); /* updated */
}

.contact_submit_btn:hover input {
	color: #fff;
}

.contact_submit_icon {
	position: absolute;
	right: 30px;
	top: 9px;
}

.contact_submit_icon i {
	color: var(--gold); /* updated */
	transition: 0.3s ease-in-out;
}

.contact_submit_btn:hover .contact_submit_icon i {
	color: #fff;
}

.contact_map {
	padding: 10px 0 80px 0;
}