/* Urban Technologies — Vibrant Professional Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --mint: #f0faf5;
  --sky: #eef6ff;
  --cream: #fafbfc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --text: #1e293b;
  --text-dim: #475569;
  --text-muted: #94a3b8;
  --heading: #0f172a;
  --green: #16a34a;
  --green-light: #22c55e;
  --green-bg: rgba(22,163,74,.06);
  --teal: #0891b2;
  --teal-bg: rgba(8,145,178,.06);
  --blue: #2563eb;
  --blue-bg: rgba(37,99,235,.05);
  --emerald: #059669;
  --amber: #d97706;
  --grad: linear-gradient(135deg, #16a34a 0%, #0891b2 50%, #2563eb 100%);
  --grad-warm: linear-gradient(135deg, #16a34a 0%, #059669 100%);
  --grad-cool: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  --grad-hero: linear-gradient(135deg, #064e3b 0%, #065f46 20%, #0c4a6e 60%, #1e3a5f 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08);
  --shadow-color: 0 8px 30px rgba(22,163,74,.12);
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
  --tr: .3s ease;
  --max-w: 1200px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:var(--font); background:var(--bg); color:var(--text); line-height:1.7; overflow-x:hidden; }
a { color:var(--teal); text-decoration:none; transition:var(--tr); }
a:hover { color:var(--green); }
img { max-width:100%; display:block; }
ul { list-style:none; }
h1,h2,h3,h4,h5,h6 { font-family:var(--font); color:var(--heading); line-height:1.2; font-weight:700; }

.container { max-width:var(--max-w); margin:0 auto; padding:0 24px; }
.section { padding:90px 0; }
.section-label { font-size:.7rem; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--teal); display:inline-flex; align-items:center; gap:10px; margin-bottom:10px; }
.section-label::before { content:''; width:28px; height:2.5px; background:var(--grad); border-radius:2px; }
.section-title { font-size:clamp(1.7rem,3.5vw,2.6rem); margin-bottom:14px; }
.section-desc { font-size:.98rem; color:var(--text-dim); max-width:540px; margin-bottom:32px; }
.grad-text { background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 28px; border-radius:50px; font-family:var(--font); font-weight:600; font-size:.88rem; border:none; cursor:pointer; transition:var(--tr); }
.btn svg { width:15px; height:15px; }
.btn-primary { background:var(--grad); color:#fff; box-shadow:var(--shadow-color); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(22,163,74,.2); color:#fff; }
.btn-outline { background:transparent; border:2px solid var(--gray-200); color:var(--heading); }
.btn-outline:hover { border-color:var(--green); color:var(--green); }
.btn-white { background:#fff; color:var(--heading); box-shadow:0 2px 12px rgba(0,0,0,.08); }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.12); color:var(--heading); }

/* HEADER */
.header { position:fixed; top:0; left:0; right:0; z-index:1000; padding:8px 0; background:rgba(255,255,255,.92); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border-bottom:1px solid rgba(0,0,0,.04); transition:var(--tr); }
.header.scrolled { box-shadow:var(--shadow-sm); }
.header .container { display:flex; align-items:center; justify-content:space-between; }
.logo { display:flex; align-items:center; }
.logo-img { height:48px; width:auto; }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a { color:var(--text-dim); font-size:.88rem; font-weight:500; padding:8px 16px; border-radius:50px; transition:var(--tr); }
.nav-links a:hover, .nav-links a.active { color:var(--heading); background:var(--gray-100); }
.nav-links .btn { margin-left:8px; padding:10px 22px; font-size:.82rem; }
.nav-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:0; border:0; }
.nav-toggle span { width:22px; height:2px; background:var(--heading); border-radius:2px; }
.mobile-overlay { display:none; position:fixed; inset:0; background:rgba(255,255,255,.98); z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:10px; }
.mobile-overlay.open { display:flex; }
.mobile-overlay a { font-size:1.2rem; font-weight:600; color:var(--heading); padding:10px 20px; }
.mobile-close { position:absolute; top:20px; right:20px; background:0; border:0; color:var(--heading); font-size:2rem; cursor:pointer; }

