/* Remove page-switching system — not needed on separate pages */
:root {
  --bg: #ffffff;
  --bg2: #f7faf7;
  --bg3: #eef5ee;
  --surface: #ffffff;
  --surface2: #f0f7f0;
  --border: #d4e8d4;
  --border2: #c2dfc2;
  --accent: #1aad19;
  --accent-dark: #148213;
  --accent-light: #e8f7e8;
  --accent2: #0d7a0c;
  --accent3: #34c759;
  --text: #1a2e1a;
  --text2: #2d4a2d;
  --muted: #5a7a5a;
  --muted2: #7a9a7a;
  --green-glow: rgba(26,173,25,0.15);
  --green-glow2: rgba(26,173,25,0.08);
  --gold: #f59e0b;
  --red: #ef4444;
  --shadow: 0 2px 16px rgba(26,173,25,0.10);
  --shadow-lg: 0 8px 40px rgba(26,173,25,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* CUSTOM CURSOR */
#cursor { position:fixed; width:14px; height:14px; background:var(--accent); border-radius:50%; pointer-events:none; z-index:99999; transition:transform 0.12s ease, width 0.2s, height 0.2s; transform:translate(-50%,-50%); }
#cursor-follower { position:fixed; width:40px; height:40px; border:2px solid var(--accent); border-radius:50%; pointer-events:none; z-index:99998; opacity:0.35; transition:transform 0.08s linear; transform:translate(-50%,-50%); }
#cursor.hover { width:22px; height:22px; background:var(--accent-dark); }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(26,173,25,0.07);
  transition: box-shadow 0.3s;
  padding: 0 1.5rem 0 5vw;
  gap: 0;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(26,173,25,0.12); }

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo span { color: var(--accent); }

.nav-logo img{
  max-width: 200px;
}

/* Desktop nav wrap */
.nav-desktop-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links-desktop a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: none;
  padding: 0.42rem 0.85rem;
  border-radius: 7px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-links-desktop a:hover,
.nav-links-desktop a.active-nav { color: var(--accent); background: var(--accent-light); }

/* CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.52rem 1.15rem;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta svg { stroke: #fff; flex-shrink: 0; }
.nav-cta:hover { background: var(--accent-dark); box-shadow: 0 4px 16px rgba(26,173,25,0.3); }

/* Mobile actions — hamburger + book (visible only on mobile) */
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-cta-mobile {
  padding: 0.42rem 0.85rem;
  font-size: 0.8rem;
}
.nav-cta-mobile svg { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: var(--accent); }
.nav-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.28s ease, visibility 0s linear 0.32s;
  padding: 0.8rem 1.2rem 1.2rem;
  pointer-events: none;
}
.mobile-nav-drawer.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), opacity 0.28s ease, visibility 0s linear 0s;
}
.mobile-nav-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  cursor: none;
}
.mobile-nav-links a:hover { background: var(--accent-light); color: var(--accent); }
.mobile-nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  margin-top: 0.4rem;
  justify-content: center;
}
.mobile-nav-cta svg { stroke: #fff; }

/* PAGE SYSTEM */

/* pages are separate files */


/* SECTIONS */
section { padding: 6rem 5vw; }
.container { max-width: 1180px; margin: 0 auto; }

/* TYPOGRAPHY */
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', sans-serif; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.section-label i { font-size: 0.8rem; }
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: none;
  transition: all 0.25s;
  border: none;
  outline: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 6px 20px rgba(26,173,25,0.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--accent); font-weight: 700; }
.btn-white:hover { background: var(--accent-light); }

/* AVAILABLE DOT */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.avail-dot {
  width: 8px; height: 8px;
  background: var(--accent3);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52,199,89,0.5);
  animation: ping 1.8s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(52,199,89,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(52,199,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,199,89,0); }
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background: linear-gradient(160deg, #fff 0%, var(--bg2) 60%, var(--bg3) 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border2) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  z-index: 0;
}
.hero-bg-blob {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,173,25,0.07) 0%, transparent 70%);
  right: -100px; top: -100px;
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-name {
  font-size: clamp(3.4rem, 6.5vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.hero-role {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-desc {
  font-size: 1.07rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; font-weight: 500; }

/* HERO IMAGE */
.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(26,173,25,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-img-glow.float-ready {
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.hero-img-frame {
  position: relative;
  width: 360px; height: 460px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-img-frame.float-ready {
  animation: float 7s ease-in-out infinite;
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,173,25,0.05) 100%);
}
.hero-img-frame img { width:100%; height:100%; object-fit:cover; object-position:top; }
.hero-float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  z-index: 2;
}
.hfc-left { left: -50px; bottom: 90px; }
.hfc-left.float-ready { animation: float 5s ease-in-out infinite 1s; }
.hfc-right { right: -40px; top: 80px; }
.hfc-right.float-ready { animation: float 5s ease-in-out infinite 0.5s; }
.hfc-label { font-size: 0.68rem; color: var(--muted); margin-bottom: 0.15rem; font-weight: 500; }
.hfc-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.hfc-sub { font-size: 0.68rem; color: var(--accent); font-weight: 600; }

/* MARQUEE */
.marquee-section {
  padding: 1.6rem 0;
  overflow: hidden;
  background: var(--accent);
  border-top: none;
  border-bottom: none;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
  will-change: transform;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0 1.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.marquee-star { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

/* SKILLS */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
}
.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  transition: all 0.3s;
  box-shadow: 0 1px 6px rgba(26,173,25,0.06);
}
.skill-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.skill-icon { font-size: 1.4rem; color: var(--accent); margin-bottom: 0.6rem; }
.skill-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:0.8rem; }
.skill-name { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:1.05rem; color:var(--text); }
.skill-pct { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:1rem; color:var(--accent); }
.skill-bar-bg { height:5px; background:var(--bg3); border-radius:10px; overflow:hidden; }
.skill-bar-fill { height:100%; background:linear-gradient(90deg,var(--accent-dark),var(--accent3)); border-radius:10px; width:0; transition:width 1.6s cubic-bezier(0.22,1,0.36,1); will-change:width; }

/* PROJECTS */
.projects-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.4rem; }
.project-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor:none;
  box-shadow:0 1px 8px rgba(26,173,25,0.06);
}
.project-card:hover { transform:translateY(-6px) translateZ(0); border-color:var(--accent); box-shadow:var(--shadow-lg); }
.project-img { height:240px; overflow:hidden; position:relative; }
.project-img-inner {
  width:100%; height:100%;
  background:linear-gradient(135deg,var(--bg3),var(--bg2));
  display:flex; align-items:center; justify-content:center;
  font-size:3.5rem;
  transition:transform 0.4s;
  color:var(--accent);
}
.project-card:hover .project-img-inner { transform:scale(1.04); }
.project-overlay {
  position:absolute; inset:0;
  background:rgba(26,173,25,0.12);
  opacity:0; transition:opacity 0.3s;
  display:flex; align-items:center; justify-content:center;
  text-decoration: none;
}
.project-card:hover .project-overlay { opacity:1; }
.project-body { padding:1.4rem; }
.project-title { font-family:'Plus Jakarta Sans',sans-serif; font-size:1.18rem; font-weight:700; color:var(--text); margin-bottom:0.5rem; }
.project-desc { font-size:0.95rem; color:var(--muted); margin-bottom:1rem; line-height:1.75; }
.tech-stack { display:flex; flex-wrap:wrap; gap:0.45rem; margin-bottom:1rem; }
.tech-tag {
  background:var(--accent-light);
  border:1px solid var(--border2);
  color:var(--accent-dark);
  padding:0.28rem 0.8rem;
  border-radius:50px;
  font-size:0.82rem;
  font-weight:600;
}
.project-link { color:var(--accent); text-decoration:none; font-size:0.83rem; font-weight:700; display:inline-flex; align-items:center; gap:0.35rem; cursor:none; }

