@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --secondary: #111827;
    --accent: #ef4444;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
    --gradient: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; color: var(--secondary); }
.logo-icon {
    width: 36px; height: 36px; background: var(--primary);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; color: white; font-size: 1rem; font-weight: 800;
}
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-light); position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--primary) !important; color: white !important; padding: 9px 20px; border-radius: 8px; font-weight: 600; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #0f0f0f 0%, #1a0000 50%, #111827 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 72px;
}

/* Animated pattern dots */
.hero-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(220,38,38,0.15) 1px, transparent 1px);
    background-size: 36px 36px;
    animation: patternShift 20s linear infinite;
}
@keyframes patternShift {
    0%   { background-position: 0 0; }
    100% { background-position: 36px 36px; }
}

/* Floating geometric shapes */
.hero-shape {
    position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.12;
}
.hs1 {
    width: 400px; height: 400px; border: 1.5px solid #dc2626;
    border-radius: 50%; top: -100px; right: -100px;
    animation: floatRotate 14s ease-in-out infinite;
}
.hs2 {
    width: 250px; height: 250px; border: 1px solid #dc2626;
    border-radius: 50%; top: 20%; right: 8%;
    animation: floatRotate 10s ease-in-out infinite reverse;
    opacity: 0.08;
}
.hs3 {
    width: 180px; height: 180px; background: rgba(220,38,38,0.08);
    border-radius: 30px; bottom: 10%; left: 5%;
    animation: floatUp 8s ease-in-out infinite;
    opacity: 0.3;
}
.hs4 {
    width: 80px; height: 80px; background: rgba(220,38,38,0.15);
    border-radius: 50%; top: 60%; right: 20%;
    animation: floatUp 6s ease-in-out infinite 2s;
}
.hs5 {
    width: 120px; height: 120px; border: 1px solid rgba(220,38,38,0.3);
    border-radius: 20px; bottom: 25%; right: 35%;
    animation: floatRotate 12s ease-in-out infinite 1s;
    opacity: 0.2;
}
/* Moving light streak */
.hero-streak {
    position: absolute; width: 2px; height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(220,38,38,0.6), transparent);
    animation: streakFall 4s ease-in-out infinite;
    pointer-events: none;
}
.hs6 { left: 15%; animation-delay: 0s; }
.hs7 { left: 60%; animation-delay: 1.5s; }
.hs8 { left: 80%; animation-delay: 3s; }

@keyframes floatRotate {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    33%       { transform: rotate(8deg) translateY(-20px); }
    66%       { transform: rotate(-5deg) translateY(10px); }
}
@keyframes floatUp {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-24px) scale(1.05); }
}
@keyframes streakFall {
    0%   { top: -130px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 0.8; }
    100% { top: 110%; opacity: 0; }
}

/* Red glow blob */
.hero::before {
    content: ''; position: absolute;
    top: 10%; right: 5%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220,38,38,0.18) 0%, transparent 65%);
    pointer-events: none; animation: blobPulse 6s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute;
    bottom: 5%; left: 5%; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(220,38,38,0.1) 0%, transparent 65%);
    pointer-events: none; animation: blobPulse 8s ease-in-out infinite 2s;
}
@keyframes blobPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.15); opacity: 0.7; }
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3);
    color: #fca5a5; font-size: 0.85rem; font-weight: 500;
    padding: 8px 16px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge::before {
    content: ''; width: 7px; height: 7px; background: var(--primary);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }

.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 24px; }
.hero h1 .highlight { color: #ef4444; }
.hero p { font-size: 1.1rem; color: #9ca3af; margin-bottom: 40px; max-width: 540px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: white; padding: 13px 26px;
    border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    transition: all 0.2s; box-shadow: 0 2px 16px rgba(220,38,38,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 24px rgba(220,38,38,0.45); color: white; }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #d1d5db; padding: 13px 26px;
    border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.2); transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); color: white; transform: translateY(-1px); }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-item h3 { font-size: 2rem; font-weight: 800; color: white; line-height: 1; }