/* HERO — Vibrant gradient, NOT dark */
.hero { min-height:85vh; display:flex; align-items:center; position:relative; overflow:hidden; padding-top:80px; background:var(--grad-hero); }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:.18; mix-blend-mode:luminosity; }
.hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:120px; background:linear-gradient(to top,var(--bg),transparent); z-index:1; }
.hero-content { position:relative; z-index:2; max-width:660px; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); border-radius:50px; padding:6px 18px 6px 10px; font-size:.74rem; font-weight:600; color:rgba(255,255,255,.9); margin-bottom:24px; }
.hero-badge-dot { width:8px; height:8px; background:#4ade80; border-radius:50%; box-shadow:0 0 8px rgba(74,222,128,.5); }
.hero h1 { font-size:clamp(2rem,4vw,3.2rem); font-weight:800; color:#fff; margin-bottom:18px; line-height:1.15; }
.hero h1 em { font-style:normal; color:#4ade80; }
.hero p { font-size:1rem; color:rgba(255,255,255,.78); max-width:500px; margin-bottom:28px; line-height:1.7; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }

/* SERVICE CARDS — Colorful accents */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.svc-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); overflow:hidden; transition:var(--tr); text-decoration:none; }
.svc-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:transparent; }
.svc-card-img { height:190px; overflow:hidden; }
.svc-card-img img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.svc-card:hover .svc-card-img img { transform:scale(1.05); }
.svc-card-body { padding:22px; }
.svc-card-body h3 { font-size:1.05rem; margin-bottom:7px; }
.svc-card-body p { font-size:.85rem; color:var(--text-dim); margin-bottom:12px; line-height:1.6; }
.svc-card-link { font-size:.8rem; font-weight:600; color:var(--teal); display:inline-flex; align-items:center; gap:4px; }
.svc-card-link svg { width:13px; height:13px; transition:var(--tr); }
.svc-card:hover .svc-card-link svg { transform:translateX(3px); }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.about-img { border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:22px; }
.about-feat { display:flex; align-items:center; gap:9px; padding:11px 14px; background:var(--mint); border-radius:var(--r-md); }
.about-feat-dot { width:7px; height:7px; border-radius:50%; background:var(--green); flex-shrink:0; }
.about-feat span { font-size:.84rem; font-weight:500; color:var(--heading); }

/* SHOWCASE */
.showcase { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.showcase.reverse { direction:rtl; }
.showcase.reverse > * { direction:ltr; }
.showcase-img { border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); }
.showcase-img img { width:100%; }
.check-item { display:flex; align-items:flex-start; gap:9px; padding:9px 0; border-bottom:1px solid var(--gray-100); }
.check-item:last-child { border-bottom:0; }
.check-dot { width:7px; height:7px; min-width:7px; border-radius:50%; background:var(--green); margin-top:7px; }
.check-item span { font-size:.88rem; }
.tag-row { display:flex; flex-wrap:wrap; gap:7px; margin-top:16px; }
.tag { padding:5px 13px; background:var(--sky); border-radius:50px; font-size:.73rem; font-weight:600; color:var(--teal); }

