/* Project: Print Axcelant 
   Theme: Modern Glassmorphism (Indigo & Purple)
   Layout: Fully Responsive (3x3 Grid / Side-by-Side Flex)
*/

/* --- Root Design Variables --- */
:root {
    --primary: #6366f1;         /* Indigo Glow */
    --secondary: #a855f7;       /* Purple Highlight */
    --dark-bg: #020617;         /* Deep Navy Base */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-heavy: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.12);
    --text-muted: #94a3b8;
    --container-max: 1200px;
    --success: #10b981;
}

/* --- Global Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle background glow effect */
    background: radial-gradient(circle at 0% 0%, #1e1b4b 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, #312e81 0%, transparent 50%),
                #020617;
    background-attachment: fixed;
}

/* Main Content Container */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

/* --- Navigation Bar --- */
nav {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}
.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s ease;
}
.nav-links a:hover { color: #fff; }

.btn-call-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
    border: none;
    text-decoration: none;
}

/* --- Mobile Hamburger Icon --- */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 3px;
}

/* --- Hero & Typography --- */
.hero {
    padding: 100px 0 40px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- 3x3 Brand Grid --- */
.wizard-container {
    background: var(--glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px 40px;
    margin: 40px auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces 3 per row on Desktop */
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Brand Logo Styling (assets/logo/) */
.brand-logo-wrap {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-logo-wrap img {
    max-height: 100%;
    max-width: 100px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes colored SVGs white */
    opacity: 0.7;
    transition: 0.4s;
}

.card:hover .brand-logo-wrap img {
    filter: none; /* Shows original brand color on hover */
    opacity: 1;
    transform: scale(1.1);
}

/* --- Expert Care Section (Flex Layout) --- */
.about-section { padding: 80px 0; }
.about-flex {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap; /* Stacks on mobile */
}

.about-content { flex: 1.5; min-width: 320px; }
.about-content h2 span { color: var(--primary); }

.about-image-card {
    flex: 1;
    min-width: 320px;
    background: var(--glass);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid var(--border);
    text-align: center;
}

/* --- Support Plans (Support Page) --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border: 2px solid var(--primary);
    background: rgba(99, 102, 241, 0.05);
    transform: scale(1.02);
}

.feature-list { list-style: none; margin: 20px 0; }
.feature-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    position: relative;
    padding-left: 35px;
    line-height: 1.4;
}

/* The Nested Bullet Icon (○ ↳) */
.feature-list li::before {
    content: "○  ↳";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.8rem;
}

/* --- Contact Form Styling --- */
.contact-form label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-family: inherit;
    margin-bottom: 20px;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* --- Footer & Floating Button --- */
footer {
    padding: 80px 0 40px;
    background: #010409;
    border-top: 1px solid var(--border);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* --- Footer Link Fix --- */
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #fff;
}

.footer-col a {
    color: var(--text-muted) !important; /* Forces light gray over browser purple */
    text-decoration: none !important;    /* Removes underlines */
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-col a:hover {
    color: #fff !important;              /* Pure white on hover */
    transform: translateX(5px);
}

/* Footer Quick Links Grid Structure */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.disclaimer {
    font-size: 0.75rem;
    color: #4b5563;
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border-radius: 16px;
    margin-top: 40px;
}

.floating-call-theme {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
}

/* --- Responsive Media Queries --- */

/* Tablets & Small Desktop */
@media screen and (max-width: 992px) {
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 15, 30, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        transition: 0.5s;
        backdrop-filter: blur(20px);
        padding: 50px 0;
    }

    .nav-links.active { left: 0; }
    
    .nav-links a { font-size: 1.4rem; margin: 15px 0; }

    /* Hamburger to X animation */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .grid { grid-template-columns: repeat(2, 1fr); }
    .about-flex { flex-direction: column; text-align: center; }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .wizard-container { padding: 30px 15px; }
    .logo { font-size: 1.2rem; }
}