/* === Base Styles === */
html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Bricolage Grotesque', Arial, sans-serif;
    color: #fff;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Typography === */
h1,
h2,
h3,
h4 {
    color: #25D366;
    margin-top: 0;
}

p {
    font-size: 1.2rem;
}

a {
    color: #25D366;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.3s;
}

a:hover {
    color: #ff9800;
}

ul {
    padding-left: 1.2rem;
    margin: 0 0 1rem 0;
}

/* === Header & Navigation === */
header {
    max-width: 1200px;
    margin: 2rem auto 2rem auto;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    /* Add this for consistent padding */
}

header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    /* Ensures hamburger aligns right */
    cursor: pointer;
    /* Shows pointer on hover */
    z-index: 1100;
    /* Above nav */
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
}

nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    font-size: 1rem;
}



@media (max-width: 768px) {
    header {
        padding: 0.7rem 1rem;
        margin: 2rem 0.9rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        /* Align bars to right */
        height: 40px;
    }

    nav {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        /* Place nav just below header */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }
}

/* === Layout Containers === */
.body-container,
section {
    max-width: 900px;
    margin: auto;
    background: none;
    padding: 2rem 0 2rem 0;
    border-bottom: 1px solid #444;
}

@media (max-width: 700px) {

    .body-container,
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

section:last-child,
.body-container:last-child {
    border-bottom: none;
}

/* === Hero & Services (Index Page) === */
.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.animated-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #25D366;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 0 #25D366;
    }

    50% {
        text-shadow: 0 0 16px #25D366;
    }

    100% {
        text-shadow: 0 0 0 #25D366;
    }
}

.services {

    max-width: 600px;
    margin: 0 auto;
    margin-top: 4rem;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.services li:hover {
    transform: scale(1.05);
}

/* === Tables (File Management Page) === */
.table-section {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid white;
    overflow: hidden;
}

th,
td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #666;
}

th {
    background: rgba(37, 211, 102, 0.15);
}

.highlight {
    background: rgba(37, 211, 102, 0.2);
}

/* === Price Block & Buttons === */
.price-block {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.strike {
    text-decoration: line-through;
    color: #aaa;
}

.note {
    font-style: italic;
    color: #ccc;
}

.claim-discount-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    display: block;
    width: 80%;
    max-width: 300px;
    background: #ff9800;
    color: #222;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 12px 0 rgba(37, 211, 102, 0.15);
    text-decoration: none;
    z-index: 1000;
    transition: background 0.2s, color 0.2s;
}

.claim-discount-btn:hover {
    background: #fb8c00;
    color: #fff;
}

/* === Responsive Tables === */
@media (max-width: 600px) {

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        /* display: block; */
    }

    th,
    td {
        padding: 0.5rem;
        border: none;
        border-bottom: 1px solid #444;
    }

    th {
        background: none;
        font-weight: bold;
    }
}

/* === Miscellaneous === */
/* ::-webkit-scrollbar {
    width: 8px;
    background: #222;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
} */

/* === Modern Footer Styles === */
.site-footer {
    color: #e0e0e0;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    margin: 1.5rem 0 2rem 0;
    font-size: 1rem;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.footer-logo {
    font-size: 2rem;
}

.footer-title {
    font-weight: 600;
    color: #25D366;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.footer-links a:hover {
    color: #25D366;
    background: #23272f;
}

.footer-bottom {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .footer-main {
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}