/* JBR Tech Solutions GH - Global Styles */

/* CSS Variables */
:root {
    --navy: #1B2A4A;
    --teal: #0D7B8A;
    --gold: #D4A017;
    --orange: #E07B39;
    --green: #1A7A4A;
    --purple: #5B2D8E;
    --emerald: #00C896;
    --light: #EAF4F6;
    --white: #FFFFFF;
    --dkgrey: #444444;
    --grey: #F5F7FA;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dkgrey);
    background: var(--white);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Simplified Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1B2A4A;
    border-bottom: 2px solid #D4A017;
    padding: 0.5rem 0;
    height: 60px;
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.btn-book-demo {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-book-demo:hover {
    background: #b8920f;
    color: var(--navy);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 10000;
    padding: 5rem 2rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Main Content */
#main-content {
    padding-top: 60px;
    min-height: calc(100vh - 60px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                  linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b8920f; color: var(--navy); }
.btn-outline { border-color: var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold);
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-light { background: var(--grey); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--teal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.product-card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.product-card-body { padding: 0 1.5rem 1rem; }
.product-card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.product-card-body p { font-size: 0.95rem; color: var(--dkgrey); margin-bottom: 1rem; }
.product-card-body ul { list-style: none; padding: 0; margin: 0; }
.product-card-body li { font-size: 0.9rem; padding: 0.25rem 0; display: flex; align-items: center; gap: 0.5rem; }
.product-card-body li i { color: var(--green); }
.product-card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--grey); }

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-card:hover { transform: translateY(-8px); }

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--teal);
}

.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.95rem; color: var(--dkgrey); }

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step { text-align: center; position: relative; }
.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--dkgrey); }

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.testimonial-rating { color: var(--gold); margin-bottom: 1rem; }
.testimonial-quote { font-size: 1.1rem; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.testimonial-info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.testimonial-info span { font-size: 0.85rem; color: var(--dkgrey); }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-tagline { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer h4 {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.75rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.pricing-card.popular { border: 2px solid var(--teal); transform: scale(1.05); }
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 0.25rem 1.5rem;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Beautiful Pricing Page */
.product-pricing-header { text-align: center; margin-bottom: 3rem; }

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card-new {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.pricing-card-new.popular {
    border: 2px solid var(--teal);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card-new.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--teal), #0a5a6a);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-header { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--grey); }
.tier-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.tier-subtitle {
    font-size: 0.75rem;
    color: #888;
}

.tier-pricing {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--grey);
}

.price-label { color: #666; font-size: 0.8rem; }
.price-value {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.tier-features { text-align: left; margin-bottom: 1.5rem; }
.tier-features h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.75rem;
}
.tier-features ul { list-style: none; padding: 0; margin: 0; }
.tier-features li {
    font-size: 0.8rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.tier-features li i { color: var(--green); margin-top: 2px; }

.btn-pricing {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    background: var(--light);
    color: var(--teal);
    transition: all 0.3s;
}
.btn-pricing:hover { background: var(--teal); color: white; }
.btn-pricing.btn-primary {
    background: linear-gradient(135deg, var(--gold), #c09010);
    color: var(--navy);
}
.btn-pricing.btn-primary:hover {
    background: linear-gradient(135deg, #c09010), var(--gold);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question-new {
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.faq-question-new i { transition: transform 0.3s; }

/* Forms */
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--grey);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--teal); }
.form-label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); }
.form-group { margin-bottom: 1.5rem; }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.blog-card:hover { transform: translateY(-8px); }

.blog-card-image {
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 2rem;
}

.blog-card-body { padding: 1.5rem; }
.blog-card-category { font-size: 0.8rem; color: var(--teal); font-weight: 600; text-transform: uppercase; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.blog-card p { font-size: 0.95rem; color: var(--dkgrey); margin-bottom: 1rem; }

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal);
}
.contact-card h3 { margin-bottom: 0.75rem; }
.contact-card p { font-size: 0.95rem; color: var(--dkgrey); }

/* Tech Grid */
.tech-grid { gap: 1.5rem; }
.tech-item {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.tech-item:hover { transform: translateY(-4px); }
.tech-item i {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 0.75rem;
}
.tech-item span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-2 { margin-top: 2rem; }
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }

/* Responsive */
@media (max-width: 1024px) {
    .products-grid, .features-grid, .pricing-grid, .blog-grid, .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: none; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-toggle { display: none; }
    .nav-toggle { display: block; }

    .products-grid, .features-grid, .pricing-grid, .blog-grid, .contact-cards, .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
}