/* ===== MODERN URBAN THEME - MAIN STYLES ===== */
@import url('header.css');
@import url('footer.css');

:root {
    /* Modern Urban Color Palette */
    --vibrant-red: #E63946;
    --teal: #2A9D8F;
    --mustard: #E9C46A;
    --rich-black: #0F0F0F;
    --dark-surface: #1E1E1E;
    --pure-white: #FFFFFF;
    --off-white: #F5F5F5;
    --medium-gray: #2A2A2A;
    --light-gray: #3A3A3A;
    --accent-teal-light: #4FB3A6;
    --accent-red-dark: #C92C3A;
    
    /* Font Family - Modern Alternatives */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif; /* Modern replacement for Cormorant Garamond */
    --font-display: 'Clash Display', sans-serif; /* Optional: for headings if available */
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--rich-black);
    color: var(--off-white);
    line-height: 1.6;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-family: var(--font-secondary);
    color: var(--pure-white);
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-family: var(--font-secondary);
    margin-bottom: 20px;
    color: var(--pure-white);
    font-weight: 600;
}

h2 span {
    color: var(--mustard);
    border-bottom: 3px solid var(--teal);
    padding-bottom: 5px;
}

h3 {
    color: var(--pure-white);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-family: var(--font-primary);
    color: var(--off-white);
    line-height: 1.7;
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--off-white);
    opacity: 0.7;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.15);
    color: var(--vibrant-red);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--vibrant-red);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--pure-white);
    border-color: var(--teal);
}

.btn-gold {
    background: var(--mustard);
    color: var(--rich-black);
    border: 2px solid var(--mustard);
    font-weight: 700;
}

.btn-gold:hover {
    background: transparent;
    color: var(--mustard);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '⚡';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--mustard);
}

.hero::after {
    content: '⚡';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 15rem;
    opacity: 0.03;
    color: var(--teal);
    transform: rotate(-15deg);
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1 1 400px;
}

.hero-badge {
    display: inline-block;
    color: var(--mustard);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--teal);
    padding-bottom: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.hero-left h1 .gold-text {
    color: var(--mustard);
    display: block;
    font-size: 4rem;
    margin-top: 5px;
    text-shadow: 0 2px 10px rgba(233, 196, 106, 0.3);
}

.hero-left p {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    font-family: var(--font-secondary);
}

.hero-stat-label {
    color: var(--mustard);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-right {
    flex: 1 1 400px;
}

/* Hero Card */
.hero-card {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(42, 157, 143, 0.3);
}

.hero-card-header span {
    color: var(--mustard);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
}

.hero-card-header small {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
}

.hero-card-item:hover {
    background: rgba(42, 157, 143, 0.1);
}

.hero-card-rank {
    width: 30px;
    height: 30px;
    background: var(--vibrant-red);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-card-info {
    flex: 1;
}

.hero-card-info h4 {
    color: var(--pure-white);
    font-size: 1rem;
    margin-bottom: 3px;
    font-family: var(--font-secondary);
}

.hero-card-info p {
    color: var(--mustard);
    font-size: 0.8rem;
    margin: 0;
    font-family: var(--font-primary);
}

.hero-card-bonus {
    color: var(--teal);
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(42, 157, 143, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(42, 157, 143, 0.3);
}

/* ===== SRIJ TRUST BADGE ===== */
.srij-badge {
    padding: 30px 0;
    background: var(--dark-surface);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-item i {
    font-size: 2rem;
    color: var(--teal);
}

.badge-item span {
    font-weight: 600;
    color: var(--off-white);
    font-family: var(--font-primary);
}

/* ===== FEATURED BOOKMAKERS - FLEXBOX ONLY ===== */
.featured-section {
    padding: 60px 0;
}

.featured-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.bookmaker-card {
    background: var(--dark-surface);
    border-radius: 20px;
    padding: 30px 25px;
    flex: 1 1 33.3%;
    max-width: 350px;
    position: relative;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.bookmaker-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: var(--shadow-lg);
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--vibrant-red);
    color: var(--pure-white);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-family: var(--font-primary);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.card-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vibrant-red), var(--teal));
    color: var(--pure-white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--pure-white);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars i {
    color: var(--mustard);
    font-size: 0.9rem;
}

.rating-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    font-family: var(--font-primary);
}

.card-bonus {
    background: rgba(42, 157, 143, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    text-align: center;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.bonus-label {
    display: block;
    font-size: 0.7rem;
    color: var(--mustard);
    opacity: 0.8;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

.bonus-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pure-white);
    font-family: var(--font-secondary);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--off-white);
    opacity: 0.9;
    font-family: var(--font-primary);
}

.feature-item i {
    color: var(--teal);
    font-size: 0.8rem;
}

.card-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-card {
    flex: 1;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-card-primary {
    background: var(--vibrant-red);
    color: var(--pure-white);
}

.btn-card-primary:hover {
    background: var(--accent-red-dark);
    transform: scale(1.02);
}

.btn-card-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 1px solid var(--teal);
}

.btn-card-secondary:hover {
    background: var(--teal);
    color: var(--pure-white);
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.info-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.info-content {
    flex: 1 1 400px;
}

.info-content p {
    margin-bottom: 20px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-list-item i {
    color: var(--teal);
    font-size: 1.2rem;
}

.info-list-item span {
    color: var(--off-white);
    font-family: var(--font-primary);
}

.info-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.wine-circle {
    width: 300px;
    height: 300px;
    background: rgba(42, 157, 143, 0.05);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--vibrant-red);
}

.wine-circle i {
    font-size: 5rem;
    color: var(--mustard);
    margin-bottom: 15px;
}

.wine-circle span {
    font-size: 1.2rem;
    color: var(--pure-white);
    font-family: var(--font-secondary);
    font-weight: 500;
}

/* ===== PAYMENT METHODS ===== */
.payment-section {
    padding: 60px 0;
}

.payment-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
}

.payment-item i {
    font-size: 2rem;
    color: var(--mustard);
}

.payment-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--off-white);
    font-family: var(--font-primary);
}

