/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

:root {
    /* Colors */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #3b82f6;
    --secondary-black: #0f172a;
    --secondary-gray: #1e293b;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Greens for repair pages */
    --green: #16a34a;
    --green-dark: #15803d;
    
    /* Purple for projects */
    --purple: #9333ea;
    --purple-dark: #7e22ce;
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 5rem 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: -0.05em;
}

.navbar.scrolled .logo-text {
    color: var(--primary-blue);
}

.logo-subtitle {
    display: none;
    flex-direction: column;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.2;
}

.navbar.scrolled .logo-subtitle {
    color: var(--text-gray);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-links li a {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-links li a {
    color: var(--text-gray);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
}

.navbar.scrolled .nav-links li a.active {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
}

.cta-btn {
    display: none;
    padding: 0.625rem 1.25rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .cta-btn {
    background: var(--primary-blue);
}

.cta-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 1.5rem;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--secondary-black);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.mobile-nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 2rem;
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-main {
    display: block;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #64748b;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.btn-dark:hover {
    background: var(--secondary-gray);
}

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

.btn-light:hover {
    background: #f8fafc;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(5px);
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    background: var(--secondary-black);
    padding: 4rem 0;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-weight: 500;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 5rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-label.light {
    color: #60a5fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title.light {
    color: white;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-description.light {
    color: #cbd5e1;
}

.text-primary {
    color: var(--primary-blue);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   TWO COLUMN GRID
   ======================================== */

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col-grid.reverse {
    direction: ltr;
}

.content-col,
.image-col {
    width: 100%;
}

.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 700;
    color: var(--text-dark);
}

.feature-subtitle {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 2rem;
}

.link-arrow span {
    transition: transform 0.3s ease;
}

.link-arrow:hover span {
    transform: translateX(5px);
}

/* ========================================
   LOGO SHOWCASE
   ======================================== */

.logo-showcase {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-showcase::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--primary-blue);
    border-radius: 1rem;
    z-index: -1;
}

.logo-showcase-text {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-showcase-subtitle {
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.5s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-section.green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.cta-section.purple {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--secondary-black);
    color: white;
    padding: 5rem 0 0;
}

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

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #94a3b8;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #94a3b8;
}

.footer-contact a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.page-header.repair-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #15803d 100%);
}

.page-header.projects-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #7e22ce 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    line-height: 1.8;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.header-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* ========================================
   CODE PREVIEW (Web Design Page)
   ======================================== */

.code-preview {
    background: #1e293b;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-header {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: #0f172a;
}

.code-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: #eab308; }
.code-dot.green { background: #22c55e; }

.code-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.code-line {
    line-height: 1.8;
}

.code-tag {
    color: #ec4899;
}

.code-comment {
    color: #60a5fa;
}

/* ========================================
   TECH SECTION
   ======================================== */

.tech-section {
    background: var(--secondary-black);
    padding: 4rem 0;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-icon {
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.tech-item h3 {
    color: white;
    font-weight: 700;
}

.tech-item p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ========================================
   SERVICES DETAIL GRID
   ======================================== */

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.5s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-detail-icon.blue { background: rgba(37, 99, 235, 0.1); }
.service-detail-icon.purple { background: rgba(147, 51, 234, 0.1); }
.service-detail-icon.green { background: rgba(22, 163, 74, 0.1); }
.service-detail-icon.orange { background: rgba(249, 115, 22, 0.1); }
.service-detail-icon.red { background: rgba(239, 68, 68, 0.1); }
.service-detail-icon.cyan { background: rgba(6, 182, 212, 0.1); }

.service-detail-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-detail-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* ========================================
   PROCESS GRID
   ======================================== */

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.process-step {
    position: relative;
}

.process-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.1);
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-description {
    color: var(--text-gray);
}

/* ========================================
   FEATURES GRID
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card-icon {
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   PRICING
   ======================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.pricing-card.featured {
    background: var(--secondary-black);
    color: white;
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-desc {
    color: #94a3b8;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.pricing-card.featured .price-currency {
    color: #94a3b8;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
}

.price-amount.custom {
    font-size: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
}

.pricing-card.featured .pricing-features li {
    color: #cbd5e1;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */

.founder-box {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.founder-box::before {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: var(--primary-blue);
    border-radius: 1rem;
    z-index: -1;
}

.founder-initials {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.check-item {
    color: var(--text-gray);
}

/* ========================================
   MISSION & VISION
   ======================================== */

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
}

.mission-icon {
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-description {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   VALUES
   ======================================== */

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.value-item {
    transition: all 0.3s ease;
}

.value-icon {
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: rgba(37, 99, 235, 0.1);
    transform: scale(1.1);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--text-gray);
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline-section {
    background: var(--secondary-black);
    padding: 6rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: #60a5fa;
}

.timeline-content {
    background: #1e293b;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #334155;
}

.timeline-content h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #94a3b8;
}

/* ========================================
   REPAIRS PAGE
   ======================================== */

.quick-stats-section {
    background: var(--secondary-black);
    padding: 4rem 0;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.quick-stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quick-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.25rem;
}

.quick-stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
}

.repair-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.repair-service-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.repair-service-card:hover {
    border-color: rgba(22, 163, 74, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.repair-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.repair-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.repair-service-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.repair-issues {
    list-style: none;
}

.repair-issues li {
    padding: 0.25rem 0;
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Pricing Table */
.pricing-table {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.pricing-table-row:nth-child(even) {
    background: var(--bg-light);
}

.price-cell {
    font-weight: 700;
    color: var(--green);
}

.pricing-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

/* PC Builds */
.pc-build-section {
    background: var(--secondary-black);
    padding: 6rem 0;
}

.pc-builds-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pc-build-card {
    background: #1e293b;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #334155;
    position: relative;
}

.pc-build-card.featured {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    transform: scale(1);
}

.build-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--green);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.build-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.build-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pc-build-card.featured .build-desc {
    color: rgba(255, 255, 255, 0.8);
}

.build-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #94a3b8;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.build-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.build-specs li {
    padding: 0.5rem 0;
    color: #94a3b8;
}

.pc-build-card.featured .build-specs li {
    color: rgba(255, 255, 255, 0.9);
}

.build-ideal {
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.pc-build-card.featured .build-ideal {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.build-ideal strong {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.pc-build-card.featured .build-ideal strong {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PROJECTS PAGE
   ======================================== */

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: none;
    border-radius: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.filter-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.filter-btn.active:hover {
    background: var(--primary-blue-dark);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.5s ease;
}

.project-card.hidden {
    display: none;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.project-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

.project-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.project-category.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.project-category.green {
    background: rgba(22, 163, 74, 0.1);
    color: var(--green);
}

.project-category.purple {
    background: rgba(147, 51, 234, 0.1);
    color: var(--purple);
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--primary-blue);
}

.project-description {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Projects Stats */
.projects-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-box {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-number.blue { color: var(--primary-blue); }
.stat-number.green { color: var(--green); }
.stat-number.purple { color: var(--purple); }
.stat-number.orange { color: #f97316; }

.stat-text {
    color: var(--text-gray);
    font-weight: 500;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-info-section {
    padding: 0;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-value {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-value:hover {
    color: var(--primary-blue-dark);
}

.contact-info-desc {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.success-message {
    padding: 1rem 1.5rem;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 0.75rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Map & Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    height: 20rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

.why-choose-box {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 1.5rem;
    color: white;
}

.why-choose-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #60a5fa;
    color: white;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.875rem;
}

.why-choose-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

.why-choose-list p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   MEDIA QUERIES - TABLET
   ======================================== */

@media (min-width: 640px) {
    .logo-subtitle {
        display: flex;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-buttons,
    .cta-buttons,
    .header-buttons {
        flex-direction: row;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .projects-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid,
    .repair-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   MEDIA QUERIES - DESKTOP
   ======================================== */

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
    
    .cta-btn {
        display: inline-flex;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .page-title {
        font-size: 4rem;
    }
    
    .two-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-detail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid,
    .pc-builds-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.featured,
    .pc-build-card.featured {
        transform: scale(1.05);
    }
    
    .repair-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .map-container {
        height: 20rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 6rem;
    }
}