/* PROCESS */
.process-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.process-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:2rem;
  text-align:center;
  transition:all 0.3s;
  box-shadow:0 1px 6px rgba(26,173,25,0.05);
  position:relative; overflow:hidden;
}
.process-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--accent),var(--accent3));
  opacity:0; transition:opacity 0.3s;
}
.process-card:hover::before { opacity:1; }
.process-card:hover { transform:translateY(-5px) translateZ(0); box-shadow:var(--shadow); border-color:var(--accent); }
.process-icon {
  width:72px; height:72px;
  background:var(--accent-light);
  border:1px solid var(--border2);
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.9rem; color:var(--accent);
  margin:0 auto 1.2rem;
  /* SVG icon sizing */
}
.process-icon svg { width:32px; height:32px; }
.process-title { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:1.15rem; color:var(--text); margin-bottom:0.7rem; }
.process-desc { font-size:0.96rem; color:var(--muted); line-height:1.8; }

/* PRICING */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; align-items:start; }
.pricing-card {
  background:#fff;
  border:1.5px solid var(--border);
  border-radius:18px;
  padding:2rem;
  transition:all 0.3s;
  position:relative;
  display: flex;
  flex-direction: column;
  box-shadow:0 1px 8px rgba(26,173,25,0.05);
}
.pricing-card:hover { transform:translateY(-5px) translateZ(0); box-shadow:var(--shadow-lg); }
.pricing-card.popular { border-color:var(--accent); background:linear-gradient(160deg, #0e8f0d 0%, #1aad19 60%, #20c518 100%); box-shadow: 0 16px 48px rgba(26,173,25,0.35); }
.popular-badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--accent); color:#fff;
  font-size:0.72rem; font-weight:700;
  padding:0.28rem 0.9rem; border-radius:50px;
  letter-spacing:0.05em; white-space:nowrap;
}
.pricing-plan { font-size:0.75rem; color:var(--accent); font-weight:700; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:0.4rem; }
.pricing-name { font-family:'Plus Jakarta Sans',sans-serif; font-size:1.4rem; font-weight:800; color:var(--text); margin-bottom:0.5rem; }
.pricing-desc { font-size:0.95rem; color:var(--muted); margin-bottom:1.5rem; padding-bottom:1.5rem; border-bottom:1px solid var(--border); line-height:1.75; }
.pricing-features { list-style:none; margin-bottom:1.8rem; }
.pricing-features li { display:flex; align-items:center; gap:0.7rem; font-size:0.95rem; color:var(--text2); padding:0.5rem 0; }
.pricing-features li i { color:var(--accent); font-size:0.75rem; flex-shrink:0; }
.pricing-btn {
  display:block; width:100%; padding:0.82rem;
  border-radius:10px; text-align:center;
  font-family:'Manrope',sans-serif; font-weight:600; font-size:0.88rem;
  text-decoration:none; cursor:none; transition:all 0.25s;
}
.pricing-btn-outline { border:2px solid var(--accent); color:var(--accent); background:transparent; }
.pricing-btn-outline:hover { background:var(--accent-light); }
.pricing-btn-filled { background:var(--accent); color:#fff; border:none; }
.pricing-btn-filled:hover { background:var(--accent-dark); box-shadow:0 6px 20px rgba(26,173,25,0.3); }

/* TESTIMONIALS */
.testimonials-wrap { overflow:hidden; position:relative; }
.testimonials-track {
  display:flex; gap:1.4rem;
  animation:tscroll 35s linear infinite;
  width:max-content;
  will-change:transform;
}
.testimonials-wrap:hover .testimonials-track { animation-play-state:paused; }
@keyframes tscroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testimonial-card {
  background:#fff; border:1px solid var(--border); border-radius:16px;
  padding:1.6rem; width:340px; flex-shrink:0;
  box-shadow:0 1px 8px rgba(26,173,25,0.06);
  transition:box-shadow 0.3s;
  max-height: 315px;
}
.testimonial-card:hover { box-shadow:var(--shadow); }
.t-stars { color:var(--gold); margin-bottom:0.8rem; font-size:1rem; }
.t-text { font-size:1rem; color:var(--muted); line-height:1.85; margin-bottom:1.2rem; }
.t-author { display:flex; align-items:center; gap:0.75rem; }
.t-avatar {
  width:40px; height:40px; border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent3));
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:0.85rem; color:#fff;
  flex-shrink:0;
}
.t-name { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:1rem; color:var(--text); }
.t-company { font-size:0.85rem; color:var(--muted); }