/* CTA */
.cta-section { padding:70px 0; }
.cta-box { border-radius:var(--r-xl); padding:64px 44px; text-align:center; background:var(--grad-hero); }
.cta-box h2 { font-size:clamp(1.5rem,3vw,2.3rem); color:#fff; margin-bottom:12px; }
.cta-box h2 em { font-style:normal; color:#4ade80; }
.cta-box p { font-size:.96rem; color:rgba(255,255,255,.7); max-width:480px; margin:0 auto 24px; }
.cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* INDUSTRIES */
.ind-row { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.ind-tag { padding:10px 22px; background:var(--white); border:1px solid var(--gray-200); border-radius:50px; font-size:.85rem; font-weight:500; color:var(--text-dim); transition:var(--tr); }
.ind-tag:hover { border-color:var(--green); color:var(--green); background:var(--green-bg); }

/* FOOTER */
.footer { background:#062e1e; color:rgba(255,255,255,.75); padding:56px 0 24px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; margin-bottom:36px; }
.footer .logo-img { height:48px; background:#fff; border-radius:8px; padding:6px 10px; }
.footer-brand p { color:rgba(255,255,255,.5); font-size:.86rem; margin-top:12px; max-width:260px; }
.footer-social { display:flex; gap:8px; margin-top:16px; }
.footer-social a { width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.5); transition:var(--tr); }
.footer-social a:hover { background:rgba(255,255,255,.08); color:#fff; }
.footer-social a svg { width:14px; height:14px; }
.footer-col h4 { font-size:.84rem; margin-bottom:14px; color:#fff; font-weight:700; }
.footer-col a { display:block; color:rgba(255,255,255,.5); font-size:.82rem; padding:3px 0; transition:var(--tr); }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:18px; display:flex; justify-content:space-between; font-size:.76rem; color:rgba(255,255,255,.3); }

/* PAGE HEADER */
.page-header { padding:140px 0 64px; background:var(--grad-hero); position:relative; }
.page-header-bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:.12; }
.page-header-content { position:relative; z-index:1; max-width:600px; }
.page-header h1 { font-size:clamp(1.8rem,3.5vw,2.8rem); color:#fff; margin-bottom:12px; }
.page-header p { font-size:1rem; color:rgba(255,255,255,.65); }
.breadcrumb { display:flex; gap:6px; font-size:.8rem; margin-bottom:14px; color:rgba(255,255,255,.35); }
.breadcrumb a { color:rgba(255,255,255,.55); }

/* SERVICE PAGE NAV */
.svc-nav { background:var(--white); border-bottom:1px solid var(--gray-200); padding:10px 0; position:sticky; top:56px; z-index:50; }
.svc-nav-inner { display:flex; gap:10px; overflow-x:auto; }
.svc-nav-inner::-webkit-scrollbar { display:none; }
.svc-detail { scroll-margin-top:90px; }

/* CONTACT */
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:36px; }
.contact-cards { display:flex; flex-direction:column; gap:12px; }
.c-card { display:flex; gap:12px; padding:18px; background:var(--gray-50); border-radius:var(--r-md); }
.c-card-icon { width:34px; height:34px; min-width:34px; border-radius:8px; background:var(--teal-bg); display:flex; align-items:center; justify-content:center; }
.c-card-icon svg { width:15px; height:15px; color:var(--teal); }
.c-card h4 { font-size:.86rem; margin-bottom:1px; }
.c-card p, .c-card a { font-size:.84rem; color:var(--text-dim); }
.contact-form { background:var(--gray-50); border-radius:var(--r-lg); padding:32px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:4px; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-size:.78rem; font-weight:600; color:var(--text-dim); }
.form-group input, .form-group select, .form-group textarea { padding:11px 14px; background:#fff; border:1px solid var(--gray-200); border-radius:var(--r-sm); color:var(--heading); font-family:var(--font); font-size:.88rem; transition:var(--tr); outline:0; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px var(--teal-bg); }
.form-group textarea { min-height:90px; resize:vertical; }
.form-group select { appearance:none; }

/* ANIMATIONS */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .55s ease,transform .55s ease; }
.reveal.active { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-24px); transition:opacity .55s ease,transform .55s ease; }
.reveal-left.active { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(24px); transition:opacity .55s ease,transform .55s ease; }
.reveal-right.active { opacity:1; transform:translateX(0); }
[data-stagger] > * { opacity:0; transform:translateY(16px); transition:opacity .45s ease,transform .45s ease; }
[data-stagger].active > * { opacity:1; transform:translateY(0); }

@media(max-width:1024px) { .services-grid{grid-template-columns:repeat(2,1fr)} .about-grid,.showcase,.contact-grid{grid-template-columns:1fr} .showcase.reverse{direction:ltr} .footer-grid{grid-template-columns:1fr 1fr} }
@media(max-width:768px) { .nav-links{display:none} .nav-toggle{display:flex} .services-grid{grid-template-columns:1fr} .section{padding:56px 0} .cta-box{padding:40px 20px} .form-grid{grid-template-columns:1fr} .footer-grid{grid-template-columns:1fr;gap:24px} .footer-bottom{flex-direction:column;gap:4px;text-align:center} .about-features{grid-template-columns:1fr} .page-header{padding:110px 0 48px} }
@media(max-width:480px) { .hero-actions{flex-direction:column} .hero-actions .btn{width:100%;justify-content:center} }
