/* =========================================
   --- 1. FONTS --- 
   ========================================= */
@font-face {
    font-family: 'Telegraf';
    src: url('Telegraf-Regular.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'Telegraf';
    src: url('Telegraf-UltraBold.otf') format('opentype');
    font-weight: 800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Telegraf', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
}

/* Base Body for Index Page */
body:not(.contact-page) {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   --- 2. INDEX LAYOUT --- 
   ========================================= */
.container {
    display: flex;
    width: 90%;
    max-width: 1300px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.brand-logo {
    width: 140px; 
    margin-bottom: 60px;
}

/* =========================================
   --- 3. TYPOGRAPHY --- 
   ========================================= */
h1 {
    font-size: 7rem;
    line-height: 0.9;
    letter-spacing: -4px;
    font-weight: 800;
    margin-bottom: 40px;
}

p {
    font-size: 1.15rem; 
    line-height: 1.6;
    letter-spacing: 0px;
    color: #b3b3b3; 
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: normal;
}

/* =========================================
   --- 4. BUTTON & SOCIALS --- 
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #cfff04; 
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 60px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #cfff04;
    color: #000000;
}

.socials {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.line {
    width: 60px;
    height: 1px;
    background-color: #444; 
    margin: 0 10px;
}

.socials a {
    color: #cfff04;
    text-decoration: none;
}

/* =========================================
   --- 5. RIGHT SIDE GRAPHIC (INDEX) --- 
   ========================================= */
.right-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center; 
}

.brand-image {
    width: 500px; 
    height: 500px;
    object-fit: contain; 
    display: block;
}

/* =========================================
   --- 6. MOBILE INDEX RESPONSIVENESS --- 
   ========================================= */
@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse; 
        padding: 40px 0;
    }
    .left-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    h1 {
        font-size: 4.5rem;
        letter-spacing: -2px;
    }
    .brand-logo {
        margin-top: 40px; 
        margin-bottom: 30px;
    }
    .brand-image {
        width: 300px; 
        height: 300px;
        margin-bottom: 20px;
    }
}

/* =========================================
   --- 7. CONTACT PAGE EXACT LAYOUT --- 
   ========================================= */

/* The 50/50 Background */
.split-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: -1;
}

.bg-left {
    flex: 1;
    background-color: #000000;
}

.bg-right {
    flex: 1;
    background-color: #111111; /* Dark grey panel like the reference image */
    border-left: 1px solid #222;
}

/* Content Container */
.contact-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Logo */
.top-nav {
    width: 100%;
    margin-bottom: 60px;
}

.brand-logo-left {
    width: 120px;
}

/* Contact Heading */
.contact-heading {
    font-size: 5.5rem;
    margin-bottom: 60px;
}

/* The Overlapping Cards */
.cards-container {
    display: flex;
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
    align-items: stretch;
}

.support-card {
    background-color: #ffffff; 
    color: #000000; 
    border-radius: 4px; 
    padding: 40px 30px; /* Slightly reduced padding to fit 3 cards perfectly */
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.support-card p {
    color: #555555; 
    max-width: 100%;
    flex-grow: 1;
    font-size: 0.95rem; /* Slightly smaller text for better fit */
}

.support-card h3 {
    font-size: 1.3rem; /* Slightly smaller header */
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Icons above the card text */
.card-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.wa-icon { background-color: #cfff04; }
.email-icon { background-color: #222222; }
.manual-icon { background-color: #555555; } /* New dark grey icon for manuals */

/* Full Width Card Buttons */
.card-btn {
    width: 100%;
    padding: 18px 0;
    font-weight: 800;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.3s;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-neon {
    background-color: #000000;
    color: #ffffff;
}

.btn-neon:hover {
    background-color: #cfff04;
    color: #000000;
}

.btn-dark {
    background-color: #000000;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #333333;
}

.amazon-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
    align-self: center;
}

/* Mobile Adjustments for Contact Page */
@media (max-width: 768px) {
    .split-bg {
        display: none; /* Removes the split on mobile */
    }
    .contact-page {
        background-color: #000000;
    }
    .cards-container {
        flex-direction: column;
    }
    .contact-heading {
        font-size: 4rem;
        text-align: center;
    }
    .top-nav {
        display: flex;
        justify-content: center;
    }
}

/* =========================================
   --- 8. FLOATING WHATSAPP WIDGET --- 
   ========================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: translateY(-5px);
}

.wa-bubble {
    background-color: #cfff04; 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(207, 255, 4, 0.3);
}

.wa-text {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 800;
    border: 1px solid #333;
    opacity: 0; 
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-wa:hover .wa-text {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-wa { bottom: 20px; right: 20px; }
    .wa-bubble { width: 55px; height: 55px; }
    .wa-text { display: none; }
}

/* =========================================
   --- 9. MANUALS PAGE --- 
   ========================================= */
.manuals-page {
    background-color: #000000;
    display: block; /* Overrides the center flex from index */
}

.manuals-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0 100px 0;
}

.top-nav-spread {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.brand-logo-small {
    width: 110px;
}

.back-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    transition: color 0.3s;
}

.back-link:hover {
    color: #cfff04;
}

.manuals-header {
    text-align: left;
    margin-bottom: 60px;
}

.manuals-header h1 {
    font-size: 4.5rem;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.manuals-header p {
    font-size: 1.1rem;
    max-width: 600px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-box {
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 40px;
    transition: border-color 0.3s ease;
}

.product-box:hover {
    border-color: #cfff04;
}

.product-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.manual-list {
    display: flex;
    flex-direction: column;
}

.manual-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #222;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.manual-link:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.manual-title {
    font-size: 1.1rem;
    font-weight: normal;
}

.manual-link svg {
    stroke: #555;
    transition: stroke 0.3s ease;
}

.manual-link:hover .manual-title {
    color: #cfff04;
}

.manual-link:hover svg {
    stroke: #cfff04;
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .manuals-header h1 { font-size: 3.5rem; }
    .product-box { padding: 30px 20px; }
}