input:focus, select:focus, textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(26,173,25,0.1); }
select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231aad19' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.85rem center !important;
  background-size: 18px 18px !important;
}
select option { background:#fff; color:var(--text); }
textarea { resize:vertical; min-height:120px; }



/* CONTACT / FORM */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:3.5rem; align-items:start; }
.contact-info-item {
  display:flex; align-items:center; gap:0.9rem;
  padding:0.9rem 1rem;
  background:#fff; border:1px solid var(--border); border-radius:12px;
  margin-bottom:0.9rem;
  box-shadow:0 1px 5px rgba(26,173,25,0.04);
  transition:box-shadow 0.2s;
}
.contact-info-item:hover { box-shadow:var(--shadow); }
.ci-icon {
  width:48px; height:48px;
  background:var(--accent-light); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; color:var(--accent); flex-shrink:0;
}
.ci-icon svg { width:22px; height:22px; }
.ci-label { font-size:0.78rem; color:var(--muted); margin-bottom:0.2rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; }
.ci-value { font-weight:600; font-size:1rem; color:var(--text); }
.form-box { background:#fff; border:1px solid var(--border); border-radius:18px; padding:2.2rem; box-shadow:var(--shadow); }
.form-group { margin-bottom:1.1rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
label { display:block; font-size:0.78rem; font-weight:700; color:var(--text2); margin-bottom:0.45rem; letter-spacing:0.03em; text-transform:uppercase; }
input, select, textarea {
  width:100%; background:#fff; border:1.5px solid var(--border);
  border-radius:10px; padding:0.8rem 1rem;
  color:var(--text); font-family:'Manrope',sans-serif; font-size:0.9rem;
  outline:none; transition:border-color 0.2s, box-shadow 0.2s; cursor:none;
}
input:focus, select:focus, textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(26,173,25,0.1); }
select option { background:#fff; color:var(--text); }
textarea { resize:vertical; min-height:120px; }

/* FOOTER */
footer { background:var(--text); padding:4rem 5vw 2rem; }
.footer-grid {
  display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:3rem;
  max-width:1180px; margin:0 auto;
  padding-bottom:2.5rem; border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family:'Plus Jakarta Sans',sans-serif; font-size:1.4rem; font-weight:800; color:#fff; margin-bottom:0.9rem; }
.footer-logo span { color:var(--accent3); }
.footer-desc { font-size:0.95rem; color:rgba(255,255,255,0.55); line-height:1.8; margin-bottom:1.4rem; }
.social-links { display:flex; gap:0.7rem; }
.social-link {
  width:36px; height:36px;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; font-size:0.85rem; color:rgba(255,255,255,0.6);
  transition:all 0.2s; cursor:none;
}
.social-link:hover { background:var(--accent); color:#fff; border-color:var(--accent); }
.footer-heading { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:0.9rem; color:#fff; margin-bottom:1.1rem; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:0.65rem; }
.footer-links a { color:rgba(255,255,255,0.55); text-decoration:none; font-size:0.95rem; transition:color 0.2s; cursor:none; }
.footer-links a:hover { color:var(--accent3); }
.footer-bottom { max-width:1180px; margin:1.8rem auto 0; display:flex; justify-content:center; align-items:center; font-size:0.78rem; color:rgba(255,255,255,0.35); }

/* ABOUT */
.about-hero { display:grid; grid-template-columns:1fr 1.2fr; gap:4rem; align-items:center; padding:8rem 5vw 5rem; max-width:1180px; margin:0 auto; }
.about-img-frame { height: 520px; border-radius:20px; overflow:hidden; border:2px solid var(--border);  box-shadow:var(--shadow-lg); }
.about-img-frame img { width:100%; height:100%; object-fit:cover; object-position:top; }
.timeline { padding:2rem 5vw 5rem; max-width:1180px; margin:0 auto; }
.timeline-item { display:flex; gap:1.8rem; padding-bottom:2.8rem; position:relative; }
.timeline-item::before { content:''; position:absolute; left:18px; top:38px; bottom:0; width:2px; background:var(--border); }
.timeline-item:last-child::before { display:none; }
.timeline-dot { width:38px; height:38px; background:var(--accent-light); border:2px solid var(--accent); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:0.85rem; color:var(--accent); }
.timeline-dot svg { width:16px; height:16px; }
.timeline-year { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:0.78rem; color:var(--accent); margin-bottom:0.25rem; }
.timeline-title { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:1.18rem; color:var(--text); margin-bottom:0.5rem; }
.timeline-desc { font-size:0.97rem; color:var(--muted); line-height:1.8; }

/* SERVICES */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:1.4rem; }
.service-card {
  background:#fff; border:1px solid var(--border); border-radius:16px; padding:2rem;
  transition:all 0.3s; position:relative; overflow:hidden;
  box-shadow:0 1px 6px rgba(26,173,25,0.05);
}
.service-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--accent),var(--accent3)); transform:scaleX(0); transition:transform 0.3s; transform-origin:left; }
.service-card:hover::after { transform:scaleX(1); }
.service-card:hover { transform:translateY(-5px) translateZ(0); border-color:var(--accent); box-shadow:var(--shadow-lg); }
.s-icon { width:68px; height:68px; background:var(--accent-light); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.9rem; color:var(--accent); margin-bottom:1.2rem; }
.s-icon svg { width:30px; height:30px; }
.s-title { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:1.18rem; color:var(--text); margin-bottom:0.7rem; }
.s-desc { font-size:0.96rem; color:var(--muted); line-height:1.8; margin-bottom:1.2rem; }
.s-tags { display:flex; flex-wrap:wrap; gap:0.45rem; }
.s-tag { font-size:0.7rem; padding:0.2rem 0.6rem; background:var(--accent-light); border:1px solid var(--border2); color:var(--accent-dark); border-radius:50px; font-weight:600; }

/* PROJECTS PAGE FILTER */
.filter-bar { display:flex; gap:0.65rem; margin-bottom:2.2rem; flex-wrap:wrap; }
.filter-btn { padding:0.48rem 1.1rem; border-radius:8px; font-size:0.83rem; font-weight:600; border:1.5px solid var(--border); background:#fff; color:var(--muted); cursor:none; transition:all 0.2s; }
.filter-btn.active, .filter-btn:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-light); }