.stat-item h3 span { color: #ef4444; }
.stat-item p { font-size: 0.82rem; color: #6b7280; margin-top: 4px; margin-bottom: 0; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; background: #fef2f2; color: var(--primary);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 6px;
    margin-bottom: 16px; border: 1px solid #fecaca;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--secondary); margin-bottom: 14px; line-height: 1.2; }
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 540px; margin: 0 auto; line-height: 1.8; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border-radius: 12px; padding: 32px 26px; border: 1px solid var(--border); transition: all 0.2s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--primary); transform: scaleX(0); transition: transform 0.25s; }
.service-card:hover { border-color: #fecaca; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: #fef2f2; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 800; color: var(--secondary); margin-bottom: 14px; line-height: 1.2; }
.why-content > p { color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item-icon { width: 42px; height: 42px; background: #fef2f2; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 3px; }
.why-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card { background: white; border-radius: 12px; padding: 26px 22px; border: 1px solid var(--border); text-align: center; transition: all 0.2s; }
.why-card:hover { box-shadow: var(--shadow); border-color: #fecaca; }
.why-card:first-child { background: var(--secondary); border-color: var(--secondary); }
.why-card:first-child h3, .why-card:first-child p { color: white; }
.why-card:last-child { background: var(--primary); border-color: var(--primary); }
.why-card:last-child h3, .why-card:last-child p { color: white; }
.why-card h3 { font-size: 1.9rem; font-weight: 800; color: var(--secondary); line-height: 1; margin-bottom: 6px; }
.why-card p { font-size: 0.82rem; color: var(--text-light); }

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: all 0.2s; }
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #fecaca; }
.project-thumb { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.project-thumb-1 { background: #fee2e2; } .project-thumb-2 { background: #fce7f3; }
.project-thumb-3 { background: #fef3c7; } .project-thumb-4 { background: #ede9fe; }
.project-thumb-5 { background: #f1f5f9; } .project-thumb-6 { background: #d1fae5; }
.project-body { padding: 22px; }
.project-tag { display: inline-block; background: #fef2f2; color: var(--primary); font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; border: 1px solid #fecaca; }
.project-body h3 { font-size: 1rem; font-weight: 700; color: var(--secondary); margin-bottom: 7px; }
.project-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.project-link { font-size: 0.88rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.project-link:hover { gap: 9px; color: var(--primary-dark); }

/* ===== MARQUEE TESTIMONIALS ===== */
.marquee-section { overflow: hidden; padding: 80px 0; background: var(--bg); }
.marquee-wrapper {
    display: flex; gap: 24px;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}
.marquee-wrapper:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.testimonial-card {
    background: white; border-radius: 14px; padding: 28px;
    border: 1px solid var(--border); transition: all 0.2s;
    width: 340px; flex-shrink: 0;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: #fecaca; }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: white; flex-shrink: 0; }
.av1 { background: var(--primary); } .av2 { background: #374151; } .av3 { background: #059669; }
.av4 { background: #7c3aed; }       .av5 { background: #d97706; } .av6 { background: var(--primary-dark); }
.author-info strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--secondary); }
.author-info span { font-size: 0.78rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(160deg, #0f0f0f 0%, #1a0000 60%, #111827 100%); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; background: radial-gradient(circle, rgba(220,38,38,0.18) 0%, transparent 65%); pointer-events: none; }
.cta-section .section-tag { background: rgba(220,38,38,0.15); color: #fca5a5; border-color: rgba(220,38,38,0.2); }
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-section p { color: #9ca3af; font-size: 1rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(160deg, #0f0f0f 0%, #1a0000 60%, #111827 100%); padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, rgba(220,38,38,0.14) 0%, transparent 65%); }
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 14px; }
.page-header p { font-size: 1.05rem; color: #9ca3af; max-width: 520px; margin: 0 auto; }

/* ===== HAKKIMIZDA ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-visual-main { background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 100%); border-radius: 16px; height: 420px; display: flex; align-items: center; justify-content: center; font-size: 6rem; position: relative; overflow: hidden; }
.about-visual-main::before { content: ''; position: absolute; top: -30%; right: -20%; width: 300px; height: 300px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.about-badge-float { position: absolute; bottom: -20px; right: -20px; background: white; border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; }
.about-badge-float strong { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.about-badge-float span { font-size: 0.78rem; color: var(--text-light); max-width: 80px; line-height: 1.3; }
.about-content h2 { font-size: clamp(1.8rem, 2.5vw, 2.3rem); font-weight: 800; color: var(--secondary); margin-bottom: 14px; line-height: 1.2; }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.about-tag { background: #fef2f2; color: var(--primary); font-size: 0.82rem; font-weight: 600; padding: 7px 14px; border-radius: 7px; border: 1px solid #fecaca; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); text-align: center; transition: all 0.2s; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #fecaca; }
.team-avatar { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.ta1 { background: #fef2f2; } .ta2 { background: #f5f3ff; } .ta3 { background: #f0fdf4; } .ta4 { background: #fefce8; }
.team-info { padding: 18px; }
.team-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.team-info span { font-size: 0.82rem; color: var(--primary); font-weight: 500; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: white; border-radius: 12px; padding: 32px 26px; border: 1px solid var(--border); text-align: center; transition: all 0.2s; }
.value-card:hover { box-shadow: var(--shadow); border-color: #fecaca; transform: translateY(-2px); }
.value-icon { width: 56px; height: 56px; background: #fef2f2; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 18px; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 9px; }
.value-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== SERVICES PAGE ===== */
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-detail-card { background: white; border-radius: 12px; padding: 36px; border: 1px solid var(--border); transition: all 0.2s; }
.service-detail-card:hover { box-shadow: var(--shadow-lg); border-color: #fecaca; transform: translateY(-2px); }
.service-detail-icon { width: 60px; height: 60px; background: #fef2f2; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin-bottom: 22px; }
.service-detail-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.service-detail-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
.service-features { display: flex; flex-direction: column; gap: 7px; }
.service-features li { font-size: 0.88rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* ===== SHOP ===== */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-card { background: white; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: all 0.2s; display: flex; flex-direction: column; }
.shop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #fecaca; }
.shop-card.featured { border-color: var(--primary); border-width: 2px; }
.shop-card-header { padding: 28px 28px 20px; position: relative; }
.shop-card-header .badge-featured { position: absolute; top: 16px; right: 16px; background: var(--primary); color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.shop-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 16px; }
.si-blue { background: #fef2f2; } .si-indigo { background: #fef2f2; }
.si-dark { background: #f1f5f9; } .si-green { background: #f0fdf4; }
.si-amber { background: #fffbeb; } .si-rose  { background: #fff1f2; }
.shop-card-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.shop-card-header p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.shop-price { padding: 16px 28px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 6px; }
.shop-price .amount { font-size: 1.8rem; font-weight: 800; color: var(--secondary); }
.shop-price .currency { font-size: 1.1rem; font-weight: 700; color: var(--text-light); }
.shop-price .period { font-size: 0.82rem; color: var(--text-light); margin-left: 2px; }
.shop-features { padding: 20px 28px; flex: 1; display: flex; flex-direction: column; gap: 9px; }
.shop-features li { font-size: 0.88rem; color: var(--text); display: flex; align-items: center; gap: 9px; }
.shop-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.shop-features li.disabled { color: var(--text-light); }
.shop-features li.disabled::before { content: '—'; color: #d1d5db; }
.shop-card-footer { padding: 20px 28px; }
.shop-btn { display: block; width: 100%; padding: 12px; background: var(--bg); color: var(--secondary); border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.92rem; font-weight: 600; text-align: center; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.shop-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.shop-btn.primary { background: var(--primary); color: white; border-color: var(--primary); }
.shop-btn.primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.shop-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: all 0.2s; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #fecaca; }
.product-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.pt1{background:#fee2e2;} .pt2{background:#d1fae5;} .pt3{background:#fef3c7;} .pt4{background:#ede9fe;}
.pt5{background:#ffe4e6;} .pt6{background:#e0f2fe;} .pt7{background:#dcfce7;} .pt8{background:#fce7f3;}
.product-body { padding: 18px; }
.product-category { font-size: 0.72rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.product-body p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--secondary); }
.product-price span { font-size: 0.75rem; font-weight: 500; color: var(--text-light); margin-left: 2px; }
.add-cart-btn { padding: 7px 14px; background: var(--primary); color: white; border: none; border-radius: 7px; font-size: 0.8rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.add-cart-btn:hover { background: var(--primary-dark); }

/* ===== PAYMENT MODAL ===== */
.payment-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 16px;
}
.payment-overlay.open { display: flex; }
.payment-modal {
    background: white; border-radius: 20px; width: 100%;
    max-width: 520px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn { from { opacity:0; transform:scale(0.9) translateY(20px); } to { opacity:1; transform:scale(1) translateY(0); } }

.payment-modal-header {
    background: linear-gradient(135deg, #7f1d1d, #dc2626);
    padding: 24px 28px; color: white; position: relative;
}
.payment-modal-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.payment-modal-header p { font-size: 0.85rem; opacity: 0.8; }
.modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: none; cursor: pointer;
    color: white; font-size: 1.1rem; display: flex; align-items: center;
    justify-content: center; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }

/* Credit card visual */
.card-visual {
    margin: 24px 28px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 14px; padding: 20px 24px; color: white;
    height: 140px; display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.card-visual::before {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.04); border-radius: 50%;
}
.card-visual::after {
    content: ''; position: absolute; bottom: -40px; left: 20px;
    width: 120px; height: 120px;
    background: rgba(220,38,38,0.15); border-radius: 50%;
}
.card-chip { width: 36px; height: 26px; background: linear-gradient(135deg, #d4af37, #f0d060); border-radius: 5px; }
.card-number-display { font-size: 1rem; font-weight: 600; letter-spacing: 3px; font-family: monospace; }
.card-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.card-bottom-left .card-label { font-size: 0.6rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }
.card-bottom-left .card-value { font-size: 0.9rem; font-weight: 600; }
.card-brand { font-size: 1.4rem; font-weight: 800; opacity: 0.9; }

/* Payment form */
.payment-form-body { padding: 24px 28px 28px; }
.pay-form-group { margin-bottom: 16px; }
.pay-form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.pay-form-group input {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
    border-radius: 8px; font-size: 0.95rem; color: var(--text);
    font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg);
}
.pay-form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(220,38,38,0.08); background: white; }
.pay-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-submit-btn {
    width: 100%; padding: 14px; background: var(--primary); color: white;
    border: none; border-radius: 10px; font-size: 1rem; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: all 0.2s; margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pay-submit-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Processing screen */
.payment-processing {
    display: none; padding: 48px 28px; text-align: center;
}
.processing-spinner {
    width: 64px; height: 64px; border: 4px solid #fecaca;
    border-top-color: var(--primary); border-radius: 50%;
    margin: 0 auto 24px; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.processing-title { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.processing-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; }
.processing-bar-bg { height: 8px; background: #f3f4f6; border-radius: 99px; overflow: hidden; }
.processing-bar { height: 100%; background: var(--primary); border-radius: 99px; width: 0%; transition: width 0.4s ease; }
.processing-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; text-align: left; }
.pstep { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-light); }
.pstep-icon { width: 22px; height: 22px; border-radius: 50%; background: #f3f4f6; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.pstep.done .pstep-icon { background: #dcfce7; color: #15803d; }
.pstep.active .pstep-icon { background: #fee2e2; animation: pulse 1s infinite; }
.pstep.done { color: var(--text); }
.pstep-counter { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; }

/* Success screen */
.payment-success {
    display: none; padding: 48px 28px; text-align: center;
}
.success-icon {
    width: 80px; height: 80px; background: #dcfce7; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 2.2rem;
    animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes successPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-title { font-size: 1.3rem; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.success-sub { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }
.success-details { background: var(--bg); border-radius: 10px; padding: 16px 20px; text-align: left; margin-bottom: 24px; }
.success-detail-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 5px 0; border-bottom: 1px solid var(--border); }
.success-detail-row:last-child { border-bottom: none; }
.success-detail-row span:first-child { color: var(--text-light); }
.success-detail-row span:last-child { font-weight: 600; color: var(--secondary); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.contact-info h2 { font-size: 1.7rem; font-weight: 800; color: var(--secondary); margin-bottom: 14px; }
.contact-info > p { color: var(--text-light); line-height: 1.8; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 46px; height: 46px; background: #fef2f2; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-item p { font-size: 0.95rem; color: var(--secondary); font-weight: 500; }
.contact-form { background: white; border-radius: 16px; padding: 44px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.2rem; font-weight: 700; color: var(--secondary); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.92rem; color: var(--text); font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; background: var(--bg); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(220,38,38,0.08); background: white; }
.form-group textarea { height: 125px; resize: vertical; }
.form-btn { width: 100%; padding: 13px; background: var(--primary); color: white; border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.form-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.alert-success { background: #f0fdf4; color: #166534; border: 1.5px solid #bbf7d0; border-radius: 8px; padding: 13px 16px; font-size: 0.9rem; font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; gap: 9px; }

/* ===== FOOTER ===== */
footer { background: var(--secondary); color: #9ca3af; }
.footer-top { padding: 76px 0 56px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .logo { color: white; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: #6b7280; max-width: 270px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn { width: 36px; height: 36px; border-radius: 7px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all 0.2s; border: 1px solid rgba(255,255,255,0.08); }
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.88rem; color: #6b7280; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-contact-item { display: flex; gap: 9px; margin-bottom: 12px; font-size: 0.88rem; color: #6b7280; }
.footer-contact-item span:first-child { font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: #4b5563; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: #4b5563; transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid, .projects-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .why-grid { gap: 40px; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: white; padding: 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); gap: 20px; }
    .hero h1 { font-size: 2.1rem; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .services-grid, .projects-grid, .values-grid, .shop-grid { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .why-grid, .about-grid { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row, .pay-form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 18px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .why-visual { grid-template-columns: repeat(2, 1fr); }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { gap: 20px; }
    .team-grid { grid-template-columns: 1fr; }
    .shop-products-grid { grid-template-columns: 1fr; }
}
