/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050510;
  --bg2: #0a0a1a;
  --surface: #0f0f23;
  --surface2: #16162e;
  --border: rgba(255,255,255,0.08);
  --accent: #6c63ff;
  --accent2: #a78bfa;
  --accent3: #38bdf8;
  --green: #22c55e;
  --pink: #f43f5e;
  --text: #f1f5f9;
  --text2: #94a3b8;
  --text3: #64748b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

html, body { max-width: 100%; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { overflow: hidden; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(5,5,16,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.logo-d { font-size: 1.6rem; font-weight: 900; color: var(--accent); }
.logo-zero { font-size: 1.6rem; font-weight: 900; color: var(--accent2); }
.logo-text { font-size: 0.75rem; font-weight: 700; color: var(--text2); letter-spacing: 2px; margin-left: 6px; }
.nav-links { display: flex; list-style: none; gap: 8px; margin-left: auto; }
.nav-links a {
  color: var(--text2); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.cta-nav {
  background: var(--accent); color: #fff; border: none; padding: 10px 22px;
  border-radius: 10px; font-weight: 600; font-size: 0.9rem; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.cta-nav:hover { background: var(--accent2); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  overflow: hidden;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(108,99,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: var(--accent); top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: var(--accent3); bottom: -100px; left: -100px; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: var(--pink); top: 50%; left: 40%; animation-delay: 6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { flex: 1; max-width: 600px; z-index: 1; }
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; z-index: 1; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,99,255,0.15); border: 1px solid rgba(108,99,255,0.3);
  color: var(--accent2); padding: 8px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { color: var(--text2); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border: none; padding: 14px 28px; border-radius: 12px;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(108,99,255,0.4); }
.btn-primary.small { padding: 10px 20px; font-size: 0.9rem; }
.btn-primary.full-width { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--border);
  padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(108,99,255,0.05); }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--text); }
.stat-label { font-size: 0.8rem; color: var(--text3); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Code Card */
.code-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; width: 380px;
  box-shadow: var(--shadow); animation: float 6s ease-in-out infinite;
}
.code-header {
  background: var(--surface2); padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.code-title { font-size: 0.8rem; color: var(--text3); margin-left: 8px; font-family: monospace; }
.code-body { padding: 20px; font-family: 'Courier New', monospace; font-size: 0.88rem; line-height: 2; }
.code-line { color: var(--text2); }
.code-line.pl { padding-left: 16px; }
.code-line.mt { margin-top: 8px; }
.kw { color: #c792ea; }
.var { color: #82aaff; }
.key { color: #f07178; }
.str { color: #c3e88d; }
.num { color: #f78c6c; }
.fn { color: #82aaff; }
.output { color: var(--green); margin-top: 8px; }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 0; }
.section-tag {
  display: inline-block; background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.2);
  color: var(--accent2); padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.5px; line-height: 1.2;
}
.section-sub { color: var(--text2); font-size: 1.05rem; max-width: 560px; margin-bottom: 60px; }

/* ===== ABOUT ===== */
.about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 48px; }
.about-text p { color: var(--text2); margin-bottom: 20px; font-size: 1.05rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.value-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; color: var(--text2);
  transition: all 0.2s;
}
.value-item:hover { border-color: var(--accent); color: var(--text); }
.value-item i { color: var(--accent); }

.about-card-stack { position: relative; height: 320px; }
.about-card {
  position: absolute; border-radius: var(--radius);
  width: 280px; height: 280px;
}
.card-back { background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.2); top: 40px; left: 40px; transform: rotate(8deg); }
.card-mid { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2); top: 20px; left: 20px; transform: rotate(4deg); }
.card-front {
  background: var(--surface); border: 1px solid var(--border);
  top: 0; left: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  box-shadow: var(--shadow);
}
.card-front i { color: var(--accent); }
.card-front h3 { font-size: 1.2rem; font-weight: 800; }
.card-front p { color: var(--text3); font-size: 0.85rem; }
.card-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.card-tags span {
  background: rgba(108,99,255,0.15); color: var(--accent2);
  padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: relative;
  transition: all 0.3s; cursor: default;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(108,99,255,0.15); }
.service-card.featured { border-color: var(--accent); background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(167,139,250,0.05)); }
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 4px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 700;
  white-space: nowrap;
}
.service-icon {
  width: 56px; height: 56px; background: rgba(108,99,255,0.15);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent); margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text2); font-size: 0.9rem; margin-bottom: 20px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li { color: var(--text3); font-size: 0.85rem; padding-left: 16px; position: relative; }
.service-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }

/* ===== PROJECTS ===== */
.projects { background: var(--bg2); }
.projects-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 24px; margin-top: 48px; }
.project-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all 0.3s;
}
.project-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.main-project { grid-row: span 2; display: flex; flex-direction: column; }
.project-img { padding: 24px; background: var(--surface2); }
.project-mockup { background: #1a1a2e; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.browser-bar {
  background: #0d0d1a; padding: 10px 14px; display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.screenshot-wrap {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--surface2);
}
.site-screenshot {
  width: 100%; height: 220px; object-fit: cover; object-position: top;
  display: block; transition: transform 0.4s ease;
}
.screenshot-wrap:hover .site-screenshot { transform: scale(1.03); }
.iframe-overlay {
  position: absolute; inset: 0; background: rgba(5,5,16,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; cursor: pointer;
}
.screenshot-wrap:hover .iframe-overlay { opacity: 1; }
.iframe-overlay span {
  background: var(--accent); color: #fff; padding: 10px 22px;
  border-radius: 10px; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.b-open {
  margin-left: auto; color: var(--text3); font-size: 0.75rem;
  text-decoration: none; transition: color 0.2s;
}
.b-open:hover { color: var(--accent); }
.browser-content { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.mock-hero { height: 80px; background: linear-gradient(135deg, rgba(108,99,255,0.3), rgba(56,189,248,0.2)); border-radius: 8px; }
.mock-nav { height: 12px; background: rgba(255,255,255,0.05); border-radius: 6px; width: 60%; }
.mock-cards { display: flex; gap: 8px; }
.mock-card { flex: 1; height: 50px; background: rgba(255,255,255,0.04); border-radius: 6px; border: 1px solid var(--border); }
.project-info { padding: 28px; flex: 1; }
.project-tag {
  display: inline-block; background: rgba(34,197,94,0.1); color: var(--green);
  border: 1px solid rgba(34,197,94,0.2); padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 12px;
}
.project-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.project-info p { color: var(--text2); font-size: 0.95rem; margin-bottom: 20px; }
.project-tech { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.project-tech span {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text3); padding: 4px 12px; border-radius: 100px; font-size: 0.8rem;
}
.project-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: gap 0.2s;
}
.project-link:hover { gap: 12px; }
.coming-soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px; gap: 12px;
}
.cs-icon { font-size: 2rem; color: var(--accent2); }
.coming-soon h3 { font-size: 1.2rem; font-weight: 700; }
.coming-soon p { color: var(--text2); font-size: 0.9rem; }
.cs-badge {
  background: rgba(167,139,250,0.1); color: var(--accent2);
  border: 1px solid rgba(167,139,250,0.2); padding: 6px 16px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 600;
}

/* ===== BOOKING ===== */
.booking { background: var(--bg); }
.booking-layout { display: flex; flex-direction: column; gap: 24px; max-width: 760px; margin: 0 auto; }
.booking-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.bp {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.82rem; color: var(--text2); font-weight: 500;
}
.bp i { color: var(--accent); font-size: 0.75rem; }
.booking-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); padding: 11px 14px; border-radius: 10px;
  font-size: 0.92rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  display: flex; align-items: center; gap: 8px;
  color: var(--text3); font-size: 0.78rem; justify-content: center;
}
.form-note i { color: var(--green); }
.booking-success {
  text-align: center; padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.booking-success i { font-size: 3rem; color: var(--green); }
.booking-success h3 { font-size: 1.4rem; font-weight: 800; }
.booking-success p { color: var(--text2); }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .booking-form-card { padding: 20px 16px; }
}