/* ORDER PAGE */
.order-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:3.5rem; align-items:start; }
.order-info-card { background:#fff; border:1px solid var(--border); border-radius:14px; padding:1.6rem; margin-bottom:1rem; box-shadow:0 1px 5px rgba(26,173,25,0.04); }
.oi-icon { font-size:1.5rem; color:var(--accent); margin-bottom:0.7rem; }
.oi-icon svg { width:26px; height:26px; }
.oi-title { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:0.98rem; color:var(--text); margin-bottom:0.35rem; }
.oi-desc { font-size:0.83rem; color:var(--muted); line-height:1.7; }

/* ===== BOOK SESSION PAGE ===== */
.booking-layout { display:grid; grid-template-columns:1fr 1.8fr; gap:3rem; align-items:start; }
.booking-info-card { background:#fff; border:1px solid var(--border); border-radius:16px; padding:1.8rem; margin-bottom:1.2rem; box-shadow:var(--shadow); }
.bk-icon { font-size:1.6rem; color:var(--accent); margin-bottom:0.6rem; }
.bk-icon svg { width:30px; height:30px; }
.bk-title { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:1rem; color:var(--text); margin-bottom:0.3rem; }
.bk-desc { font-size:0.83rem; color:var(--muted); line-height:1.7; }
/* Calendar */
.booking-panel { background:#fff; border:1.5px solid var(--border); border-radius:18px; overflow:hidden; box-shadow:var(--shadow-lg); }
.booking-steps { display:flex; border-bottom:1px solid var(--border); }
.bstep {
  flex:1; padding:1.1rem; text-align:center;
  font-size:0.82rem; font-weight:600; color:var(--muted);
  border-bottom:2px solid transparent;
  transition:all 0.2s; cursor:pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.bstep svg{
  width: 18px;
}
.bstep.active { color:var(--accent); border-bottom-color:var(--accent); background:var(--accent-light); }
.bstep svg path{
  color: var(--accent);
  fill: var(--accent);
}
.bstep, #step-tab-3 { color:var(--accent-dark); }
.bstep i { display:block; font-size:1.1rem; margin-bottom:0.3rem; }
/* Step panels */
.bpanel { display:none; padding:1.8rem; }
.bpanel.active { display:block; }
/* Calendar grid */
.cal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }
.cal-title { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:1.05rem; color:var(--text); }
.cal-nav { width:34px; height:34px; background:var(--bg2); border:1px solid var(--border); border-radius:8px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all 0.2s; color:var(--muted); font-size:0.9rem; }
.cal-nav:hover { background:var(--accent-light); border-color:var(--accent); color:var(--accent); }
.cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.cal-dow { text-align:center; font-size:0.72rem; font-weight:700; color:var(--muted); padding:0.4rem 0; text-transform:uppercase; }
.cal-day {
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  border-radius:8px; font-size:0.85rem; font-weight:500; color:var(--text);
  cursor:pointer; transition:all 0.15s; border:1.5px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) { background:var(--accent-light); border-color:var(--accent); color:var(--accent); }
.cal-day.selected { background:var(--accent); color:#fff; border-color:var(--accent); font-weight:700; }
.cal-day.today { border-color:var(--accent); color:var(--accent); font-weight:700; }
.cal-day.disabled { color:var(--border2); cursor:default; }
.cal-day.empty { cursor:default; }
/* Time slots */
.time-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0.6rem; }
.time-slot {
  padding:0.65rem; border:1.5px solid var(--border); border-radius:9px;
  text-align:center; font-size:0.83rem; font-weight:600; color:var(--text2);
  cursor:pointer; transition:all 0.2s; background:#fff;
}
.time-slot:hover:not(.booked) { border-color:var(--accent); background:var(--accent-light); color:var(--accent); }
.time-slot.selected { background:var(--accent); color:#fff; border-color:var(--accent); }
.time-slot.booked { background:var(--bg3); color:var(--muted2); cursor:default; text-decoration:line-through; font-weight:400; }
.selected-summary {
  background:var(--accent-light); border:1px solid var(--border2);
  border-radius:12px; padding:1rem 1.2rem; margin-bottom:1.4rem; font-size:0.88rem;
}
.selected-summary strong { color:var(--accent-dark); }
/* Booking form */
.bform-grid { display:grid; grid-template-columns:1fr 1fr; gap:0.9rem; }
.confirm-btn {
  width:100%; padding:0.9rem; background:var(--accent); color:#fff;
  border:none; border-radius:10px; font-family:'Manrope',sans-serif;
  font-weight:700; font-size:0.95rem; cursor:pointer; transition:all 0.25s;
  display:flex; align-items:center; justify-content:center; gap:0.5rem;
  margin-top:1rem;
}
.confirm-btn:hover { background:var(--accent-dark); box-shadow:0 6px 20px rgba(26,173,25,0.3); }
.confirm-btn:disabled { background:var(--muted2); cursor:default; box-shadow:none; }
/* Success state */
.booking-success { text-align:center; padding:3rem 2rem; }
.success-icon { width:70px; height:70px; background:var(--accent-light); border:2px solid var(--accent); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:2rem; color:var(--accent); margin:0 auto 1.2rem; }

/* UTILS */
.text-center { text-align:center; }
.mb-1{margin-bottom:0.5rem;} .mb-2{margin-bottom:1rem;} .mb-3{margin-bottom:1.5rem;} .mb-5{margin-bottom:3rem;}
.w-full{width:100%;}
.bg-alt { background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

/* REVEAL */
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1); will-change:opacity,transform; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* NOTIFICATION */
.notification {
  position:fixed; bottom:1.8rem; right:1.8rem;
  background:#fff; border:1.5px solid var(--accent);
  border-radius:12px; padding:0.9rem 1.4rem;
  z-index:9999; font-size:0.88rem; color:var(--text);
  box-shadow:var(--shadow-lg);
  transform:translateY(120%); opacity:0;
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
  display:flex; align-items:center; gap:0.6rem;
}
.notification.show { transform:translateY(0); opacity:1; }





/* ===== PROCESS FLOW ===== */
.process-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.flow-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 3.5rem;
  position: relative;
}

/* STEP CARD */
.flow-step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  box-shadow: 0 2px 14px rgba(26,173,25,0.07);
}
.flow-step:hover {
  transform: translateY(-7px) translateZ(0);
  box-shadow: 0 18px 48px rgba(26,173,25,0.14);
  border-color: var(--accent);
}
.flow-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  opacity: 0;
  transition: opacity 0.3s;
}
.flow-step:hover::before { opacity: 1; }

.flow-step-inner {
  padding: 2.2rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}

/* Step number badge */
.flow-step-num {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 0.18rem 0.55rem;
  letter-spacing: 0.04em;
}

/* Icon wrap with ring pulse */
.flow-icon-wrap {
  position: relative;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.flow-icon-svg {
  width: 78px; height: 78px;
  filter: drop-shadow(0 4px 12px rgba(26,173,25,0.18));
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.flow-step:hover .flow-icon-svg { transform: scale(1.08) rotate(-2deg); }

.flow-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(26,173,25,0.2);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 0; }
}

.flow-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.flow-step-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
}

