/* Golden444 - Custom CSS */
/* Variables for easy maintenance (using px and hex as requested) */
:root {
    --body-bg: #0f2230;
    --header-bg: #183242;
    --primary-btn: #ffbe3b;
    --primary-btn-hover: #e0a32e;
    --trans-border-btn: #e4eaf019;
    --trans-border-btn-hover: #e4eaf033;
    --title-text: #ffffff;
    --text-muted: #b0c4d6;
    --highlight-text: #ffbe3b;
    --card-bg: #183242;
    --card-dark-bg: #142836;
    --alt-bg: #204054;
    --footer-bg: #0a1720;
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
}

/* Base Styles */
body {
    background-color: var(--body-bg);
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--title-text);
    font-weight: 700;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    transition: all var(--transition-fast);
}

/* Utilities */
.highlight {
    color: var(--highlight-text);
}
.text-highlight {
    color: var(--highlight-text);
}
.bg-alt {
    background-color: var(--alt-bg);
}
.py-custom {
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    max-width: 800px;
    color: var(--text-muted);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-btn);
    color: #000000;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    transition: all var(--transition-fast);
}
.btn-primary-custom:hover, .btn-primary-custom:focus {
    background-color: var(--primary-btn-hover);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 190, 59, 0.3);
}
.btn-primary-custom:active {
    transform: translateY(0);
}
.btn-outline-custom {
    background-color: transparent;
    color: var(--title-text);
    border: 1px solid var(--trans-border-btn);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all var(--transition-fast);
}
.btn-outline-custom:hover {
    background-color: var(--trans-border-btn-hover);
    color: var(--title-text);
}
.btn-premium-outline {
    background-color: transparent;
    color: var(--highlight-text);
    border: 2px solid var(--highlight-text);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-fast);
    display: inline-block;
}
.btn-premium-outline:hover {
    background-color: var(--highlight-text);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 190, 59, 0.4);
}
.btn-dark-custom {
    background-color: #0f2230;
    color: var(--highlight-text);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    transition: all var(--transition-fast);
}
.btn-dark-custom:hover {
    background-color: #000000;
    color: var(--primary-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.btn-lg-custom {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
}

/* Header */
.main-header {
    background-color: var(--header-bg);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.main-header .navbar-brand{
    max-width: 220px;
    margin: 0;
    padding: 0;
}
.main-header .navbar-brand img {
    width: 100%;
    height: auto;
}
.navbar-dark .navbar-nav .nav-link {
    color: var(--title-text);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    transition: color var(--transition-fast);
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--highlight-text);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 650px;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 34, 48, 0.85); /* Dark overlay */
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    color: #d1e0ec;
}
.hero-cta-wrapper {
    margin-bottom: 40px;
}
.hero-trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 16px;
    color: #e4eaf0;
    flex-wrap: wrap;
    font-weight: 500;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(24, 50, 66, 0.6);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--trans-border-btn);
}
.trust-icon-wrap {
    width: 30px;
    height: 30px;
    background-color: var(--highlight-text);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.hero-trust-line .divider {
    width: 1px;
    height: 20px;
    background-color: var(--trans-border-btn-hover);
}

/* Trust Signals Section */
.trust-signals-section {
    background-color: var(--footer-bg);
    border-bottom: 1px solid var(--trans-border-btn);
}
.trust-signal-item {
    padding: 25px 20px;
    border-radius: 8px;
    background-color: var(--card-bg);
    border: 1px solid var(--trans-border-btn);
    border-top: 3px solid var(--highlight-text);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform var(--transition-normal);
}
.trust-signal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.trust-number {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--title-text);
}
.trust-label {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: var(--highlight-text);
    font-weight: 600;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding: 10px;
}
.about-img-premium {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--trans-border-btn);
}
.section-desc {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Sports Grid Section (Reference Match) */
.premium-card {
    background-color: var(--card-dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 190, 59, 0.3);
}
/* Large Sports Card */
.sport-card-lg {
    padding: 30px;
    height: 100%;
    min-height: 200px;
    align-items: flex-end;
    justify-content: space-between;
}
.sport-card-lg .card-content {
    max-width: 60%;
    z-index: 2;
}
.sport-title-bold {
    font-size: 24px;
    font-weight: 800;
    color: var(--title-text);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.sport-desc-text {
    font-size: 14px;
    margin: 0;
    color: #a0b2c2;
    line-height: 1.4;
}
.card-icon-lg {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 100px;
    color: var(--highlight-text);
    opacity: 0.9;
    z-index: 1;
    filter: drop-shadow(0px 10px 10px rgba(0,0,0,0.5));
}
.text-football {
    color: #e0e0e0;
}

/* Small Sports Card */
.sport-card-sm {
    padding: 20px;
    height: 120px;
    align-items: flex-start;
    justify-content: space-between;
}
.sport-title-sm {
    font-size: 18px;
    font-weight: 700;
    color: var(--title-text);
    margin: 0;
    text-transform: uppercase;
    z-index: 2;
}
.card-icon-sm {
    position: absolute;
    right: 15px;
    bottom: -10px;
    font-size: 65px;
    color: var(--highlight-text);
    opacity: 0.8;
    z-index: 1;
    filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.4));
}

