/* ============================================================
   PRIME PIXEL ADS — Main Stylesheet
   primepixelads.in
   ============================================================ */

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1A1A1A; background: #fff; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === VARIABLES === */
:root {
  --yellow: #F5C518;
  --yellow-dark: #D4A800;
  --yellow-light: rgba(245, 197, 24, 0.12);
  --black: #0A0A0A;
  --dark: #141414;
  --dark-card: #1E1E1E;
  --gray: #777;
  --gray-light: #F7F7F7;
  --border: #E8E8E8;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --container: 1200px;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.24);
  --transition: 0.3s ease;
}

/* === UTILITIES === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-light { background: var(--gray-light); }
.section-dark { background: var(--dark); color: var(--white); }
.section-yellow { background: var(--yellow); }

.section-header { text-align: center; margin-bottom: 60px; }
.tag { display: inline-block; background: var(--yellow-light); color: var(--yellow-dark); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; border: 1px solid rgba(245,197,24,0.25); }
.section-dark .tag { background: rgba(245,197,24,0.15); color: var(--yellow); border-color: rgba(245,197,24,0.3); }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; line-height: 1.1; letter-spacing: -0.5px; }
.section-header p { font-size: 17px; color: var(--gray); margin-top: 14px; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.55); }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: 15px; transition: var(--transition); line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,197,24,0.45); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #222; transform: translateY(-2px); box-shadow: var(--shadow-dark); }
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1aad52; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: 12px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* === HEADER === */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background 0.3s ease, box-shadow 0.3s ease; }
.header.scrolled { background: rgba(10,10,10,0.97); backdrop-filter: blur(10px); box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text .logo-prime { font-size: 19px; font-weight: 900; color: var(--white); letter-spacing: -0.3px; }
.logo-text .logo-pixel { font-size: 19px; font-weight: 900; color: var(--yellow); letter-spacing: -0.3px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: rgba(255,255,255,0.8); font-weight: 500; font-size: 14px; transition: var(--transition); position: relative; padding-bottom: 2px; }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: var(--transition); border-radius: 2px; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--black); z-index: 999; flex-direction: column; padding: 24px; gap: 4px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.85); font-size: 18px; font-weight: 600; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .btn { margin-top: 20px; justify-content: center; font-size: 16px; }
.mobile-nav .btn-whatsapp { margin-top: 12px; }