/* ===== CONTACT ===== */
.contact { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; align-items: center; gap: 20px;
  transition: all 0.3s;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(108,99,255,0.12); border: 1px solid rgba(108,99,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
}
.contact-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact-info h4 { font-size: 0.75rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.contact-info a { color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: color 0.2s; }
.contact-info a:hover { color: var(--accent2); }
.contact-info span { color: var(--text3); font-size: 0.8rem; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-main {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-bottom: 48px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; color: var(--text); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { color: var(--text3); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent2); }
.footer-socials { display: flex; flex-direction: column; gap: 10px; }
.footer-socials a { display: flex; align-items: center; gap: 10px; color: var(--text3); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-socials a:hover { color: var(--accent2); }
.footer-socials i { width: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; color: var(--text3); font-size: 0.85rem; text-align: center;
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { gap: 40px; }
  .sc-left { padding: 32px 28px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .cta-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    flex-direction: column; text-align: center;
    padding: 100px 20px 60px; gap: 32px;
    min-height: unset;
  }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; margin: 0 auto 24px; max-width: 100%; }
  .hero-actions { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .hero-visual { width: 100%; display: flex; justify-content: center; }
  .code-card { width: 100%; max-width: 100%; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-card-stack { display: none; }
  .about-values { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .featured-badge { font-size: 0.7rem; }

  /* Projects */
  .showcase-card { grid-template-columns: 1fr; }
  .sc-left { padding: 24px 20px; }
  .sc-right { min-height: 220px; padding: 20px 20px 0; }
  .sc-title { font-size: 1.5rem; }
  .sc-meta { flex-wrap: wrap; gap: 10px; }
  .showcase-bottom { grid-template-columns: 1fr; }
  .sb-card { flex-direction: column; text-align: center; align-items: center; padding: 24px; }
  .work-stats { flex-wrap: wrap; gap: 10px; }
  .ws-item { min-width: calc(50% - 5px); flex: none; padding: 18px 12px; }

  /* Booking */
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-info { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-group.full { grid-column: span 1; }
  .booking-form-card { padding: 24px 16px; }
  .booking-form-card h3 { font-size: 1.2rem; }
  .phone-input-wrap { flex-direction: row; }
  .country-code-select { width: 85px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 20px 16px; }

  /* Footer */
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { text-align: center; justify-content: center; }

  /* General */
  section { padding: 64px 0; }
  .section-title { font-size: 1.8rem; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
  .stat-divider { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .ws-item { min-width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .sc-tags span { font-size: 0.72rem; padding: 4px 10px; }
  .section-title { font-size: 1.5rem; }
  .badge { font-size: 0.78rem; }
  .btn-primary, .btn-outline { font-size: 0.9rem; padding: 12px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-form-card { padding: 20px 14px; }
  .sc-left { padding: 20px 16px; }
  .sc-right { padding: 16px 16px 0; }
  .showcase-bottom .sb-card { padding: 20px 16px; }
  .footer-main { gap: 20px; }
  .work-stats { gap: 8px; }
  .ws-item { padding: 16px 10px; }
  .ws-num { font-size: 1.2rem; }
}

.b-url {
  margin-left: 12px; background: rgba(255,255,255,0.05); border-radius: 6px;
  padding: 3px 12px; font-size: 0.75rem; color: var(--text3); font-family: monospace;
}

/* Logo SVG */
.logo-img { height: 48px; width: auto; display: block; }
.footer-logo { height: 52px; }

.screenshot-fallback {
  width: 100%; height: 220px; background: var(--surface2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text2);
}
.screenshot-fallback i { font-size: 2.5rem; color: var(--accent); }
.screenshot-fallback span { font-size: 1rem; font-weight: 600; }

/* ===== SITE PREVIEW MOCKUP ===== */
.site-preview {
  background: #0a0a18;
  padding: 0;
  height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sp-nav-logo { width: 60px; height: 8px; background: linear-gradient(90deg, #6c63ff, #a78bfa); border-radius: 4px; }
.sp-nav-links { display: flex; align-items: center; gap: 8px; }
.sp-link { width: 28px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.sp-btn { width: 40px; height: 18px; background: linear-gradient(135deg, #6c63ff, #a78bfa); border-radius: 4px; margin-left: 4px; }

.sp-hero {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px 10px;
  flex: 1;
}
.sp-hero-text { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sp-badge { width: 80px; height: 10px; background: rgba(108,99,255,0.3); border-radius: 10px; }
.sp-h1 { width: 100%; height: 10px; background: rgba(255,255,255,0.18); border-radius: 4px; }
.sp-h1.short { width: 70%; }
.sp-p { width: 90%; height: 7px; background: rgba(255,255,255,0.07); border-radius: 3px; }
.sp-p.short2 { width: 60%; }
.sp-actions { display: flex; gap: 8px; margin-top: 4px; }
.sp-cta { width: 70px; height: 18px; background: linear-gradient(135deg, #6c63ff, #a78bfa); border-radius: 5px; }
.sp-cta.outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); }
.sp-hero-img {
  width: 90px; height: 80px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.25), rgba(56,189,248,0.15));
  border-radius: 8px; border: 1px solid rgba(108,99,255,0.2);
}

.sp-cards {
  display: flex; gap: 8px; padding: 0 14px 12px;
}
.sp-card {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 8px; display: flex; flex-direction: column; gap: 5px;
}
.sp-card-icon { width: 18px; height: 18px; background: rgba(108,99,255,0.4); border-radius: 4px; }
.sp-card-line { width: 100%; height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.sp-card-line.short { width: 60%; }

/* ===== PROJECT VISUAL ===== */
.project-visual {
  position: relative; padding: 28px 28px 0;
  background: linear-gradient(160deg, #0d1a0f 0%, #080f09 100%);
  overflow: hidden;
}
.pv-glow {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,68,0.2) 0%, transparent 70%);
  top: -100px; right: -80px; pointer-events: none;
}
.pv-browser {
  border-radius: 10px 10px 0 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); border-bottom: none;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.6);
}
.pv-bar {
  background: #0f1a10; padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pv-dots { display: flex; gap: 5px; }
.pv-dots span { width: 9px; height: 9px; border-radius: 50%; }
.pv-dots span:nth-child(1) { background: #ff5f57; }
.pv-dots span:nth-child(2) { background: #febc2e; }
.pv-dots span:nth-child(3) { background: #28c840; }
.pv-url-wrap {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 5px;
  padding: 4px 10px; display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: rgba(255,255,255,0.35); font-family: monospace;
}
.pv-lock { font-size: 0.6rem; color: #22c55e; }
.pv-url { color: rgba(255,255,255,0.55); }
.pv-visit {
  color: rgba(255,255,255,0.25); font-size: 0.75rem; text-decoration: none;
  transition: color 0.2s;
}
.pv-visit:hover { color: #c9a96e; }

/* Screen — actual osujaya colors */
.pv-screen-dark {
  background: #0a1209;
  font-family: 'Inter', sans-serif;
}
.pv-hero-block {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, #0d1a0d 0%, #0a1209 100%);
  border-bottom: 1px solid rgba(74,124,68,0.2);
}
.pv-hero-left { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pv-chip {
  display: inline-block; font-size: 0.42rem; letter-spacing: 2.5px;
  color: #7ec87a; font-weight: 700; text-transform: uppercase;
  background: rgba(74,124,68,0.15); border: 1px solid rgba(74,124,68,0.3);
  padding: 2px 8px; border-radius: 100px; width: fit-content;
}
.pv-title {
  font-size: 1.1rem; font-weight: 900; color: #f0e6d0;
  line-height: 1.2; letter-spacing: -0.5px; font-family: 'Georgia', serif;
}
.pv-desc {
  font-size: 0.48rem; color: rgba(240,230,208,0.45); max-width: 170px; line-height: 1.6;
}
.pv-btns-row { display: flex; gap: 6px; margin-top: 2px; }
.pv-btn-gold {
  font-size: 0.48rem; padding: 4px 10px; border-radius: 4px;
  background: #c9a96e; color: #0a1209; font-weight: 700;
}
.pv-btn-ghost {
  font-size: 0.48rem; padding: 4px 10px; border-radius: 4px;
  background: transparent; color: #c9a96e;
  border: 1px solid rgba(201,169,110,0.3);
}
.pv-hero-right {
  width: 80px; height: 80px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.pv-emblem {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.pv-emblem-ring {
  position: absolute; width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25);
  background: radial-gradient(circle, rgba(74,124,68,0.12) 0%, transparent 70%);
}
.pv-emblem-ring.r2 {
  width: 52px; height: 52px;
  border-color: rgba(201,169,110,0.15);
  background: none;
}
.pv-emblem-text {
  font-size: 0.55rem; font-weight: 900; color: #c9a96e;
  letter-spacing: 2px; text-align: center; line-height: 1.3; z-index: 1;
  font-family: 'Georgia', serif;
}

/* Ticker — gold like the real site */
.pv-strip {
  background: #c9a96e;
  padding: 4px 0; overflow: hidden;
}
.pv-strip-inner {
  font-size: 0.42rem; color: #0a1209; font-weight: 700; letter-spacing: 1.5px;
  white-space: nowrap; display: inline-block;
  animation: ticker 22s linear infinite;
}

/* Treatment cards */
.pv-treatments {
  display: flex; gap: 6px; padding: 10px 18px 14px; background: #080f09;
}
.pv-tr {
  flex: 1; background: rgba(74,124,68,0.08); border: 1px solid rgba(74,124,68,0.2);
  border-radius: 6px; padding: 7px 6px; text-align: center;
  font-size: 0.48rem; color: rgba(240,230,208,0.6); font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: border-color 0.2s;
}
.pv-tr:hover { border-color: #c9a96e; color: #f0e6d0; }
.pv-tr span { font-size: 0.9rem; }

/* Hover overlay */
.pv-overlay {
  position: absolute; inset: 0; background: rgba(5,10,5,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; cursor: pointer;
  backdrop-filter: blur(3px);
}
.project-visual:hover .pv-overlay { opacity: 1; }
.pv-overlay-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: #c9a96e;
  padding: 16px 32px; border-radius: 12px;
  color: #0a1209; font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(201,169,110,0.3);
}
.pv-overlay-inner i { font-size: 1.4rem; }

/* ===== SHOWCASE SECTION ===== */
.work-stats {
  display: flex; gap: 12px;
  margin: 40px 0;
}
.ws-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; padding: 24px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}
.ws-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.ws-num {
  font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.ws-label { font-size: 0.8rem; color: var(--text3); font-weight: 500; }
.ws-div { display: none; }
.projects .section-sub { margin-bottom: 0; }

/* Featured showcase card */
.showcase-card {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; margin-bottom: 24px;
  transition: border-color 0.3s;
}
.showcase-card:hover { border-color: var(--accent); }

.sc-left {
  padding: 48px 44px; display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
  background: linear-gradient(160deg, var(--surface) 0%, rgba(108,99,255,0.04) 100%);
  border-right: 1px solid var(--border);
}
.sc-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; color: var(--green);
}
.sc-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.sc-title { font-size: 2.2rem; font-weight: 900; letter-spacing: -1px; color: var(--text); }
.sc-desc { color: var(--text2); font-size: 0.95rem; line-height: 1.7; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sc-tags span {
  background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.2);
  color: var(--accent2); padding: 5px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
}
.sc-meta { display: flex; flex-wrap: wrap; gap: 16px; }
.sc-meta-item { display: flex; align-items: center; gap: 6px; color: var(--text3); font-size: 0.85rem; }
.sc-meta-item i { color: var(--accent); font-size: 0.8rem; }
.sc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; text-decoration: none; padding: 14px 28px;
  border-radius: 12px; font-weight: 700; font-size: 0.95rem;
  width: fit-content; transition: all 0.2s;
}
.sc-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(108,99,255,0.35); }

/* Right — browser mockup */
.sc-right {
  position: relative; background: linear-gradient(160deg, #0d1a0d 0%, #080f09 100%);
  padding: 32px 28px 0; overflow: hidden; min-height: 420px;
  display: flex; align-items: flex-start; justify-content: center;
}
.sc-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,68,0.18) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.sc-browser {
  width: 100%; border-radius: 10px 10px 0 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); border-bottom: none;
  box-shadow: 0 -16px 60px rgba(0,0,0,0.6); position: relative; z-index: 1;
}
.sc-bar {
  background: #0f1a10; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sc-dots { display: flex; gap: 5px; }
.sc-dots span { width: 9px; height: 9px; border-radius: 50%; }
.sc-dots span:nth-child(1) { background: #ff5f57; }
.sc-dots span:nth-child(2) { background: #febc2e; }
.sc-dots span:nth-child(3) { background: #28c840; }
.sc-url {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 5px;
  padding: 4px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.5);
  font-family: monospace; display: flex; align-items: center; gap: 6px;
}
.sc-screen { background: #0a1209; }
.sc-site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 16px; background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.sc-site-logo { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; color: #c9a96e; font-family: 'Georgia', serif; }
.sc-site-links { display: flex; align-items: center; gap: 10px; }
.sc-site-links span { font-size: 0.52rem; color: rgba(201,169,110,0.5); font-family: 'Inter', sans-serif; }
.sc-book { background: #c9a96e !important; color: #0a1209 !important; padding: 3px 9px; border-radius: 3px; font-weight: 700 !important; }
.sc-site-hero {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 16px 16px;
  background: linear-gradient(135deg, #0d1a0d 0%, #0a1209 100%);
  border-bottom: 1px solid rgba(74,124,68,0.15);
}
.sc-site-hl { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.sc-eyebrow { font-size: 0.42rem; letter-spacing: 3px; color: #7ec87a; font-weight: 700; font-family: 'Inter', sans-serif; }
.sc-h1 { font-size: 1.15rem; font-weight: 900; color: #f0e6d0; line-height: 1.2; font-family: 'Georgia', serif; }
.sc-p { font-size: 0.5rem; color: rgba(240,230,208,0.45); max-width: 160px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.sc-actions { display: flex; gap: 6px; margin-top: 4px; }
.sc-btn-g { font-size: 0.5rem; padding: 5px 12px; border-radius: 4px; background: #c9a96e; color: #0a1209; font-weight: 700; font-family: 'Inter', sans-serif; }
.sc-btn-o { font-size: 0.5rem; padding: 5px 12px; border-radius: 4px; background: transparent; color: #c9a96e; border: 1px solid rgba(201,169,110,0.3); font-family: 'Inter', sans-serif; }
.sc-site-hr { width: 90px; height: 90px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; }
.sc-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,169,110,0.2); }
.sc-ring.r1 { width: 80px; height: 80px; background: radial-gradient(circle, rgba(74,124,68,0.1) 0%, transparent 70%); }
.sc-ring.r2 { width: 56px; height: 56px; border-color: rgba(201,169,110,0.15); }
.sc-ring-text { font-size: 0.58rem; font-weight: 900; color: #c9a96e; letter-spacing: 2px; text-align: center; line-height: 1.3; z-index: 1; font-family: 'Georgia', serif; }
.sc-ticker-bar { background: #c9a96e; padding: 4px 0; overflow: hidden; }
.sc-ticker-inner {
  font-size: 0.42rem; color: #0a1209; font-weight: 700; letter-spacing: 1.5px;
  white-space: nowrap; display: inline-block; font-family: 'Inter', sans-serif;
  animation: ticker 20s linear infinite;
}
.sc-cards { display: flex; gap: 6px; padding: 10px 16px 14px; background: #080f09; }
.sc-card {
  flex: 1; background: rgba(74,124,68,0.08); border: 1px solid rgba(74,124,68,0.2);
  border-radius: 6px; padding: 8px 6px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: border-color 0.2s;
}
.sc-card:hover { border-color: #c9a96e; }
.sc-ci { font-size: 1rem; }
.sc-cn { font-size: 0.44rem; color: rgba(240,230,208,0.6); font-weight: 600; font-family: 'Inter', sans-serif; }

/* Bottom row */
.showcase-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sb-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; align-items: center; gap: 20px;
  transition: all 0.3s;
}
.sb-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.sb-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(108,99,255,0.12); border: 1px solid rgba(108,99,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
}
.sb-icon.pulse { animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108,99,255,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(108,99,255,0); }
}
.sb-text { flex: 1; }
.sb-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.sb-text p { color: var(--text2); font-size: 0.85rem; }
.your-project { border-color: rgba(108,99,255,0.2); background: linear-gradient(135deg, var(--surface), rgba(108,99,255,0.04)); }

@media (max-width: 900px) {
  .showcase-card { grid-template-columns: 1fr; }
  .sc-right { min-height: 300px; }
  .showcase-bottom { grid-template-columns: 1fr; }
  .work-stats { flex-wrap: wrap; }
  .ws-item { min-width: calc(50% - 6px); }
}

/* Snapshot preview */
.sc-snapshot-wrap {
  position: relative; overflow: hidden; cursor: pointer;
  max-height: 380px;
}
.sc-snapshot {
  width: 100%; display: block; object-fit: cover; object-position: top;
  transition: transform 0.5s ease;
}
.sc-snapshot-wrap:hover .sc-snapshot { transform: scale(1.02); }
.sc-snap-overlay {
  position: absolute; inset: 0;
  background: rgba(5,10,5,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  backdrop-filter: blur(3px);
}
.sc-snapshot-wrap:hover .sc-snap-overlay { opacity: 1; }
.sc-snap-btn {
  background: #c9a96e; color: #0a1209;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(201,169,110,0.3);
}

/* ===== ENHANCED BOOKING FORM ===== */
.form-subtitle { color: var(--text3); font-size: 0.9rem; margin-bottom: 24px; margin-top: -8px; }
.form-group label { display: flex; align-items: center; gap: 6px; }
.form-group label i { color: var(--accent); font-size: 0.75rem; }
.req { color: var(--pink); margin-left: 2px; }
.phone-input-wrap { display: flex; gap: 0; }
.country-code-select {
  background: var(--bg); border: 1px solid var(--border); border-right: none;
  color: var(--text); padding: 12px 8px; border-radius: 10px 0 0 10px;
  font-size: 0.85rem; font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.2s; width: 95px; flex-shrink: 0;
}
.country-code-select:focus { border-color: var(--accent); }
.phone-number-input {
  border-radius: 0 10px 10px 0 !important;
  flex: 1;
}
.form-note {
  display: flex; align-items: center; gap: 8px;
  color: var(--text3); font-size: 0.8rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: 8px;
}
.form-note i { color: var(--green); flex-shrink: 0; }
.booking-success a { display: inline-flex; align-items: center; gap: 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
.contact-highlight { color: var(--text); font-size: 0.95rem; font-weight: 600; }
.footer-brand-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-hidden { opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease; }
.scroll-visible { opacity: 1 !important; transform: none !important; }

.anim-fade-up    { transform: translateY(40px); }
.anim-fade-down  { transform: translateY(-30px); }
.anim-fade-left  { transform: translateX(50px); }
.anim-fade-right { transform: translateX(-50px); }
.anim-zoom-in    { transform: scale(0.88); }

/* ===== MOBILE SIDEBAR ===== */
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 1100;
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s;
}
.sidebar-overlay.open { display: block; opacity: 1; }

.sidebar {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--surface2); border-left: 1px solid var(--border);
  z-index: 1200; padding: 24px; display: flex; flex-direction: column; gap: 8px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.sidebar.open { right: 0; }

.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 8px;
}
.sidebar-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.sidebar-close:hover { border-color: var(--accent); color: var(--accent); }

.sidebar-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.sidebar-link {
  display: flex; align-items: center; gap: 14px;
  color: var(--text2); text-decoration: none; font-size: 1rem; font-weight: 500;
  padding: 14px 16px; border-radius: 12px; transition: all 0.2s;
}
.sidebar-link i { width: 18px; color: var(--accent); font-size: 0.9rem; }
.sidebar-link:hover { background: var(--surface); color: var(--text); }

/* Hide old nav-links dropdown on mobile */
@media (max-width: 768px) {
  .nav-links.open { display: none !important; }
}

/* Fix date & phone overflow on mobile */
input[type="date"],
input[type="tel"],
input[type="text"],
input[type="email"],
select,
textarea {
  box-sizing: border-box;
  max-width: 100%;
}
.phone-input-wrap { width: 100%; box-sizing: border-box; }
.phone-number-input { min-width: 0; flex: 1; box-sizing: border-box; }
.country-code-select { box-sizing: border-box; flex-shrink: 0; }

/* Force date input to stay within bounds */
input[type="date"] {
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

/* Remove date picker arrow/icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* Custom select arrow */
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Date input height fix */
input[type="date"] {
  min-height: 44px;
  line-height: 1.5;
}

/* Mobile footer centered */
@media (max-width: 768px) {
  .footer-main { text-align: center; }
  .footer-col { align-items: center; }
  .footer-socials { align-items: center; }
}