/* How It Works (Redesigned) */
.step-card-modern {
    background-color: var(--card-bg);
    border: 1px solid var(--trans-border-btn);
    border-radius: 12px;
    padding: 40px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}
.step-card-modern:hover {
    border-color: var(--highlight-text);
    transform: translateY(-5px);
}
.step-bg-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 190, 59, 0.05);
    line-height: 1;
    z-index: 1;
}
.step-content {
    position: relative;
    z-index: 2;
}
.step-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--title-text);
}
.step-desc {
    font-size: 15px;
    margin: 0;
    color: var(--text-muted);
}

/* Why Choose Us */
.feature-card {
    background-color: var(--body-bg);
    border: 1px solid var(--trans-border-btn);
    border-radius: 8px;
    padding: 30px 25px;
    height: 100%;
    transition: all var(--transition-normal);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-text);
}
.feature-icon {
    font-size: 32px;
    color: var(--highlight-text);
    margin-bottom: 20px;
}
.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}
.feature-desc {
    font-size: 15px;
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--trans-border-btn);
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
}
.stars {
    color: var(--highlight-text);
    font-size: 18px;
    margin-bottom: 20px;
}
.review-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
    color: #ffffff;
}
.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--highlight-text);
}

/* FAQ */
.custom-accordion .accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--trans-border-btn);
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
}
.custom-accordion .accordion-button {
    background-color: var(--card-bg);
    color: var(--title-text);
    font-size: 18px;
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--highlight-text);
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--trans-border-btn);
}
.custom-accordion .accordion-button::after {
    filter: invert(1);
}
.custom-accordion .accordion-button:not(.collapsed):after {
    filter: invert(75%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(101%) contrast(106%);
}
.custom-accordion .accordion-body {
    background-color: var(--card-bg);
    color: var(--text-muted);
    font-size: 16px;
    padding: 20px 25px;
}

/* Final CTA */
.final-cta-section {
    background-color: var(--footer-bg);
}
.cta-banner-premium {
    background-color: var(--card-bg);
    border: 2px solid var(--highlight-text);
    border-radius: 12px;
    padding: 70px 30px;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.cta-banner-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 190, 59, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-banner-premium .cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--title-text);
    position: relative;
    z-index: 2;
}
.cta-banner-premium .cta-text {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Footer */
.main-footer {
    background-color: var(--footer-bg);
    padding: 80px 0 30px;
    border-top: 1px solid var(--trans-border-btn);
}
.main-footer .navbar-brand{
    max-width: 200px;
}
.main-footer .navbar-brand img{
    width: 100%;
    height: auto;
}
.footer-desc {
    font-size: 15px;
    margin-top: 20px;
}
.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--highlight-text);
}
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 15px;
    font-size: 15px;
}
.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--highlight-text);
    padding-left: 5px;
}
.border-top-custom {
    border-top: 1px solid var(--trans-border-btn);
}
.footer-bottom p {
    font-size: 14px;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.float-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform var(--transition-fast);
}
.float-icon:hover {
    transform: scale(1.1);
    color: #fff;
}
.whatsapp {
    background-color: #25d366;
}
.telegram {
    background-color: #0088cc;
}

.btn-primary-custom:visited {
color: #000000;
}

.float-icon:visited{
    color: #000000;
}

body {
    margin: 0 !important;
}