/* ===== RESPONSIBLE GAMING ===== */
.responsible-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--vibrant-red) 0%, var(--teal) 100%);
    color: var(--pure-white);
}

.responsible-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.responsible-flex i {
    font-size: 3rem;
    color: var(--mustard);
}

.responsible-flex p {
    color: var(--pure-white);
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0;
    font-family: var(--font-primary);
    opacity: 1;
}

.responsible-flex a {
    color: var(--mustard);
    text-decoration: none;
    font-weight: 600;
}

.responsible-flex a:hover {
    text-decoration: underline;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--rich-black) 100%);
    border: 2px solid var(--teal);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-box h2 {
    margin-bottom: 20px;
}

.cta-box p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Card Links */
.hero-card-item-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: all 0.3s;
    border-radius: 10px;
}

.hero-card-item-link:hover {
    background: rgba(42, 157, 143, 0.1);
    transform: translateX(5px);
}

.hero-card-item-link .hero-card-item {
    margin-bottom: 0;
    padding: 10px;
}

.hero-card-item-link:hover .hero-card-item {
    background: transparent;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-left h1 {
        font-size: 3rem;
    }
    
    .hero-left h1 .gold-text {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-left h1 .gold-text {
        font-size: 3rem;
    }
    
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .badge-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .info-list-item {
        justify-content: center;
    }
    
    .responsible-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .payment-flex {
        gap: 20px;
    }
    
    .payment-item {
        min-width: 80px;
    }
}
/* ===== ABOUT PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '⚡';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--mustard);
}

.page-hero::after {
    content: '⚡';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 10rem;
    opacity: 0.03;
    color: var(--teal);
    transform: rotate(-15deg);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-block;
    color: var(--teal);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--vibrant-red);
    padding-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.page-hero h1 span {
    color: var(--mustard);
    position: relative;
    display: inline-block;
}

.page-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(230, 57, 70, 0.3);
    z-index: -1;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--off-white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--rich-black);
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.mission-content {
    flex: 1 1 500px;
}

.mission-content h2 {
    margin-bottom: 25px;
}

.mission-text {
    margin-bottom: 20px;
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.8;
}

.mission-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    font-family: var(--font-secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--mustard);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

.mission-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.image-circle {
    width: 350px;
    height: 350px;
    background: rgba(42, 157, 143, 0.05);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--vibrant-red);
    position: relative;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.image-circle i {
    font-size: 5rem;
    color: var(--teal);
    margin-bottom: 15px;
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.image-circle span {
    font-size: 2rem;
    color: var(--pure-white);
    font-family: var(--font-secondary);
    font-weight: 700;
    animation: counterRotate 20s linear infinite;
}

.image-circle small {
    color: var(--mustard);
    font-size: 1rem;
    animation: counterRotate 20s linear infinite;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--dark-surface);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--vibrant-red));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--vibrant-red);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--teal);
    transition: var(--transition);
}

.value-card:hover .value-icon i {
    color: var(--pure-white);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--mustard);
}

.value-card p {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--rich-black);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.team-card {
    background: var(--dark-surface);
    border-radius: 20px;
    padding: 40px 30px 30px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    border: 1px solid rgba(42, 157, 143, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '⚡';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 5rem;
    opacity: 0.05;
    color: var(--mustard);
    transform: rotate(-10deg);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-image {
    margin-bottom: 20px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--vibrant-red), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--mustard);
}

.team-avatar i {
    font-size: 4rem;
    color: var(--pure-white);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--pure-white);
}

.team-role {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social-link {
    width: 36px;
    height: 36px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    transition: var(--transition);
    border: 1px solid rgba(42, 157, 143, 0.3);
}

.team-social-link:hover {
    background: var(--teal);
    color: var(--pure-white);
    transform: translateY(-3px);
}

/* Methodology Highlight */
.methodology-highlight {
    padding: 60px 0;
    background: var(--dark-surface);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
    border: 1px solid var(--teal);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.03;
    color: var(--mustard);
    white-space: nowrap;
    width: 100%;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--vibrant-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--pure-white);
}

.highlight-box h2 {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.highlight-box p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--off-white);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--rich-black);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--dark-surface);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--teal);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--pure-white);
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 600;
}

.faq-question i {
    color: var(--teal);
    transition: transform 0.3s;
}

