/* ==========================================================================
   DANNY FIX MY COMPUTER - Stylesheet
   Design System: Deep Dark Cyberpunk Tech Theme (Dark Mode)
   Colors: Sleek Charcoal, Tech Cyan, Neon Orange, Pure HSL gradients
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-darker: hsl(220, 25%, 7%);
    --bg-dark: hsl(220, 20%, 10%);
    --bg-card: hsl(220, 18%, 14%);
    --bg-card-hover: hsl(220, 18%, 18%);
    --border-color: hsla(220, 15%, 25%, 0.4);
    
    --primary: hsl(196, 100%, 47%);        /* Electric Cyan */
    --primary-glow: hsla(196, 100%, 47%, 0.35);
    --secondary: hsl(26, 100%, 55%);       /* Neon Orange */
    --secondary-glow: hsla(26, 100%, 55%, 0.3);
    
    --text-main: hsl(210, 17%, 95%);
    --text-muted: hsl(215, 12%, 70%);
    --text-dark: hsl(220, 15%, 12%);
    
    --accent-stars: hsl(45, 100%, 55%);
    --success: hsl(145, 80%, 45%);
    --glass: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Fonts & Radii */
    --font-sans: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Global Reset & Base Styles
   ========================================================================== */

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

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

section {
    padding: 100px 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 1.35rem;
    color: var(--text-main);
}

/* Section Header Utility */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, hsl(16, 100%, 50%) 100%);
    color: #white;
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--secondary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.badge-accent {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    background: hsla(196, 100%, 47%, 0.1);
    border: 1px solid hsla(196, 100%, 47%, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Header Navigation (Glassmorphic Sticky)
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-phone .phone-link {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px dashed var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.header-phone .phone-link:hover {
    background-color: hsla(196, 100%, 47%, 0.1);
    transform: scale(1.03);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transform: translateY(-110%);
    transition: transform 0.4s ease-in-out;
}

.mobile-nav.open {
    display: flex;
    transform: translateY(0);
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid hsla(220, 15%, 25%, 0.2);
}

.mobile-phone-link {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    padding: 12px;
    background: hsla(196, 100%, 47%, 0.05);
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    padding: 180px 0 100px;
    background: radial-gradient(circle at 80% 20%, hsla(196, 100%, 47%, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, hsla(26, 100%, 55%, 0.05) 0%, transparent 40%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent 80%, var(--bg-darker) 100%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    background: rgba(255,255,255,0.03);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.highlight-item i {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Reviews Bar
   ========================================================================== */

.reviews-bar {
    background-color: var(--bg-dark);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.reviews-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.stars {
    color: var(--accent-stars);
    display: flex;
    gap: 4px;
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}

/* ==========================================================================
   Services Section (Sleek Glassmorphic Cards)
   ========================================================================== */

.services {
    background-color: var(--bg-darker);
}

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

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: hsla(196, 100%, 47%, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 
                0 0 1px hsla(196, 100%, 47%, 0.2);
    background-color: var(--bg-card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: hsla(196, 100%, 47%, 0.06);
    border: 1px solid hsla(196, 100%, 47%, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    color: var(--text-dark);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.service-icon-wrapper i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper i {
    color: var(--bg-darker);
}

.service-card h3 {
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.service-card:hover .btn-card-link {
    color: #white;
    text-shadow: 0 0 5px var(--primary-glow);
}

.btn-card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-card-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Gaming Specialty Section
   ========================================================================== */
.gaming-specialty {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.gaming-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gaming-image img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 
                0 0 20px var(--primary-glow);
    transition: var(--transition);
}

.gaming-image img:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.gaming-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.gaming-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.gaming-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.gaming-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
}

.gaming-list li i {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .gaming-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gaming-content h2 {
        text-align: center;
    }
    
    .gaming-list {
        align-items: center;
    }
}


/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose-us {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 6px var(--secondary-glow));
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */

.faq {
    background-color: var(--bg-darker);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: hsla(196, 100%, 47%, 0.3);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

/* Open Accordion State (Classes handled in JS) */
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    border-color: hsla(220, 15%, 25%, 0.2);
    padding: 0 24px 24px;
    max-height: 200px; /* Adjust according to text size */
}

/* ==========================================================================
   Contact & Map Section
   ========================================================================== */

.contact {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(6px);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.whatsapp-card:hover {
    border-color: var(--success);
    box-shadow: 0 4px 15px hsla(145, 80%, 45%, 0.2);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: hsla(196, 100%, 47%, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.whatsapp-card .contact-card-icon {
    background: hsla(145, 80%, 45%, 0.1);
    color: var(--success);
}

.contact-card span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-card strong {
    font-size: 1.15rem;
    color: #fff;
}

.partner-note {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-form-wrapper p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-main);
}

.form-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background-color: hsla(145, 80%, 45%, 0.15);
    color: var(--success);
    border: 1px solid hsla(145, 80%, 45%, 0.3);
}

.form-status.error {
    display: block;
    background-color: hsla(0, 80%, 50%, 0.15);
    color: hsl(0, 80%, 65%);
    border: 1px solid hsla(0, 80%, 50%, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-hours p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   Media Queries & Responsive Styling
   ========================================================================== */

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .header-phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        gap: 12px;
    }
    
    .highlight-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .reviews-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}