/* CONNECTOR ARROW */
.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
  flex-shrink: 0;
  position: relative;
}
.flow-arrow-svg {
  width: 110px; height: 52px;
}
.flow-arrow-path {
  stroke-dasharray: 6 4;
  stroke-dashoffset: 0;
  animation: dashMove 2s linear infinite;
}
@keyframes dashMove {
  to { stroke-dashoffset: -20; }
}
.flow-arrow-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 0.18rem 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* BOTTOM STAT STRIP */
.flow-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem 2rem;
  box-shadow: 0 2px 14px rgba(26,173,25,0.07);
}
.flow-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 2.5rem;
  flex: 1;
}
.flow-stat-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.flow-stat-icon svg { width:20px; height:20px; }
.flow-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.flow-stat-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.flow-stat-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* Lucide icon sizing in skill cards */
.skill-icon i[data-lucide] { width: 28px; height: 28px; stroke-width: 2; }

/* Responsive flow */


@media(max-width:480px){
  .hero-name { font-size:2rem !important; }
  .hero-img-frame { width:170px !important; height:215px !important; }
  .section-title { font-size:1.6rem !important; }
  .hero-stats { gap:1rem; }
  .stat-num { font-size:1.4rem !important; }
  .btn { font-size:0.9rem; padding:0.75rem 1.4rem; }
  .flow-stat-val { font-size:1.3rem; }
  nav { padding:0 0.8rem; height:58px; }
  .nav-logo { font-size:1.1rem; }
  section { padding:3rem 1rem; }
  .flow-step-inner { padding:1.3rem 1.1rem; }
  .skills-grid { grid-template-columns:1fr 1fr !important; }
  .time-grid { grid-template-columns:repeat(2,1fr); }
}

/* ===== PROCESS FLOW ===== */
.process-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.flow-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 3.5rem;
  position: relative;
}

/* STEP CARD */
.flow-step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  box-shadow: 0 2px 14px rgba(26,173,25,0.07);
}
.flow-step:hover {
  transform: translateY(-7px) translateZ(0);
  box-shadow: 0 18px 48px rgba(26,173,25,0.14);
  border-color: var(--accent);
}
.flow-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  opacity: 0;
  transition: opacity 0.3s;
}
.flow-step:hover::before { opacity: 1; }

.flow-step-inner {
  padding: 2.2rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}

/* Step number badge */
.flow-step-num {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 0.18rem 0.55rem;
  letter-spacing: 0.04em;
}

/* Icon wrap with ring pulse */
.flow-icon-wrap {
  position: relative;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.flow-icon-svg {
  width: 78px; height: 78px;
  filter: drop-shadow(0 4px 12px rgba(26,173,25,0.18));
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.flow-step:hover .flow-icon-svg { transform: scale(1.08) rotate(-2deg); }

.flow-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(26,173,25,0.2);
  animation: ringPulse 3s ease-in-out infinite;
}

.flow-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.flow-step-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
}

/* CONNECTOR ARROW */
.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
  flex-shrink: 0;
  position: relative;
}
.flow-arrow-svg {
  width: 110px; height: 52px;
}
.flow-arrow-path {
  stroke-dasharray: 6 4;
  stroke-dashoffset: 0;
  animation: dashMove 2s linear infinite;
}
.flow-arrow-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 0.18rem 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* BOTTOM STAT STRIP */
.flow-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem 2rem;
  box-shadow: 0 2px 14px rgba(26,173,25,0.07);
}
.flow-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 2.5rem;
  flex: 1;
}
.flow-stat-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.flow-stat-icon svg { width:20px; height:20px; }
.flow-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.flow-stat-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.flow-stat-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* Lucide icon sizing in skill cards */
.skill-icon i[data-lucide] { width: 28px; height: 28px; stroke-width: 2; }

