/* CyberCentral.biz Stylesheet */

/* ===== CSS Variables ===== */
:root {
    --purple: #7e00ff;
    --purple-dark: #7C3AED;
    --purple-light: #A78BFA;
    --black: #1a1a1a;
    --grey-dark: #4a4a4a;
    --grey: #6b7280;
    --grey-light: #e5e7eb;
    --white: #ffffff;
    --bg-light: #f9fafb;

    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --radius: 8px;
    --radius-lg: 16px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-dark);
    background-color: #d7d7d7;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--purple-dark);
}

ul {
    list-style: none;
}

.site-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 60px 8px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.text-purple { color: var(--purple); }
.text-center { text-align: center; }

/* ===== Header ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--black);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--purple);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--purple);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: 0.3s;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.header-contact .phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--purple);
    font-weight: 600;
    font-size: 1.1rem;
}

.phone-icon {
    width: 20px;
    height: 20px;
    filter: invert(21%) sepia(96%) saturate(7482%) hue-rotate(271deg) brightness(103%) contrast(110%);
}

.portal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 2px solid var(--purple);
    border-radius: var(--radius);
    color: var(--purple);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.portal-btn:hover {
    background: var(--purple);
    color: var(--white);
}

.portal-btn img {
    width: 16px;
    height: 16px;
    filter: invert(21%) sepia(96%) saturate(7482%) hue-rotate(271deg) brightness(103%) contrast(110%);
    transition: filter 0.3s ease;
}

.portal-btn:hover img {
    filter: brightness(0) invert(1);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--grey-dark) 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    padding: 0;
	margin: 0;
	max-width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-left: max(20px, calc((100% - 1200px) / 2 + 20px));
}

.hero-text {
	max-width: 600px;
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--purple);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    text-align: center;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shield {
    position: absolute;
    width: 88%;
    max-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.18;
    pointer-events: none;
}

.hero-swish {
    position: absolute;
    pointer-events: none;
}

.hero-mascot {
    position: relative;
    z-index: 2;
    width: 150px;
    filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.4));
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    border: 2px solid var(--purple);
    text-align: center;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--purple);
}

.btn-secondary {
    background: var(--white);
    color: var(--purple);
}

.btn-secondary:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== Sections ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
}

.section-header p {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-dark {
    background: var(--black);
    color: var(--white);
}

.bg-dark h2,
.bg-dark h3 {
    color: var(--white);
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.service-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--grey);
    margin-bottom: 0;
}

/* ===== IT Support Feature Box ===== */
.it-support-highlight {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.it-support-highlight h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.it-support-highlight .price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px 0;
}

.it-support-highlight .price span {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.8;
}

.it-support-highlight .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.it-support-highlight ul {
    display: grid;
    gap: 12px;
}

.it-support-highlight li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.it-support-highlight li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 0.8rem;
}

.it-support-highlight .btn {
    margin-top: 30px;
    background: var(--white);
    color: var(--purple);
}

.it-support-highlight .btn:hover {
    background: var(--purple);
    color: var(--white);
}

/* ===== Pricing Table ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--purple);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--purple);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--grey);
    font-weight: 400;
}

.pricing-card ul {
    margin: 30px 0;
    text-align: left;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card li::before {
    content: '✓';
    color: var(--purple);
    font-weight: bold;
}

/* ===== Computers/Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-specs {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
}

.product-price .was {
    font-size: 1rem;
    color: var(--grey);
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.stock-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.stock-status.in-stock {
    background: #d1fae5;
    color: #059669;
}

.stock-status.low-stock {
    background: #fef3c7;
    color: #d97706;
}

/* ===== Benefits List ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.benefit-box h3 {
    color: var(--purple);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--grey-light);
}

.benefit-box ul {
    display: grid;
    gap: 12px;
}

.benefit-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefit-box li::before {
    content: '✓';
    color: var(--purple);
    font-weight: bold;
    margin-top: 2px;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--grey-light);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-box {
    display: grid;
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--purple);
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 5px;
}

.info-card a {
    font-weight: 500;
}

/* ===== Map Section ===== */
.map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-image img {
    width: 100%;
    display: block;
}

/* ===== About Page ===== */
.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro .mascot {
    text-align: center;
}

.about-intro .mascot img {
    max-width: 250px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--purple);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--purple);
    border-radius: 50%;
}

.timeline-item h4 {
    color: var(--purple);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
	justify-items: center;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-slogan {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-mascot img {
    max-width: 80px;
    margin-top: 15px;
}

.footer-col h3 {
    color: var(--purple);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.footer-col a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--purple);
}

.contact-list li {
    margin-bottom: 15px;
}

.opening-hours {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    max-width: 120px;
    background: var(--white);
    padding: 5px;
    border-radius: var(--radius);
}

.qr-code p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== Page Headers ===== */
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--grey-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    background-image: url('../images/shield-light.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content,
    .it-support-highlight,
    .contact-grid,
    .map-section,
    .about-intro {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 50px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 15px;
        border-bottom: 1px solid var(--grey-light);
    }

    .header-contact {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-list,
    .footer-col ul {
        text-align: center;
    }

    .it-support-highlight {
        padding: 30px 20px;
    }

    .it-support-highlight .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}
