/* ══════════════════════════════════════════════════════════════
   JSKPrintz — Custom Homepage Styles
   Color Palette (from logo):
     --brand-black:   #1a1a1a
     --brand-red:     #C41E24
     --brand-red-dk:  #9B1118
     --brand-white:   #ffffff
     --brand-gray:    #f5f5f5
   ══════════════════════════════════════════════════════════════ */

:root {
    --brand-black: #1a1a1a;
    --brand-red: #C41E24;
    --brand-red-dark: #9B1118;
    --brand-red-light: #fce8e9;
    --brand-gray: #f7f7f7;
    --brand-gray-dark: #555;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-muted: #999;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-red); color: #fff;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(196,30,36,0.25);
}
.btn-primary:hover { background: var(--brand-red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,30,36,0.35); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    padding: 13px 30px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-dark {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-black); color: #fff;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
    transition: all 0.3s ease;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo img { height: 38px; }
.navbar-links { display: flex; align-items: center; gap: 36px; }
.navbar-links a { font-weight: 500; font-size: 0.9rem; color: var(--text-secondary); transition: color 0.2s; }
.navbar-links a:hover { color: var(--brand-red); }
.navbar-cta { background: var(--brand-red); color: #fff !important; padding: 10px 22px; border-radius: 8px; font-weight: 600; }
.navbar-cta:hover { background: var(--brand-red-dark); color: #fff; }
.navbar-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 50%, #2a1215 100%);
    position: relative; overflow: hidden; padding-top: 80px;
}
.hero::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 70%; height: 180%;
    background: radial-gradient(circle, rgba(196,30,36,0.08) 0%, transparent 65%);
}
.hero::after {
    content: ''; position: absolute; bottom: -20%; left: -10%;
    width: 50%; height: 100%;
    background: radial-gradient(circle, rgba(196,30,36,0.05) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(196,30,36,0.15); color: #ff6b6b;
    padding: 8px 18px; border-radius: 30px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; line-height: 1.08; color: #fff; margin-bottom: 20px;
}
.hero-title .accent { color: var(--brand-red); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.55); max-width: 500px; margin-bottom: 36px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { opacity: 1; }

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar { background: #fff; padding: 60px 0; border-bottom: 1px solid #eee; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item .number { font-size: 2.8rem; font-weight: 900; color: var(--brand-red); line-height: 1; }
.stat-item .label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ── Services ───────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--brand-gray); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }
.section-header .line { width: 50px; height: 3px; background: var(--brand-red); margin: 16px auto 0; border-radius: 2px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    background: #fff; border-radius: var(--radius); padding: 32px 24px;
    text-align: center; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent; cursor: default;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(196,30,36,0.1); }
.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ── About ──────────────────────────────────────────────── */
.about { padding: 100px 0; background: #fff; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-tag {
    display: inline-block; background: var(--brand-red-light); color: var(--brand-red);
    padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 20px;
}
.about h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about p { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-feature {
    display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem;
}
.about-feature .check {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--brand-red-light); color: var(--brand-red);
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0;
}
.about-image {
    background: linear-gradient(135deg, var(--brand-gray), #eee);
    border-radius: var(--radius); padding: 48px; text-align: center;
    display: flex; align-items: center; justify-content: center;
}
.about-image img { max-width: 300px; }

/* ── CTA ────────────────────────────────────────────────── */
.cta { padding: 80px 0; background: var(--brand-gray); }
.cta-box {
    background: linear-gradient(135deg, #1a1a1a, #2d1416);
    border-radius: 24px; padding: 64px; text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(196,30,36,0.12) 0%, transparent 60%);
}
.cta-box h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; position: relative; }
.cta-box p { color: rgba(255,255,255,0.6); margin-bottom: 28px; position: relative; }

/* ── Contact ────────────────────────────────────────────── */
.contact { padding: 100px 0; background: #fff; }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: var(--brand-red-light); color: var(--brand-red);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-item span { color: var(--text-secondary); font-size: 0.9rem; }
.contact-form {
    background: var(--brand-gray); border-radius: var(--radius); padding: 40px;
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 18px; border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
    transition: border-color 0.2s; background: #fff; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--brand-red); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--brand-black); color: rgba(255,255,255,0.6); padding: 32px 0; }
.footer .container { display: flex; align-items: center; justify-content: space-between; }
.footer img { height: 28px; }
.footer small { font-size: 0.8rem; }

/* ── Animations ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(-4deg); } }
@keyframes float3 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-25px) rotate(3deg); } }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .navbar-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 28px; z-index: 999; }
    .navbar-links.open { display: flex; }
    .navbar-links a { font-size: 1.2rem; }
    .navbar-toggle { display: block; z-index: 1001; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about .container { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .contact .container { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 24px; }
    .footer .container { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item .number { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
}