/* Responsive flow */
@media(max-width:900px) and (min-width:769px){
  /* Tablet: stack flow cards vertically */
  .flow-wrap {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  .flow-arrow { flex-direction:column; padding:0.5rem 0; }
  .flow-arrow-svg { display:none !important; }
  .flow-arrow::before {
    content:""; display:block; width:2px; height:22px;
    background:linear-gradient(to bottom,var(--accent),var(--accent3));
    border-radius:2px;
  }
  .flow-arrow::after {
    content:"";display:block;
    width:10px;height:10px;
    border-right:2.5px solid var(--accent);
    border-bottom:2.5px solid var(--accent);
    transform:rotate(45deg) translateY(-4px);
    margin-top:-6px;
  }
  .flow-stats { flex-wrap:wrap; padding:1.2rem; gap:0.5rem; }
  .flow-stat { flex:1 1 42%; text-align:center; padding:0.8rem; }
  .flow-stat-divider { display:none; }
}


/* Icon containers — ensure SVGs inherit accent color */
.skill-icon svg, .process-icon svg, .s-icon svg, .oi-icon svg, .bk-icon svg,
.ci-icon svg, .timeline-dot svg, .flow-stat-icon svg, .success-icon svg,
.booking-info-card .bk-icon svg {
  stroke: currentColor;
}
/* Button SVGs */
.btn svg, .nav-cta svg, .filter-btn svg {
  stroke: currentColor;
  flex-shrink: 0;
}
/* Section label SVGs */
.section-label svg { stroke: currentColor; }


/* ── Global icon sizing overrides ── */
.skill-icon svg   { width:30px!important;height:30px!important;stroke-width:1.8!important; }
.s-icon svg       { width:30px!important;height:30px!important;stroke-width:1.8!important; }
.process-icon svg { width:32px!important;height:32px!important;stroke-width:1.8!important; }
.oi-icon svg      { width:24px!important;height:24px!important;stroke-width:2!important; }
.bk-icon svg      { width:28px!important;height:28px!important;stroke-width:1.8!important; }
.ci-icon svg      { width:22px!important;height:22px!important;stroke-width:2!important; }
.timeline-dot svg { width:17px!important;height:17px!important;stroke-width:2.2!important; }
.flow-stat-icon svg { width:20px!important;height:20px!important;stroke-width:2!important; }
.success-icon svg { width:34px!important;height:34px!important;stroke-width:2.8!important; }
/* btn, filter, nav icons */
.btn svg          { width:17px!important;height:17px!important;stroke-width:2!important; }
.filter-btn svg   { width:14px!important;height:14px!important;stroke-width:2!important; }
.section-label svg{ width:14px!important;height:14px!important;stroke-width:2.5!important; }
.nav-cta svg      { width:15px!important;height:15px!important;stroke-width:2!important; }
.nav-slider-btn svg { width:12px!important;height:12px!important;stroke-width:2.5!important; }
.project-link svg { width:14px!important;height:14px!important;stroke-width:2.2!important; }


/* ===== TOP SKILL HERO CARD ===== */
.top-skill-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--text) 0%, #2a4a2a 100%);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 48px rgba(26,173,25,0.18);
  position: relative;
}
.top-skill-card::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,173,25,0.15) 0%, transparent 65%);
  pointer-events:none;
}
.top-skill-left {
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.top-skill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(26,173,25,0.25);
  border: 1px solid rgba(26,173,25,0.4);
  color: #6ee86d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 50px;
  width: fit-content;
}
.top-skill-badge svg { stroke: #6ee86d; }
.top-skill-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.top-skill-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.top-skill-bar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.3rem;
}
.top-skill-bar-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  overflow: hidden;
}
.top-skill-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1aad19, #34c759, #6ee86d);
  border-radius: 50px;
  transition: width 1.8s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 10px rgba(52,199,89,0.5);
}
.top-skill-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #6ee86d;
  min-width: 36px;
  text-align: right;
}
.top-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}
.tst {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
}

/* Right visual */
.top-skill-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.top-skill-visual {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tsv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(26,173,25,0.25);
}
.tsv-ring-1 { width: 140px; height: 140px; animation: spinRing 12s linear infinite; border-top-color: rgba(26,173,25,0.6); }
.tsv-ring-2 { width: 105px; height: 105px; animation: spinRing 8s linear infinite reverse; border-right-color: rgba(52,199,89,0.5); }
.tsv-ring-3 { width: 72px; height: 72px; animation: spinRing 5s linear infinite; border-bottom-color: rgba(110,232,109,0.4); }
@keyframes spinRing { to { transform: rotate(360deg); } }

.tsv-core {
  width: 50px; height: 50px;
  background: rgba(26,173,25,0.2);
  border: 1.5px solid rgba(26,173,25,0.5);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #6ee86d;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.tsv-orbit {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: flex-start; justify-content: center;
}
.tsv-orbit-1 { width: 140px; height: 140px; animation: spinRing 12s linear infinite; }
.tsv-orbit-2 { width: 105px; height: 105px; animation: spinRing 8s linear infinite reverse; }
.tsv-dot {
  width: 9px; height: 9px;
  background: #34c759;
  border-radius: 50%;
  margin-top: -4px;
  box-shadow: 0 0 8px rgba(52,199,89,0.8);
}
.tsv-dot-sm { width: 6px; height: 6px; background: #6ee86d; margin-top: -3px; box-shadow: 0 0 6px rgba(110,232,109,0.7); }

.top-skill-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  width: 100%;
}
.tss { flex: 1; text-align: center; }
.tss-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.tss-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; font-weight: 500; }
.tss-div { width: 1px; height: 30px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* Skills grid fixes */
.skills-section { background: var(--bg); }
.skill-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 1px 6px rgba(26,173,25,0.05);
}
.skill-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(26,173,25,0.12);
  transform: translateY(-4px);
}
.skill-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.skill-icon svg { width: 24px !important; height: 24px !important; stroke-width: 1.8 !important; }
.skill-bar-bg {
  height: 6px;
  background: var(--bg3);
  border-radius: 50px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  border-radius: 50px;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}

