:root {
    --primary: #FF6600;
    /* Bright Orange */
    --secondary: #D50000;
    /* Red */
    --background: #050A19;
    /* Deep Dark Blue */
    --surface: #0F1C35;
    /* Lighter Dark Blue */
    --text: #FFFFFF;
    --accent-gradient: linear-gradient(90deg, #FF6600, #D50000);
    --glass-bg: rgba(15, 28, 53, 0.85);
    --glass-border: rgba(255, 102, 0, 0.2);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    /* Modern font stack */
    background-color: var(--background);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Animation Utilities */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ===========================
   Navigation Styles
   =========================== */
.navbar {
    background: rgba(5, 10, 25, 0.95);
    backdrop-filter: blur(10px);
    /* Glass effect */
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.logo img {
    height: 42px;
    width: auto;
    margin: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Animated Underline for Links */
.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    min-width: 220px;
    padding: 0.8rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    z-index: 1000;
    margin-top: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--surface);
    border-top: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #ccc;
}

.dropdown-menu a:hover {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
}

.dropdown-menu a::after {
    display: none;
}

/* No underline in dropdown */

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ===========================
   Page Content Styles
   =========================== */
.container {
    padding: 0 15px;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 20px;
    animation: fadeIn 1s ease-out;
}

.review-section {
    padding: 3rem 0;
}

/* Typography & Colors */
h1,
h2,
h3,
h4 {
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

h1 {
    font-size: 3rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3rem;
    background: linear-gradient(to bottom, #FF6600, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 12px rgba(255, 102, 0, 0.15);
    position: relative;
    padding-bottom: 2rem;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

h2 {
    font-size: 2rem;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.05), transparent);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0 8px 8px 0;
}

p {
    margin-bottom: 1.5rem;
    color: #d1d1d1;
    font-size: 1.1rem;
}

/* Gradient Keywords */
strong {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    color: var(--primary);
    /* Fallback */
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

img:hover {
    transform: scale(1.02);
}

/* Hero Section */
.hero-section {
    text-align: center;
    background: linear-gradient(135deg, #0F1C35 0%, #050A19 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.hero-content .lead-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #e0e0e0;
}

.hero-section img {
    margin-bottom: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Lists */
ul {
    margin-bottom: 2rem;
    padding-left: 1rem;
}

ul li {
    margin-bottom: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

ul li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

ul li strong {
    /* Keep generic strong styling or override if needed */
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 3rem 0;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

th {
    background: #081020;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 1.2rem 1.5rem;
}

td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #1a2a4a;
    transition: background 0.2s;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255, 102, 0, 0.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(145deg, #0F1C35, #050A19);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 5rem 0;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-section h3 {
    margin-top: 0;
    font-size: 2.2rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 1rem 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
    animation: shine 4s infinite;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.5);
    background: #fff;
    color: #000;
}

/* ===========================
   Footer Styles
   =========================== */
.main-footer {
    background: #02050D;
    padding: 3rem 0;
    border-top: 1px solid #1a2a4a;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom p {
    color: #8899a6;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

/* ===========================
   Mobile Responsiveness
   =========================== */
@media (max-width: 768px) {

    /* Global Resets */
    html,
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
        margin: 0 auto !important;
        /* Override inline styles */
    }

    .review-section {
        padding: 2rem 0;
    }

    /* Navigation */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        padding: 1rem;
        flex-direction: column;
        z-index: 1000;
        border-bottom: 2px solid var(--primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    .nav-menu.active {
        display: flex;
        animation: fadeIn 0.3s ease-out;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-list a {
        display: block;
        padding: 1.2rem;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-list a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        width: 100%;
        border: none;
        box-shadow: none;
        margin-top: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    /* Content & Typography */
    .content-wrapper {
        padding: 2rem 15px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 1.4rem;
        border-left-width: 3px;
        line-height: 1.4;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    img {
        margin: 1.5rem auto;
    }

    /* Buttons */
    .cta-button {
        display: block;
        width: 100%;
        margin: 10px 0;
        padding: 1rem 0;
        font-size: 1rem;
        text-align: center;
    }

    /* Hero */
    .hero-section {
        padding: 2rem 15px;
        margin-bottom: 2rem;
    }

    .hero-content .lead-text {
        font-size: 1rem;
    }

    /* Logo */
    .logo img {
        height: 36px;
    }

    ul li {
        padding: 0.8rem;
    }
}