.faq-item.active .faq-question {
    background: rgba(42, 157, 143, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--mustard);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--mustard);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .mission-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-stats {
        justify-content: center;
    }
    
    .image-circle {
        width: 280px;
        height: 280px;
    }
    
    .values-grid, .team-grid {
        gap: 20px;
    }
    
    .value-card, .team-card {
        max-width: 100%;
    }
    
    .highlight-box {
        padding: 30px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .mission-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .image-circle {
        width: 240px;
        height: 240px;
    }
    
    .image-circle i {
        font-size: 3rem;
    }
    
    .image-circle span {
        font-size: 1.5rem;
    }
}
/* ===== METHODOLOGY PAGE STYLES ===== */

/* Methodology Hero */
.methodology-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.methodology-hero::before {
    content: '⚡⚡⚡';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 15rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--teal);
}

.methodology-hero::after {
    content: '✓✓✓';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 12rem;
    opacity: 0.03;
    color: var(--mustard);
    transform: rotate(-15deg);
}

.methodology-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Intro Section */
.methodology-intro {
    padding: 80px 0;
    background: var(--dark-surface);
}

.intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 2 1 500px;
}

.intro-content h2 {
    margin-bottom: 25px;
}

.intro-text {
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.intro-stats {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.intro-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
}

.intro-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.intro-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.intro-stat-label {
    font-size: 0.8rem;
    color: var(--mustard);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    font-weight: 600;
}

/* Criteria Section */
.criteria-section {
    padding: 80px 0;
    background: var(--rich-black);
}

.criteria-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.criterion-card {
    background: var(--dark-surface);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
}

.criterion-card:hover {
    border-color: var(--teal);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.criterion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.criterion-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.criterion-icon i {
    font-size: 2rem;
    color: var(--teal);
}

.criterion-title {
    flex: 1;
}

.criterion-title h3 {
    color: var(--pure-white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.criterion-weight {
    color: var(--mustard);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(233, 196, 106, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.criterion-score {
    margin-bottom: 15px;
}

.score-badge {
    background: var(--vibrant-red);
    color: var(--pure-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.criterion-content p {
    color: var(--off-white);
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.7;
}

.criterion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.criterion-list li {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.criterion-list li i {
    color: var(--teal);
    font-size: 0.8rem;
}

/* Scoring System */
.scoring-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.scoring-box {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(42, 157, 143, 0.05) 100%);
    border: 1px solid var(--teal);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.scoring-box h2 {
    text-align: center;
    margin-bottom: 10px;
}

.scoring-box > p {
    text-align: center;
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 40px;
}

.scoring-grid {
    max-width: 600px;
    margin: 0 auto 20px;
}

.scoring-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.scoring-range {
    min-width: 70px;
    font-weight: 700;
    color: var(--teal);
    font-family: var(--font-secondary);
}

.scoring-label {
    min-width: 100px;
    color: var(--pure-white);
    font-size: 0.9rem;
}

.scoring-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.scoring-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s;
}

.scoring-note {
    text-align: center;
    color: var(--mustard);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
}

/* Testing Process */
.testing-section {
    padding: 80px 0;
    background: var(--rich-black);
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal), var(--vibrant-red));
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--vibrant-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pure-white);
    position: relative;
    z-index: 2;
    border: 3px solid var(--teal);
    box-shadow: 0 0 20px rgba(42, 157, 143, 0.3);
}

.timeline-content {
    flex: 1;
    padding-bottom: 20px;
}

.timeline-content h3 {
    color: var(--mustard);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--off-white);
    opacity: 0.8;
    line-height: 1.7;
}

/* Verification Section */
.verification-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.verification-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.verification-item {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(42, 157, 143, 0.2);
    transition: var(--transition);
}

.verification-item:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
}

.verification-item i {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 15px;
}

.verification-item h4 {
    color: var(--pure-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.verification-item p {
    color: var(--off-white);
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Transparency Section */
.transparency-section {
    padding: 60px 0 80px;
    background: var(--rich-black);
}

.transparency-box {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(230, 57, 70, 0.1) 100%);
    border: 2px solid var(--mustard);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.transparency-box::before {
    content: '✓✓✓';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    color: var(--teal);
    transform: rotate(-10deg);
}

.transparency-box i {
    font-size: 4rem;
    color: var(--vibrant-red);
    margin-bottom: 20px;
}

.transparency-box h2 {
    margin-bottom: 20px;
}

.transparency-box p {
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-signature {
    color: var(--mustard) !important;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .methodology-hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-stats {
        width: 100%;
    }
    
    .criterion-header {
        flex-direction: column;
        text-align: center;
    }
    
    .criterion-title {
        text-align: center;
    }
    
    .criterion-list {
        grid-template-columns: 1fr;
    }
    
    .scoring-item {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .scoring-range, .scoring-label {
        min-width: auto;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .verification-grid {
        gap: 15px;
    }
    
    .verification-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .transparency-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .scoring-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .scoring-bar {
        width: 100%;
    }
    
    .timeline-item {
        gap: 15px;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* ===== REVIEW PAGES STYLES ===== */

/* Reviews Hero */
.reviews-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.reviews-hero::before {
    content: '⭐⭐⭐';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--mustard);
}

.reviews-hero::after {
    content: '✓✓✓';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 12rem;
    opacity: 0.03;
    color: var(--teal);
    transform: rotate(-15deg);
}

.reviews-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Filter Section */
.filter-section {
    padding: 30px 0;
    background: var(--dark-surface);
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
    border-top: 1px solid rgba(42, 157, 143, 0.2);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--off-white);
}

.filter-label i {
    color: var(--teal);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(42, 157, 143, 0.3);
    color: var(--off-white);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--teal);
    color: var(--mustard);
}

.filter-btn.active {
    background: var(--teal);
    color: var(--pure-white);
    border-color: var(--teal);
}

.filter-sort select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(42, 157, 143, 0.3);
    color: var(--off-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: var(--font-primary);
    cursor: pointer;
}

/* Reviews Grid */
.reviews-grid-section {
    padding: 60px 0;
    background: var(--rich-black);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background: var(--dark-surface);
    border-radius: 20px;
    padding: 25px;
    flex: 1 1 350px;
    max-width: 380px;
    border: 1px solid rgba(42, 157, 143, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-card-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--vibrant-red);
    color: var(--pure-white);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vibrant-red), var(--teal));
    color: var(--pure-white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-family: var(--font-secondary);
}

.review-rating {
    flex: 1;
}

.rating-stars i {
    color: var(--mustard);
    font-size: 0.9rem;
}

.rating-score {
    display: block;
    font-size: 0.9rem;
    color: var(--off-white);
    margin-top: 3px;
}

.review-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--pure-white);
}

.review-bonus {
    background: rgba(42, 157, 143, 0.1);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.bonus-tag {
    display: block;
    font-size: 0.7rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bonus-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mustard);
}

.review-pros-cons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.review-pros, .review-cons {
    flex: 1;
}

.review-pros p, .review-cons p {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--off-white);
    opacity: 0.9;
}

.review-pros i {
    color: var(--teal);
    margin-right: 5px;
}

.review-cons i {
    color: var(--vibrant-red);
    margin-right: 5px;
}

.review-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-review {
    flex: 2;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--teal);
    border-radius: 8px;
    color: var(--pure-white);
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-review:hover {
    background: var(--teal);
    color: var(--pure-white);
}

.btn-review i {
    margin-left: 5px;
    transition: transform 0.3s;
}

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

.btn-review-site {
    flex: 1;
    padding: 10px;
    background: var(--vibrant-red);
    border-radius: 8px;
    color: var(--pure-white);
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-review-site:hover {
    background: var(--accent-red-dark);
    transform: scale(1.02);
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 15px;
    background: var(--rich-black);
    padding: 5px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: var(--teal);
    color: var(--pure-white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
    color: var(--off-white);
}

.table-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-logo {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--vibrant-red), var(--teal));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--pure-white);
}

.table-rating {
    color: var(--mustard);
    font-weight: 600;
}

.table-rating i {
    font-size: 0.8rem;
    margin-left: 3px;
}

.table-bonus {
    color: var(--pure-white);
    font-weight: 600;
}

.table-good {
    color: var(--teal);
}

.table-mid {
    color: var(--mustard);
}

.table-btn {
    display: inline-block;
    padding: 6px 15px;
    background: var(--vibrant-red);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.table-btn:hover {
    background: var(--accent-red-dark);
    transform: scale(1.05);
}

/* Individual Review Page */
.breadcrumbs {
    padding: 20px 0;
    background: var(--dark-surface);
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-list a {
    color: var(--teal);
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb-list a:hover {
    color: var(--mustard);
}

.breadcrumb-list i {
    color: var(--mustard);
    font-size: 0.7rem;
}

.breadcrumb-list span {
    color: var(--off-white);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Review Hero */
.review-hero {
    padding: 40px 0 60px;
    background: var(--rich-black);
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.review-hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.review-hero-info {
    flex: 2 1 500px;
}

.review-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-brand-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--vibrant-red), var(--teal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pure-white);
}

.review-brand h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.review-brand h1 span {
    font-size: 1.2rem;
    color: var(--mustard);
    display: block;
}

.review-hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.review-hero-rating .rating-stars i {
    font-size: 1.2rem;
}

.rating-excellent {
    background: rgba(42, 157, 143, 0.2);
    color: var(--teal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(42, 157, 143, 0.2);
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.quick-stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-top: 3px;
}

.review-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.review-hero-badge {
    flex: 1 1 200px;
    display: flex;
    justify-content: center;
}

.hero-badge-content {
    text-align: center;
    padding: 20px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 20px;
    border: 2px dashed var(--mustard);
}

.badge-year {
    display: block;
    font-size: 0.9rem;
    color: var(--teal);
    margin-bottom: 5px;
}

.badge-rank {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--mustard);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Review Layout */
.review-content {
    padding: 60px 0;
    background: var(--rich-black);
}

.review-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.review-main {
    flex: 3 1 600px;
}

.review-sidebar {
    flex: 1 1 300px;
}

/* Pros & Cons */
.pros-cons-box {
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.pros-cons-box h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.pros-cons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pros-list, .cons-list {
    flex: 1 1 250px;
}

.pros-list h3, .cons-list h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--mustard);
    font-size: 1.1rem;
}

.pros-list ul, .cons-list ul {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    margin-bottom: 10px;
    color: var(--off-white);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pros-list i {
    color: var(--teal);
    margin-top: 3px;
}

.cons-list i {
    color: var(--vibrant-red);
    margin-top: 3px;
}

/* Verdict */
.verdict-box {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(230, 57, 70, 0.1) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--teal);
}

.verdict-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.verdict-score {
    text-align: center;
    min-width: 120px;
}

.score-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--mustard);
    line-height: 1;
}

.score-max {
    color: var(--off-white);
    opacity: 0.6;
}

.verdict-text {
    flex: 1;
}

.verdict-text p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.verdict-recommend {
    color: var(--teal);
    font-weight: 600;
}

/* Bonus Detail */
.bonus-detail-box {
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.bonus-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.bonus-detail-info {
    flex: 2 1 400px;
}

.bonus-highlight {
    background: rgba(42, 157, 143, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid var(--teal);
}

.bonus-highlight-label {
    display: block;
    font-size: 0.8rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bonus-highlight-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--mustard);
}

.bonus-terms, .bonus-steps {
    margin: 15px 0 20px;
    padding-left: 20px;
}

.bonus-terms li, .bonus-steps li {
    color: var(--off-white);
    margin-bottom: 8px;
    line-height: 1.6;
}

.bonus-detail-score {
    flex: 1 1 250px;
}

.score-circle {
    width: 150px;
    height: 150px;
    border: 8px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.score-circle-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mustard);
}

.score-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
}

.score-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.score-item:last-child {
    border-bottom: none;
}

/* Review Sections */
.review-sections {
    margin-bottom: 30px;
}

.review-section {
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 15px;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.review-section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--mustard);
}

.review-section h3 i {
    color: var(--teal);
}

.section-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.rating-label {
    color: var(--off-white);
    font-size: 0.9rem;
}

.rating-text {
    color: var(--teal);
    font-weight: 600;
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.sidebar-card h4 {
    color: var(--mustard);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.final-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--mustard);
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
}

.score-breakdown {
    margin-bottom: 20px;
}

.score-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(42, 157, 143, 0.1);
    color: var(--off-white);
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px;
    margin-top: 15px;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.2) 0%, rgba(230, 57, 70, 0.2) 100%);
    border: 2px solid var(--mustard);
}