/* === HERO (Homepage) === */
.hero { min-height: 100vh; background: var(--black); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%); right: -100px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; padding-top: 96px; padding-bottom: 60px; width: 100%; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,197,24,0.12); border: 1px solid rgba(245,197,24,0.28); color: var(--yellow); font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 100px; margin-bottom: 24px; letter-spacing: 0.5px; }
.hero h1 { font-size: clamp(38px, 5vw, 68px); font-weight: 900; line-height: 1.07; color: var(--white); margin-bottom: 22px; letter-spacing: -1.5px; }
.hero h1 span { color: var(--yellow); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-item strong { display: block; font-size: 30px; font-weight: 900; color: var(--yellow); line-height: 1; }
.stat-item span { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 0.3px; margin-top: 4px; display: block; }

/* Hero Billboard Visual */
.hero-visual { position: relative; }
.billboard-wrap { position: relative; }
.billboard-frame { background: #1C1C1C; border-radius: 14px; overflow: hidden; border: 1px solid rgba(245,197,24,0.15); box-shadow: 0 24px 80px rgba(0,0,0,0.6); aspect-ratio: 16/10; display: flex; flex-direction: column; }
.billboard-top { height: 10px; background: #2A2A2A; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.billboard-body { flex: 1; background: linear-gradient(160deg, #0F0F0F 0%, #1A1A1A 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 32px; text-align: center; position: relative; }
.billboard-body::before { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 40px; background: radial-gradient(ellipse at 30% 0%, rgba(245,197,24,0.2) 0%, transparent 70%), radial-gradient(ellipse at 70% 0%, rgba(245,197,24,0.2) 0%, transparent 70%); }
.billboard-label { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--yellow); opacity: 0.7; }
.billboard-headline { font-size: clamp(22px, 2.5vw, 32px); font-weight: 900; color: var(--white); letter-spacing: 1px; line-height: 1.1; }
.billboard-sub { font-size: 11px; color: rgba(245,197,24,0.6); letter-spacing: 3px; text-transform: uppercase; }
.billboard-support { display: flex; justify-content: center; gap: 4px; margin-top: 4px; }
.billboard-support span { width: 6px; height: 6px; border-radius: 50%; background: rgba(245,197,24,0.3); }
.billboard-support span:nth-child(2) { background: rgba(245,197,24,0.7); }
.bb-post { width: 6px; height: 60px; background: #2A2A2A; margin: 0 auto; }
.bb-base { width: 120px; height: 10px; background: #222; margin: 0 auto; border-radius: 3px; }
.bb-lights { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); display: flex; gap: 80px; }
.bb-lights span { width: 12px; height: 12px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 16px var(--yellow); display: block; }

/* Floating badges */
.fbadge { position: absolute; background: var(--dark-card); border: 1px solid rgba(245,197,24,0.2); color: var(--white); border-radius: 10px; padding: 10px 14px; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.fbadge i { color: var(--yellow); font-size: 14px; }
.fbadge-1 { bottom: 22%; left: -60px; animation: floatY 3s ease-in-out infinite; }
.fbadge-2 { top: 14%; right: -52px; animation: floatY 3s ease-in-out infinite 1.2s; }
.fbadge-3 { bottom: 8%; right: 0; animation: floatY 3s ease-in-out infinite 2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* === TICKER === */
.ticker { background: var(--yellow); overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; gap: 0; animation: tick 25s linear infinite; width: max-content; }
.ticker-item { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 13px; color: var(--black); padding: 0 36px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--black); opacity: 0.4; flex-shrink: 0; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === SERVICE CARDS (Home) === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.scard { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.scard::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(245,197,24,0.35); }
.scard:hover::after { transform: scaleX(1); }
.scard-icon { width: 54px; height: 54px; background: var(--yellow-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); border: 1px solid rgba(245,197,24,0.2); }
.scard:hover .scard-icon { background: var(--yellow); }
.scard-icon i { font-size: 22px; color: var(--yellow-dark); transition: var(--transition); }
.scard:hover .scard-icon i { color: var(--black); }
.scard h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--black); }
.scard p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.scard-link { font-size: 13px; font-weight: 700; color: var(--yellow-dark); display: inline-flex; align-items: center; gap: 6px; }
.scard-link i { transition: transform 0.2s ease; font-size: 11px; }
.scard:hover .scard-link i { transform: translateX(4px); }

/* === WHY US / FEATURES === */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.fcard { text-align: center; padding: 36px 24px; }
.fcard-icon { width: 72px; height: 72px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(245,197,24,0.3); }
.fcard-icon i { font-size: 28px; color: var(--black); }
.fcard h3 { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.fcard p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* === STATS BAR === */
.stats-bar { background: var(--yellow); padding: 48px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.sbar-item strong { display: block; font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--black); line-height: 1; }
.sbar-item span { font-size: 14px; font-weight: 700; color: rgba(0,0,0,0.55); margin-top: 6px; display: block; }
.stats-divider { width: 1px; background: rgba(0,0,0,0.15); display: block; }

/* === PROCESS === */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 35px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: repeating-linear-gradient(90deg, rgba(245,197,24,0.5) 0, rgba(245,197,24,0.5) 8px, transparent 8px, transparent 16px); z-index: 0; }
.pstep { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.pstep-num { width: 70px; height: 70px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; font-weight: 900; color: var(--black); border: 4px solid var(--dark); box-shadow: 0 0 0 4px rgba(245,197,24,0.2); }
.pstep h3 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.pstep p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* === TESTIMONIALS === */
.tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.tcard { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 32px; }
.stars { color: var(--yellow); font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; }
.tcard blockquote { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.tcard blockquote::before { content: '"'; font-size: 28px; color: var(--yellow); line-height: 0; vertical-align: -10px; margin-right: 4px; font-style: normal; }
.tauthor { display: flex; align-items: center; gap: 12px; }
.tavatar { width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 17px; color: var(--black); flex-shrink: 0; }
.tname { font-weight: 700; font-size: 14px; color: var(--white); }
.tbiz { font-size: 12px; color: #666; margin-top: 2px; }

/* === CTA BANNER === */
.cta-banner { background: var(--yellow); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text .urgency { display: inline-block; background: var(--black); color: var(--yellow); font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 100px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.cta-text h2 { font-size: clamp(24px, 3vw, 42px); font-weight: 900; color: var(--black); line-height: 1.15; max-width: 560px; letter-spacing: -0.5px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* === PAGE HERO (inner pages) === */
.page-hero { background: var(--black); padding: 140px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent); }
.page-hero-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%); right: -100px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a { color: var(--yellow); font-weight: 600; }
.breadcrumb i { font-size: 10px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: var(--white); line-height: 1.07; letter-spacing: -1px; }
.page-hero h1 span { color: var(--yellow); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 540px; margin-top: 16px; line-height: 1.75; }

/* === SERVICES DETAIL PAGE === */
.sdetail { padding: 80px 0; }
.sdetail:nth-child(odd) { background: var(--white); }
.sdetail:nth-child(even) { background: var(--gray-light); }
.sdetail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sdetail:nth-child(even) .sdetail-inner { direction: rtl; }
.sdetail:nth-child(even) .sdetail-inner > * { direction: ltr; }
.sdetail-visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--dark-card); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; position: relative; }
.sdetail-visual i { font-size: 72px; color: rgba(245,197,24,0.25); }
.sdetail-visual p { color: rgba(255,255,255,0.25); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.sdetail-visual .add-img-note { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.4); font-size: 10px; padding: 4px 10px; border-radius: 6px; }
.sdetail-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.sdetail-visual:hover img { transform: scale(1.04); }
.sdetail-content h2 { font-size: clamp(24px, 2.5vw, 34px); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.3px; }
.sdetail-content > p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.benefits { margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.benefit { display: flex; align-items: flex-start; gap: 12px; }
.benefit i { color: var(--yellow-dark); margin-top: 3px; flex-shrink: 0; font-size: 14px; }
.benefit span { font-size: 14px; color: #444; line-height: 1.5; }
.use-cases h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 10px; }
.uc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.uc-tag { background: var(--yellow-light); color: var(--yellow-dark); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(245,197,24,0.2); }

/* === ABOUT PAGE === */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; background: var(--dark-card); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.about-intro-img i { font-size: 80px; color: rgba(245,197,24,0.2); }
.about-intro-img p { color: rgba(255,255,255,0.2); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-intro-content {}
.about-intro-content h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 900; margin-bottom: 20px; letter-spacing: -0.3px; }
.about-intro-content p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border-bottom: 4px solid var(--yellow); }
.mv-card h3 { font-size: 19px; font-weight: 800; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.mv-card h3 i { color: var(--yellow-dark); }
.mv-card p { font-size: 15px; color: var(--gray); line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.vcard { background: var(--dark-card); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; border: 1px solid rgba(255,255,255,0.04); transition: var(--transition); }
.vcard:hover { border-color: rgba(245,197,24,0.2); transform: translateY(-4px); }
.vcard-icon { width: 56px; height: 56px; background: rgba(245,197,24,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.vcard-icon i { font-size: 22px; color: var(--yellow); }
.vcard h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.vcard p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.65; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.cinfo-card { background: var(--gray-light); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--border); }
.cinfo-icon { width: 46px; height: 46px; background: var(--yellow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-icon i { font-size: 18px; color: var(--black); }
.cinfo-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); font-weight: 700; margin-bottom: 5px; }
.cinfo-val { font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.55; }
.cinfo-val a { color: var(--black); transition: var(--transition); }
.cinfo-val a:hover { color: var(--yellow-dark); }
.wa-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.contact-form { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.contact-form > .form-desc { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { margin-bottom: 18px; }
.fgroup label { display: block; font-size: 11px; font-weight: 700; color: var(--gray); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.fgroup input, .fgroup select, .fgroup textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--black); transition: var(--transition); background: var(--white); }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(245,197,24,0.1); }
.fgroup textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.map-placeholder { background: var(--dark-card); border-radius: var(--radius-lg); height: 300px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; margin-top: 32px; border: 1px solid rgba(255,255,255,0.06); }
.map-placeholder i { font-size: 40px; color: rgba(245,197,24,0.3); }
.map-placeholder p { color: rgba(255,255,255,0.3); font-size: 13px; }

/* === PORTFOLIO / GALLERY === */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 10px 22px; border-radius: 100px; border: 1.5px solid var(--border); font-size: 13px; font-weight: 700; color: var(--gray); transition: var(--transition); cursor: pointer; background: var(--white); }
.filter-btn.active, .filter-btn:hover { border-color: var(--yellow); background: var(--yellow); color: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.gitem { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--dark-card); position: relative; cursor: pointer; transition: opacity 0.3s ease; }
.gitem-inner { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%); }
.gitem-inner i { font-size: 44px; color: rgba(245,197,24,0.3); }
.gitem-inner span { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; padding: 0 16px; }
.gitem img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gitem:hover img { transform: scale(1.06); }
.goverlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 45%, transparent 100%); opacity: 1; display: flex; align-items: flex-end; padding: 20px 22px; }
.glabel { color: var(--white); font-weight: 800; font-size: 15px; letter-spacing: -0.2px; line-height: 1.3; }
.glabel span { display: block; font-size: 10px; font-weight: 700; color: var(--yellow); margin-top: 5px; letter-spacing: 1.5px; text-transform: uppercase; }

/* === FAQ PAGE === */
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; gap: 16px; }
.faq-q span { font-size: 16px; font-weight: 700; color: var(--black); line-height: 1.4; flex: 1; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--yellow-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-icon i { font-size: 14px; color: var(--yellow-dark); transition: transform 0.3s ease; }
.faq-item.open .faq-icon { background: var(--yellow); }
.faq-item.open .faq-icon i { transform: rotate(45deg); color: var(--black); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { font-size: 15px; color: var(--gray); line-height: 1.85; padding-bottom: 24px; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-cat-title { font-size: 22px; font-weight: 900; color: var(--black); margin: 48px 0 24px; padding-bottom: 16px; border-bottom: 3px solid var(--yellow); display: flex; align-items: center; gap: 10px; }
.faq-cat-title i { color: var(--yellow-dark); }
.faq-cat-title:first-child { margin-top: 0; }

/* === FOOTER === */
.footer { background: #080808; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo-text .logo-prime { font-size: 22px; }
.footer-brand .logo-text .logo-pixel { font-size: 22px; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; margin: 18px 0 24px; max-width: 260px; }
.social-links { display: flex; gap: 10px; }
.slink { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 15px; transition: var(--transition); }
.slink:hover { background: var(--yellow); color: var(--black); }
.footer-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); }
.fcontact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.fcontact-item i { color: var(--yellow); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.fcontact-item a, .fcontact-item span { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); line-height: 1.6; }
.fcontact-item a:hover { color: var(--yellow); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(245,197,24,0.7); }

/* === FLOATING ELEMENTS === */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 900; width: 58px; height: 58px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(37,211,102,0.45); transition: var(--transition); animation: wapulse 2.5s ease-in-out infinite; }
.wa-float i { font-size: 28px; color: var(--white); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.55); animation: none; }
@keyframes wapulse { 0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); } 50% { box-shadow: 0 8px 28px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.1); } }

.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 901; background: var(--yellow); padding: 12px 20px; flex-direction: row; gap: 8px; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); }
.mobile-cta-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 14px; font-weight: 800; color: var(--black); padding: 10px; border-radius: var(--radius); background: rgba(0,0,0,0.08); }
.mobile-cta-bar a.wa { background: var(--whatsapp); color: var(--white); }

.scroll-top-btn { position: fixed; bottom: 104px; right: 32px; z-index: 800; width: 44px; height: 44px; background: var(--dark-card); color: rgba(255,255,255,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; opacity: 0; pointer-events: none; transition: var(--transition); box-shadow: var(--shadow-dark); border: 1px solid rgba(255,255,255,0.08); }
.scroll-top-btn.show { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--yellow); color: var(--black); border-color: transparent; }

/* === SCROLL ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }
.fade-up.d6 { transition-delay: 0.6s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 108px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .fbadge-1, .fbadge-2, .fbadge-3 { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .sdetail-inner { grid-template-columns: 1fr; gap: 40px; }
  .sdetail:nth-child(even) .sdetail-inner { direction: ltr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .cta-actions { width: 100%; }
  .mobile-cta-bar { display: flex; }
  .wa-float { display: none; }
  .scroll-top-btn { bottom: 140px; right: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