/* ===== PRICING UPGRADE ===== */
.pricing-plan-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border: 1.5px solid var(--border2);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-plan-icon svg { width: 22px !important; height: 22px !important; }
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin: 0.6rem 0 0.2rem;
}
.pricing-currency {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  top: -10px;
}
.pricing-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.popular .pricing-number { color: #fff; }
.popular .pricing-currency { color: rgba(255,255,255,0.8); }
.popular .pricing-per { color: rgba(255,255,255,0.6); }
.pricing-per {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.15rem;
}
.pricing-features { flex: 1; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--text2);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--bg3);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { flex-shrink: 0; stroke: var(--accent); }
.pricing-feat-muted { opacity: 0.38; }
.pricing-feat-muted svg { stroke: var(--muted) !important; }
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  padding-top: 1.2rem;
  transition: all 0.2s;
  cursor: none;
  padding-top: 1rem;
}
.pricing-btn svg { flex-shrink: 0; }
.pricing-btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.pricing-btn-outline:hover { background: var(--accent-light); }
.pricing-btn-filled {
  background: #fff;
  color: var(--text);
  border: 2px solid transparent;
}
.pricing-btn-filled:hover { background: rgba(255,255,255,0.9); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.pricing-note svg { stroke: var(--accent); }
.popular .pricing-plan-icon { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.25); color: #fff; }
.popular .pricing-plan { color: rgba(255,255,255,0.75); }
.popular .pricing-name { color: #fff; }
.popular .pricing-desc { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.2); padding-bottom: 1rem; margin-bottom: 1rem; }
.popular .pricing-currency { color: #fff; }
.popular .pricing-amount > span:not(.pricing-currency):not(.pricing-per) { color: #fff; }
.popular .pricing-per { color: rgba(255,255,255,0.65); }
.popular .pricing-features li { color: rgba(255,255,255,0.88); border-bottom-color: rgba(255,255,255,0.12); }
.popular .pricing-features li svg { stroke: #fff; }
.popular .pricing-feat-muted { opacity: 0.35; }

/* Mobile top skill */
@media(max-width:768px) {
  .top-skill-card { grid-template-columns: 1fr; }
  .top-skill-right { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .top-skill-visual { width: 110px; height: 110px; }
  .tsv-ring-1 { width:110px;height:110px; }
  .tsv-ring-2 { width:80px;height:80px; }
  .tsv-ring-3 { width:54px;height:54px; }
  .tsv-orbit-1 { width:110px;height:110px; }
  .tsv-orbit-2 { width:80px;height:80px; }
  .top-skill-name { font-size: 1.8rem; }
  .top-skill-left { padding: 1.8rem 1.4rem 1.2rem; }
}

/* ======================================================
   COMPREHENSIVE RESPONSIVE — TABLET (≤900px) & MOBILE (≤600px)
   ====================================================== */

/* Hide desktop nav, show mobile actions */
@media(max-width:900px){
  .nav-desktop-wrap { display: none !important; }
  .nav-mobile-actions { display: flex !important; }
  .nav-hamburger { display: flex !important; }
  nav { padding: 0 1rem 0 1.2rem; }
}

/* ── TABLET (768px – 900px) ── */
@media(max-width:900px){
  section { padding: 4rem 4vw; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-image-wrap { justify-content: center; order: -1; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hfc-left { left: -20px; }
  .hfc-right { right: -20px; }

  /* Grids → 2 col or 1 col */
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .order-grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 6rem 4vw 3rem; }

  /* Flow process */
  .flow-wrap {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  .flow-arrow { flex-direction: column; padding: 0.4rem 0; }
  .flow-arrow-svg { display: none !important; }
  .flow-arrow::before {
    content: ""; display: block; width: 2px; height: 20px;
    background: linear-gradient(to bottom, var(--accent), var(--accent3));
    border-radius: 2px;
  }
  .flow-stats { flex-wrap: wrap; padding: 1.2rem; }
  .flow-stat { flex: 1 1 42%; text-align: center; padding: 0.8rem; }
  .flow-stat-divider { display: none; }

  /* Booking form grid → 1 col */
  .bform-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── MOBILE (≤600px) ── */
@media(max-width:600px){
  nav { height: 58px; padding: 0 0.8rem 0 1rem; }
  .mobile-nav-drawer { top: 58px; }
  .nav-logo { font-size: 1.15rem; }
  section { padding: 3rem 1rem; }

  /* Hero */
  .hero-grid { padding-top: 0; gap: 2rem; }
  .hero-name { font-size: clamp(2.2rem, 9vw, 3.2rem) !important; }
  .hero-role { font-size: 1rem; }
  .hero-img-frame { width: 240px !important; height: 300px !important; }
  .hfc-left, .hfc-right { display: none; }
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; }
  .stat-num { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.7rem; }
  .btn { width: 100%; justify-content: center; }
  #hero { padding-top: 80px !important; }

  /* Section titles */
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem) !important; }

  /* Skills */
  .skills-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .project-img { height: 180px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* About */
  .about-hero { padding: 5rem 1rem 2rem; }
  .timeline-item { gap: 1rem; }
  .timeline-item::before { left: 14px; }
  .timeline-dot { width: 30px; height: 30px; font-size: 0.75rem; flex-shrink: 0; }

  /* Booking */
  .booking-layout { grid-template-columns: 1fr; }
  .bform-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-steps { font-size: 0.72rem; }
  .bstep { padding: 0.8rem 0.4rem; }

  /* Order */
  .order-grid { grid-template-columns: 1fr; }

  /* Flow process */
  .flow-step-inner { padding: 1.4rem 1.2rem; }
  .flow-icon-svg { width: 60px; height: 60px; }
  .flow-icon-wrap { width: 70px; height: 70px; }
  .flow-stats { padding: 1rem; }
  .flow-stat { flex: 1 1 44%; }
  .flow-stat-val { font-size: 1.3rem; }

  /* Misc */
  .hero-float-card { font-size: 0.8rem; padding: 0.55rem 0.75rem; }
  .filter-bar { gap: 0.4rem; }
  .filter-btn { font-size: 0.75rem; padding: 0.38rem 0.8rem; }

  /* Testimonials: slow it down on mobile */
  .testimonials-track { animation-duration: 50s; }

  /* Marquee */
  .marquee-item { font-size: 0.82rem; padding: 0 1.2rem; }

  /* Top skill card */
  .top-skill-card { grid-template-columns: 1fr; }
  .top-skill-left { padding: 1.4rem 1.2rem; }
  .top-skill-right { padding: 1.2rem; }

  /* Notification */
  .notification { right: 0.8rem; left: 0.8rem; bottom: 1rem; }

  /* Cursor: hide on touch */
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  a, button, input, select, textarea, .cal-day, .time-slot, .cal-nav,
  .nav-hamburger, .pricing-btn, .filter-btn { cursor: pointer; }
}

/* ── Very small (≤400px) ── */
@media(max-width:400px){
  .skills-grid { grid-template-columns: 1fr; }
  .hero-img-frame { width: 200px !important; height: 255px !important; }
  .bform-grid { grid-template-columns: 1fr; }
}


p#my-form-status {
    MARGIN-TOP: 1REM;
    color: green;
}
.project-img img {
    object-fit: cover;
    width: 100%;
}
.projects-note {
  max-width: 720px;
  margin: 0.8rem auto 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.t-text-wrap { position: relative; }
.t-text,
.t-text-translated {
  transition: opacity 0.4s ease;
}
.t-text-translated {
  display: none;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.t-text-wrap.is-swapping .t-text          { opacity: 0; }
.t-text-wrap.is-swapping .t-text-translated { display: block; opacity: 0; }
.t-text-wrap.is-translated .t-text          { display: none; }
.t-text-wrap.is-translated .t-text-translated { display: block; opacity: 1; }
.t-translation { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid var(--border); }
.t-translate-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.82rem; color: var(--accent); font-style: italic;
  font-family: 'Manrope', sans-serif; padding: 0;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: opacity 0.2s;
}
.t-translate-btn:hover { opacity: 0.75; }
.t-translate-btn[disabled] { opacity: 0.3; pointer-events: none; }


.skills-section{
  overflow: hidden;
}
.mobile-btn{
  display: none;
}
.desktop-btn{
  display: block;
}

.heading-part.desktop{
  display: none;
}

.heading-part.mobile{
  display: block;
}


@media(max-width: 768px){
  .mobile-btn{
    display: block;
  }
  
.heading-part.desktop{
  display: block;
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-bottom: -1rem;
}
.section-label{
  margin-bottom: .5rem;
}

.section-label, .section-title{
  padding-left: 0 !important;
}

.heading-part.mobile{
  display: none;
}


  .desktop-btn{
    display: none;
  }
  .skill-card{
    padding: 1rem;
  }
  .skill-header{
    flex-direction: column;
    align-items: start;
  }

  .skill-name{
    font-size: 14px;
  }
.hero-stats{
  gap: 15px;
}
  .projects-div{
flex-direction: column;
  }

  .section-label-wrapper{
    width: 100%;
    text-align: center;
  }
  
  .project-div .section-label{
    margin-left: -25px;
  }
   .bg-alt{
    position: relative;
    padding-bottom: 5rem;
   }

  .bg-alt .mobile-btn{
    width: max-content;
        padding: 5px 15px;
    border: navajowhite;
    text-decoration: underline;
    position: absolute;
    bottom: 1.5%;
    left: 50%;
    transform: translate(-50%, 0);
    background: transparent;
    transition: 0.3s ease-in-out;
  }

  .bg-alt .mobile-btn:hover{
    background-color: var(--border2);
  }
  

  .about-hero .nav-cta{
    font-size: 0.9rem;
        padding: 0.75rem 1.4rem;
        width: 100%;
        text-align: center;
        justify-content: center;
  }
  .about-img-frame{
    height: 480px;
  }
}

@media(max-width: 360px){
.hero-stats{
  gap: 1rem;
}
}

.custom-select {
  position: relative;
  cursor: pointer;
}

.select-selected {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.9rem;
  position: relative;
}

.select-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 99;
  overflow: hidden;
}

.option {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.option:hover {
  background: var(--accent-light);
}

.option.hot span {
  background: #ff3b30;
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
}
.select-selected span {
  background: #ff3b30;
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
  position: absolute;
  right: 2%;
  top: 30%;
}

/* ── FORM PAGES MOBILE FIX ── */
@media (max-width: 600px) {
  .form-box {
    padding: 1.2rem;
    border-radius: 12px;
  }

  /* reCAPTCHA overflow fix */
  .g-recaptcha {
    transform-origin: left center;
    transform: scale(0.87);
  }
}

@media (max-width: 400px) {
  .form-box {
    padding: 1rem;
  }

  .g-recaptcha {
    transform-origin: left center;
    transform: scale(0.75);
  }
}

@media (max-width: 600px) {

  /* Hard stop all horizontal overflow */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }



  /* Form box: reduce padding so it fits */
  .form-box {
    padding: 1.2rem 1rem !important;
    border-radius: 12px !important;
  }

  /* Booking panel inner padding */
  .bpanel {
    padding: 1.2rem 0.9rem !important;
  }

  /* Booking steps tabs: shrink text */
  .bstep {
    font-size: 0.68rem !important;
    padding: 0.7rem 0.2rem !important;
    gap: 3px !important;
  }
  .bstep svg {
    width: 14px !important;
    display: none !important;
  }

  /* Calendar: smaller gap and font */
  .cal-grid {
    gap: 2px !important;
  }
  .cal-day {
    font-size: 0.75rem !important;
  }
  .cal-dow {
    font-size: 0.62rem !important;
  }

  /* Time slots: 2 columns */
  .time-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }
  .time-slot {
    font-size: 0.78rem !important;
    padding: 0.55rem 0.3rem !important;
  }

  /* reCAPTCHA: scale down to fit — only fix possible */
  .g-recaptcha {
    transform: scale(0.85) !important;
    transform-origin: left center !important;
    margin-bottom: 0.5rem !important;
  }

  /* Input / textarea full width, no overflow */
  input, textarea, select {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.88rem !important;
    box-sizing: border-box !important;
  }

  /* Order info cards */
  .order-info-card {
    padding: 1rem !important;
  }

  /* Contact info items */
  .contact-info-item {
    padding: 0.75rem 0.8rem !important;
    gap: 0.6rem !important;
  }
  .ci-icon {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
  }
  .ci-value {
    font-size: 0.88rem !important;
    word-break: break-all !important;
  }

  /* Booking success box */
  .booking-success {
    padding: 2rem 1rem !important;
  }
}

/* ── Under 400px — aggressive shrink ── */
@media (max-width: 400px) {


  .form-box {
    padding: 1rem 0.75rem !important;
  }

  .bpanel {
    padding: 1rem 0.6rem !important;
  }

  /* reCAPTCHA even smaller */
  .g-recaptcha {
    transform: scale(0.72) !important;
    transform-origin: left center !important;
  }

  /* Font size reduction across form elements */
  input, textarea, select {
    font-size: 0.82rem !important;
    padding: 0.65rem 0.75rem !important;
  }

  label {
    font-size: 0.7rem !important;
  }

  .cal-day {
    font-size: 0.68rem !important;
  }

  .cal-dow {
    font-size: 0.56rem !important;
    padding: 0.25rem 0 !important;
  }

  .time-slot {
    font-size: 0.72rem !important;
    padding: 0.45rem 0.2rem !important;
  }

  .bstep {
    font-size: 0.6rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .ci-value {
    font-size: 0.8rem !important;
  }

  /* Ensure nothing bleeds out */
  .booking-panel, .form-box, .order-info-card,
  .contact-info-item, .booking-info-card {
    max-width: 100% !important;
    overflow: hidden !important;
  }
}