.bonus-offer {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mustard);
    text-align: center;
    margin: 10px 0;
}

.bonus-code {
    text-align: center;
    color: var(--off-white);
}

.alternative-list {
    list-style: none;
    padding: 0;
}

.alternative-list li {
    margin-bottom: 10px;
}

.alternative-list a {
    display: flex;
    justify-content: space-between;
    color: var(--off-white);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(42, 157, 143, 0.1);
    transition: var(--transition);
}

.alternative-list a:hover {
    color: var(--teal);
    transform: translateX(5px);
}

.alt-rating {
    color: var(--mustard);
}

.last-updated {
    color: var(--off-white);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.last-updated i {
    color: var(--teal);
    margin-right: 5px;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Related Reviews */
.related-reviews {
    padding: 60px 0;
    background: var(--dark-surface);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.related-card {
    background: var(--rich-black);
    border-radius: 15px;
    padding: 20px;
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    border: 1px solid rgba(42, 157, 143, 0.2);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
}

.related-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--vibrant-red), var(--teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin: 0 auto 15px;
}

.related-card h4 {
    color: var(--pure-white);
    margin-bottom: 5px;
}

.related-rating {
    color: var(--mustard);
    margin-bottom: 10px;
}

.related-link {
    color: var(--teal);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.related-link:hover {
    color: var(--mustard);
}

/* Responsive */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-options {
        width: 100%;
    }
    
    .filter-sort {
        width: 100%;
    }
    
    .filter-sort select {
        width: 100%;
    }
    
    .review-hero-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .review-brand {
        flex-direction: column;
    }
    
    .review-hero-rating {
        justify-content: center;
    }
    
    .review-quick-stats {
        justify-content: center;
    }
    
    .review-hero-actions {
        justify-content: center;
    }
    
    .pros-cons-grid {
        flex-direction: column;
    }
    
    .verdict-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-detail-grid {
        flex-direction: column;
    }
    
    .related-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .related-card {
        max-width: 100%;
        width: 100%;
    }
}
/* User Reviews */
.user-reviews {
    margin-top: 30px;
}

.user-reviews h3 {
    color: var(--mustard);
    margin-bottom: 20px;
}

.user-review-item {
    background: var(--dark-surface);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.user-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.user-name {
    color: var(--pure-white);
    font-weight: 600;
}

.user-rating i {
    color: var(--mustard);
    font-size: 0.9rem;
}

.user-comment {
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 8px;
    font-style: italic;
}

.user-date {
    color: var(--teal);
    font-size: 0.8rem;
}
/* Contact Hero */
.contact-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '✉️';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 12rem;
    opacity: 0.03;
    transform: rotate(15deg);
    color: var(--teal);
}

.contact-hero::after {
    content: '📞';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 12rem;
    opacity: 0.03;
    color: var(--mustard);
    transform: rotate(-15deg);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.contact-info-card {
    background: var(--rich-black);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    border: 1px solid rgba(42, 157, 143, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--vibrant-red));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: var(--teal);
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--teal);
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon i {
    color: var(--pure-white);
}

.contact-info-card h3 {
    color: var(--mustard);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-link {
    display: block;
    color: var(--teal);
    text-decoration: none;
    margin: 5px 0;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--mustard);
    transform: scale(1.05);
}

.contact-hours {
    color: var(--off-white) !important;
    opacity: 0.7 !important;
    font-size: 0.85rem !important;
    margin: 5px 0 !important;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    transition: var(--transition);
    border: 1px solid rgba(42, 157, 143, 0.3);
    text-decoration: none;
}

.contact-social-link:hover {
    background: var(--teal);
    color: var(--pure-white);
    transform: translateY(-3px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: var(--rich-black);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-surface);
    border-radius: 30px;
    padding: 50px 40px;
    border: 1px solid rgba(42, 157, 143, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--off-white);
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 250px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    color: var(--off-white);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(42, 157, 143, 0.3);
    border-radius: 8px;
    color: var(--pure-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(42, 157, 143, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
    color: var(--off-white);
}

.form-group select option {
    background: var(--dark-surface);
    color: var(--pure-white);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    flex: 0 0 auto;
}

.checkbox-group label {
    margin-bottom: 0;
    color: var(--off-white);
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--teal);
    text-decoration: none;
}

.checkbox-group a:hover {
    color: var(--mustard);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button i {
    margin-left: 8px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--mustard);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.form-success p {
    color: var(--off-white);
    opacity: 0.8;
}

/* FAQ Contact Section */
.faq-contact-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.faq-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.faq-contact-content {
    flex: 1 1 400px;
}

.faq-contact-content h2 {
    margin-bottom: 15px;
}

.faq-contact-content p {
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 25px;
}

.faq-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-contact-list li {
    margin-bottom: 12px;
}

.faq-contact-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 10px;
    color: var(--off-white);
    text-decoration: none;
    transition: var(--transition);
}

.faq-contact-list a:hover {
    background: rgba(42, 157, 143, 0.1);
    border-color: var(--teal);
    transform: translateX(10px);
}

.faq-contact-list a i:first-child {
    color: var(--teal);
    font-size: 1.2rem;
}

.faq-contact-list a span {
    flex: 1;
}

.faq-contact-list a i:last-child {
    color: var(--mustard);
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.faq-contact-list a:hover i:last-child {
    opacity: 1;
}

.faq-contact-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.help-circle {
    width: 300px;
    height: 300px;
    background: rgba(42, 157, 143, 0.05);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--vibrant-red);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.help-circle i {
    font-size: 5rem;
    color: var(--mustard);
    margin-bottom: 15px;
}

.help-circle span {
    font-size: 1.2rem;
    color: var(--pure-white);
    font-family: var(--font-secondary);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--rich-black);
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: var(--dark-surface);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(42, 157, 143, 0.2);
}

.map-placeholder i.fa-map-marker-alt {
    font-size: 4rem;
    color: var(--vibrant-red);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: var(--mustard);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.map-placeholder p {
    color: var(--off-white);
    opacity: 0.7;
    margin-bottom: 20px;
}

.map-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--teal);
    font-size: 1rem;
}

.map-note i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        flex: 1 1 100%;
    }
    
    .faq-contact-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-contact-list a {
        text-align: left;
    }
    
    .help-circle {
        width: 250px;
        height: 250px;
    }
    
    .help-circle i {
        font-size: 4rem;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-card {
        width: 100%;
        max-width: 100%;
    }
    
    .checkbox-group {
        flex-wrap: wrap;
    }
}
/* ===== AFFILIATE DISCLOSURE PAGE STYLES ===== */

/* Legal Content Section */
.legal-content-section {
    padding: 60px 0;
    background: var(--rich-black);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-surface);
    border-radius: 30px;
    padding: 50px 50px;
    border: 1px solid rgba(42, 157, 143, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Legal Intro */
.legal-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.legal-intro i {
    font-size: 4rem;
    color: var(--teal);
    margin-bottom: 20px;
    background: rgba(42, 157, 143, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}

.legal-intro h2 {
    margin-bottom: 20px;
}

.legal-intro p {
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    color: var(--mustard);
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.legal-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--teal);
    border-radius: 3px;
}

.legal-section p {
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section p a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-section p a:hover {
    color: var(--mustard);
    text-decoration: underline;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    color: var(--off-white);
    opacity: 0.9;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.legal-list li i {
    color: var(--teal);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-list li a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.legal-list li a:hover {
    color: var(--mustard);
    text-decoration: underline;
}

/* Legal Highlight Box */
.legal-highlight-box {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(230, 57, 70, 0.1) 100%);
    border-left: 4px solid var(--teal);
    border-radius: 10px;
    padding: 25px 30px;
    margin: 30px 0;
}

.legal-highlight-box h4 {
    color: var(--mustard);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.legal-highlight-box p {
    color: var(--off-white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.legal-highlight-box p strong {
    color: var(--mustard);
}

.legal-highlight-box .legal-list {
    margin: 15px 0 0 0;
}

.legal-highlight-box .legal-list li:last-child {
    margin-bottom: 0;
}

/* Legal Footer */
.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(42, 157, 143, 0.2);
    text-align: center;
}

.legal-footer p {
    color: var(--off-white);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 5px 0;
}

.legal-footer p strong {
    color: var(--teal);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
    }
    
    .legal-intro i {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
    
    .legal-intro p {
        font-size: 1rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p {
        font-size: 0.95rem;
    }
    
    .legal-highlight-box {
        padding: 20px;
    }
    
    .legal-highlight-box p {
        font-size: 1rem;
    }
    
    .legal-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 20px 15px;
    }
    
    .legal-intro i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    
    .legal-section h3::after {
        width: 40px;
    }
    
    .legal-list li {
        align-items: flex-start;
    }
    
    .legal-list li i {
        margin-top: 2px;
    }
}
/* Additional styles for Privacy Page */

/* Subheadings inside sections */
.legal-section h4 {
    color: var(--off-white);
    font-size: 1.1rem;
    margin: 20px 0 10px;
    font-weight: 600;
    font-family: var(--font-primary);
}

.legal-section h4:first-of-type {
    margin-top: 10px;
}

/* Contact information block */
.legal-section p strong {
    color: var(--teal);
}

/* Address formatting */
.legal-section br {
    display: block;
    content: "";
    margin-top: 5px;
}

/* Nested lists */
.legal-list + h4 {
    margin-top: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-section h4 {
        font-size: 1rem;
    }
    
    .legal-section p br {
        display: none;
    }
    
    .legal-section p {
        display: block;
        margin-bottom: 5px;
    }
}
/* ===== COOKIES POLICY PAGE STYLES ===== */

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.cookies-table thead {
    background: var(--teal);
}

.cookies-table thead tr th {
    padding: 12px 15px;
    text-align: left;
    color: var(--pure-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.cookies-table tbody tr {
    border-bottom: 1px solid rgba(42, 157, 143, 0.2);
}

.cookies-table tbody tr:last-child {
    border-bottom: none;
}

.cookies-table tbody tr td {
    padding: 12px 15px;
    color: var(--off-white);
    font-size: 0.9rem;
}

.cookies-table tbody tr td:first-child {
    font-weight: 600;
    color: var(--mustard);
}

.cookies-table tbody tr:hover {
    background: rgba(42, 157, 143, 0.05);
}

/* Cookie Preferences Button */
.cookie-preferences-btn {
    margin: 25px 0 15px;
    text-align: center;
}

.cookie-preferences-btn .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

/* External Links */
.legal-list a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-list a:hover {
    color: var(--mustard);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .cookies-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .cookies-table thead tr th {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .cookies-table tbody tr td {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .cookie-preferences-btn .btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .cookies-table thead tr th {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .cookies-table tbody tr td {
        padding: 8px;
        font-size: 0.8rem;
    }
}
/* ===== TERMS AND CONDITIONS PAGE STYLES ===== */

/* Additional styles for Terms page */

/* Legal section with alternating icons */
.legal-section .legal-list i.fa-times-circle {
    color: var(--vibrant-red);
}

.legal-section .legal-list i.fa-check-circle {
    color: var(--teal);
}

/* Company identification */
.legal-section ul.legal-list li:first-child {
    margin-top: 5px;
}

/* Contact information */
.legal-section strong {
    color: var(--mustard);
}

/* External links */
.legal-section a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--mustard);
    text-decoration: underline;
}

/* Responsible gambling section highlight */
.legal-section:has(h3:contains("JOGO RESPONSÁVEL")) {
    border-left: 4px solid var(--vibrant-red);
    padding-left: 20px;
    margin-left: -20px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.03) 0%, transparent 100%);
}

/* Help resources */
.legal-section ul.legal-list li .fa-check-circle + a {
    margin-left: 5px;
}

/* Last updated */
.legal-footer p strong {
    color: var(--teal);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section:has(h3:contains("JOGO RESPONSÁVEL")) {
        padding-left: 15px;
        margin-left: -15px;
    }
}

@media (max-width: 480px) {
    .legal-section ul.legal-list li {
        align-items: flex-start;
    }
    
    .legal-section ul.legal-list li i {
        margin-top: 3px;
    }
}
/* ===== RESPONSIBLE GAMBLING PAGE STYLES ===== */

/* Mission Section */
.rg-mission-section {
    padding: 60px 0;
    background: var(--rich-black);
}

.rg-mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.rg-mission-content {
    flex: 2 1 500px;
}

.rg-mission-content h2 {
    margin-bottom: 20px;
}

.rg-mission-content p {
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 15px;
}

.rg-mission-stats {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rg-stat-card {
    background: var(--dark-surface);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.rg-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rg-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mustard);
    line-height: 1;
    margin-bottom: 10px;
}

.rg-stat-label {
    color: var(--off-white);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Warning Signs Section */
.rg-warning-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.rg-warning-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
}

.rg-warning-card {
    background: var(--rich-black);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.rg-warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--vibrant-red);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.rg-warning-card:hover {
    transform: translateY(-5px);
    border-color: var(--vibrant-red);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.rg-warning-card:hover::before {
    transform: scaleX(1);
}

.rg-warning-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.rg-warning-card:hover .rg-warning-icon {
    background: var(--vibrant-red);
}

.rg-warning-icon i {
    font-size: 2rem;
    color: var(--vibrant-red);
    transition: var(--transition);
}

.rg-warning-card:hover .rg-warning-icon i {
    color: var(--pure-white);
}

.rg-warning-card h3 {
    color: var(--mustard);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.rg-warning-card p {
    color: var(--off-white);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.9rem;
}

.rg-warning-cta {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
    padding: 20px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--vibrant-red);
}

.rg-warning-cta p {
    color: var(--off-white);
    font-size: 1.1rem;
    margin: 0;
}

/* Tips Section */
.rg-tips-section {
    padding: 60px 0;
    background: var(--rich-black);
}

.rg-tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.rg-tips-content {
    flex: 2 1 500px;
}

.rg-tips-content h2 {
    margin-bottom: 30px;
}

.rg-tip-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: var(--transition);
}

.rg-tip-item:hover {
    background: rgba(42, 157, 143, 0.05);
    transform: translateX(5px);
}

.rg-tip-number {
    width: 40px;
    height: 40px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pure-white);
    flex-shrink: 0;
}

.rg-tip-text {
    flex: 1;
}

.rg-tip-text h4 {
    color: var(--mustard);
    margin-bottom: 5px;
    font-size: 1rem;
}

.rg-tip-text p {
    color: var(--off-white);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.rg-tips-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.rg-shield {
    width: 300px;
    height: 300px;
    background: rgba(42, 157, 143, 0.05);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--teal);
    animation: pulse 3s infinite;
}

.rg-shield i {
    font-size: 5rem;
    color: var(--teal);
    margin-bottom: 15px;
}

.rg-shield span {
    font-size: 1.2rem;
    color: var(--off-white);
    font-family: var(--font-secondary);
}

.rg-shield strong {
    font-size: 2rem;
    color: var(--mustard);
    font-family: var(--font-secondary);
}

/* Tools Section */
.rg-tools-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.rg-tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.rg-tool-card {
    background: var(--rich-black);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    transition: var(--transition);
}

.rg-tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rg-tool-card i {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 20px;
    background: rgba(42, 157, 143, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.rg-tool-card:hover i {
    background: var(--teal);
    color: var(--pure-white);
}

.rg-tool-card h3 {
    color: var(--mustard);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.rg-tool-card p {
    color: var(--off-white);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Help Section */
.rg-help-section {
    padding: 60px 0;
    background: var(--rich-black);
}

.rg-help-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.rg-help-box h2 {
    margin-bottom: 15px;
}

.rg-help-box p {
    color: var(--off-white);
    opacity: 0.9;
    margin-bottom: 40px;
}

.rg-help-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.rg-help-card {
    background: var(--dark-surface);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    flex: 1 1 250px;
    max-width: 280px;
    transition: var(--transition);
}

.rg-help-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rg-help-card i {
    font-size: 2.5rem;
    color: var(--mustard);
    margin-bottom: 15px;
}

.rg-help-card h3 {
    color: var(--teal);
    margin-bottom: 10px;
}

.rg-help-phone {
    font-size: 2rem;
    font-weight: 700;
    color: var(--mustard);
    margin: 10px 0;
}

.rg-help-link {
    display: inline-block;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    margin: 10px 0;
    transition: var(--transition);
}

.rg-help-link:hover {
    color: var(--mustard);
    text-decoration: underline;
}

/* Exclusion Section */
.rg-exclusion-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.rg-exclusion-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.rg-exclusion-content {
    flex: 1 1 400px;
}

.rg-exclusion-content h2 {
    margin-bottom: 20px;
}

.rg-exclusion-content p {
    color: var(--off-white);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rg-exclusion-content h4 {
    color: var(--mustard);
    margin: 20px 0 10px;
}

.rg-exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.rg-exclusion-list li {
    color: var(--off-white);
    opacity: 0.9;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rg-exclusion-list li i {
    color: var(--teal);
}

.rg-exclusion-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.rg-exclusion-circle {
    width: 300px;
    height: 300px;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--vibrant-red);
}

.rg-exclusion-circle i {
    font-size: 5rem;
    color: var(--vibrant-red);
    margin-bottom: 15px;
}

.rg-exclusion-circle span {
    font-size: 1.5rem;
    color: var(--pure-white);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.rg-exclusion-circle small {
    color: var(--off-white);
    opacity: 0.7;
}

/* Family Section */
.rg-family-section {
    padding: 60px 0;
    background: var(--rich-black);
}

.rg-family-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.rg-family-box h2 {
    margin-bottom: 20px;
}

.rg-family-box p {
    color: var(--off-white);
    opacity: 0.9;
    margin-bottom: 40px;
}

.rg-family-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.rg-family-item {
    flex: 1 1 200px;
    max-width: 220px;
}

.rg-family-icon {
    width: 60px;
    height: 60px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
}

.rg-family-item h4 {
    color: var(--mustard);
    margin-bottom: 10px;
    font-size: 1rem;
}

.rg-family-item p {
    color: var(--off-white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .rg-mission-grid,
    .rg-tips-grid,
    .rg-exclusion-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .rg-mission-content h2,
    .rg-tips-content h2,
    .rg-exclusion-content h2 {
        text-align: center;
    }
    
    .rg-tip-item {
        text-align: left;
    }
    
    .rg-exclusion-list li {
        justify-content: center;
    }
    
    .rg-warning-cta p {
        font-size: 1rem;
    }
    
    .rg-help-phone {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .rg-stat-number {
        font-size: 2rem;
    }
    
    .rg-tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rg-tip-number {
        margin: 0 auto;
    }
    
    .rg-shield,
    .rg-exclusion-circle {
        width: 250px;
        height: 250px;
    }
    
    .rg-shield i,
    .rg-exclusion-circle i {
        font-size: 3.5rem;
    }
    
    .rg-shield strong {
        font-size: 1.5rem;
    }
}
/* Optional: If you want to use Clash Display (requires Google Fonts or similar) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Alternative if you want an even more modern font */
/*
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
:root {
    --font-secondary: 'Space Grotesk', sans-serif;
}
*/