/* Smart Buyer Zone - Tactical HUD UI */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;600;700&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --bg-color: #0B0E11;
    --panel-bg: #15191E;
    --primary-color: #FF8C00; /* Tactical Orange */
    --secondary-color: #00BFFF; /* HUD Blue */
    --text-primary: #E0E0E0;
    --text-muted: #8A95A5;
    --border-color: #2C333A;
    --grid-line: rgba(255, 140, 0, 0.1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HUD Utilities */
.hud-panel {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    position: relative;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%
    );
    padding: 20px;
    transition: all 0.3s ease;
}

.hud-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.hud-panel:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.hud-text-glow {
    text-shadow: 0 0 10px var(--primary-color);
}

/* Navbar */
.navbar {
    background: rgba(11, 14, 17, 0.95);
    border-bottom: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff !important;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
}

/* Buttons */
.btn-tactical {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    padding: 10px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-tactical:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.text-muted {
    color: #ffffff !important;
}

.hero-img-frame {
    border: 1px solid var(--primary-color);
    padding: 10px;
    position: relative;
}

.hero-img-frame::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

/* Cards */
.card-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.coupon-code {
    background: rgba(255, 140, 0, 0.1);
    border: 1px dashed var(--primary-color);
    color: var(--primary-color);
    font-family: 'Chakra Petch', sans-serif;
    text-align: center;
    padding: 10px;
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.coupon-code:hover {
    background: var(--primary-color);
    color: #000;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    margin: 0;
    padding-right: 20px;
    color: #fff;
}

.section-line {
    flex-grow: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.section-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
}

/* New Sections Styling */
.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Chakra Petch', sans-serif;
}

.step-number {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 20px;
}

.partner-logo {
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%) drop-shadow(0 0 5px var(--primary-color));
}

/* Footer */
.footer {
    background: var(--panel-bg);
    border-top: 2px solid var(--primary-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icon {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary-color);
}
