/* DTech Creative Agency - Main Stylesheet */
/* Design: Premium agency aesthetic with glassmorphism + bold typography */

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

/* ─── CSS Variables ──────────────────────────────── */
:root {
  --primary: #0a0a0f;
  --accent: #6C47FF;
  --accent-2: #FF6B35;
  --accent-3: #00D4AA;
  --text: #1a1a2e;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-2: #f8f9fe;
  --bg-3: #f1f3fd;
  --border: rgba(108, 71, 255, 0.12);
  --border-light: rgba(0,0,0,0.06);
  --card-shadow: 0 4px 32px rgba(108, 71, 255, 0.08);
  --card-shadow-hover: 0 16px 64px rgba(108, 71, 255, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255,255,255,0.5);
}

/* ─── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: white; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Loader ─────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  position: relative;
}
.loader-logo::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--accent);
  margin-top: 8px;
  animation: loaderLine 1.5s ease-in-out infinite;
  border-radius: 99px;
}
@keyframes loaderLine {
  0% { width: 0; opacity: 0; }
  50% { width: 100%; opacity: 1; }
  100% { width: 0; opacity: 0; }
}

/* ─── Navigation ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--accent); }
.nav-logo .logo-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.nav-links {
  display: flex; align-items: center; gap: 0.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
  background: rgba(108, 71, 255, 0.08);
}
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-nav {
  background: var(--accent);
  color: white;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(108, 71, 255, 0.3);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(108, 71, 255, 0.4);
}
.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: var(--transition);
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(108, 71, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108, 71, 255, 0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(10,10,15,0.2);
}
.btn-dark:hover { transform: translateY(-2px); }
.btn-light {
  background: white;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-light:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; border-radius: 12px; }

/* ─── Hero Section ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--primary);
  padding: 120px 2rem 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108, 71, 255, 0.35) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation-delay: 3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: 5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108, 71, 255, 0.15);
  border: 1px solid rgba(108, 71, 255, 0.3);
  color: #b4a0ff;
  padding: 8px 16px; border-radius: 99px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-3);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}
.hero-stat { text-align: left; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeInRight 0.8s ease 0.5s forwards;
}
.hero-card-main {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
}
.hero-card-screen {
  background: linear-gradient(135deg, #1e1e3f 0%, #0f0f23 100%);
  border-radius: 12px; padding: 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem; color: #64ffda; line-height: 2;
  min-height: 200px; position: relative; overflow: hidden;
}
.hero-card-screen::before {
  content: '● ● ●';
  display: block; color: rgba(255,255,255,0.3);
  margin-bottom: 1rem; letter-spacing: 4px;
}
.code-line { animation: typeIn 0.5s ease forwards; opacity: 0; }
.code-line:nth-child(2) { animation-delay: 0.5s; }
.code-line:nth-child(3) { animation-delay: 1s; }
.code-line:nth-child(4) { animation-delay: 1.5s; }
.code-line:nth-child(5) { animation-delay: 2s; }
.code-line:nth-child(6) { animation-delay: 2.5s; }
@keyframes typeIn { to { opacity: 1; } }
.code-keyword { color: #c792ea; }
.code-string { color: #f78c6c; }
.code-value { color: #c3e88d; }
.code-comment { color: rgba(100,150,100,0.7); }
.floating-cards {
  position: absolute;
  display: flex; flex-direction: column; gap: 12px;
  right: -40px; top: 50%; transform: translateY(-50%);
}
.float-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
  animation: floatCard 3s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: 1s; }
.float-card:nth-child(3) { animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-6px); }
}
.float-card-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.float-card-icon.green { background: rgba(0,212,170,0.2); color: var(--accent-3); }
.float-card-icon.purple { background: rgba(108,71,255,0.2); color: var(--accent); }
.float-card-icon.orange { background: rgba(255,107,53,0.2); color: var(--accent-2); }
.float-card-text { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 600; }
.float-card-sub { font-size: 0.65rem; color: rgba(255,255,255,0.4); }

/* ─── Section Styles ─────────────────────────────── */
.section { padding: 100px 2rem; }
.section-sm { padding: 60px 2rem; }
.section-dark { background: var(--primary); }
.section-gray { background: var(--bg-2); }
.container { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(108, 71, 255, 0.1);
  color: var(--accent);
  padding: 6px 16px; border-radius: 99px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(108,71,255,0.2);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-title-white { color: white; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.section-header { margin-bottom: 3.5rem; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ─── Services Section ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  group: service;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(108,71,255,0.12), rgba(108,71,255,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-price {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.service-btn {
  width: 100%;
  background: var(--bg-3);
  color: var(--accent);
  border: none; border-radius: 10px;
  padding: 12px;
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.service-btn:hover { background: var(--accent); color: white; }
.service-btn-arrow { transition: transform 0.3s ease; }
.service-btn:hover .service-btn-arrow { transform: translateX(4px); }

/* ─── Why Choose Us ─────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(108,71,255,0.06), transparent 70%);
  border-radius: 50%;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--card-shadow); transform: translateY(-4px); }
.feature-number {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: rgba(108,71,255,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Portfolio Section ──────────────────────────── */
.portfolio-filter {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 8px 20px; border-radius: 99px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--border-light);
  background: transparent; color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent); color: white;
  border-color: var(--accent);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative; cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 16/10;
  background: var(--bg-3);
}
.portfolio-card:hover { transform: scale(1.02); box-shadow: var(--card-shadow-hover); }
.portfolio-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 60%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
  font-size: 0.75rem; color: var(--accent); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px;
}
.portfolio-name { font-family: var(--font-display); font-size: 1.2rem; color: white; font-weight: 700; }
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  color: var(--text-muted);
  font-size: 3rem;
}

/* ─── Testimonials ───────────────────────────────── */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: calc(33.333% - 1rem);
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--card-shadow); }
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
  font-family: var(--font-display);
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 2.5rem;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-muted);
  transition: var(--transition);
}
.slider-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(108,71,255,0.05); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--border-light); cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { width: 24px; background: var(--accent); }

/* ─── CTA Section ────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #4c1d95 100%);
  border-radius: 32px;
  padding: 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: white;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── Contact Form ───────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
.contact-info { }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(108,71,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info-value { font-weight: 600; font-size: 0.95rem; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 2rem;
  height: 220px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(108,71,255,0.08);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { color: #ef4444; font-size: 0.8rem; margin-top: 4px; }
.form-success {
  background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.3);
  color: #059669; border-radius: var(--radius-sm);
  padding: 12px 16px; margin-bottom: 1rem; font-size: 0.9rem;
}
.form-alert {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444; border-radius: var(--radius-sm);
  padding: 12px 16px; margin-bottom: 1rem; font-size: 0.9rem;
}

/* ─── Modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: white; border-radius: var(--radius-lg);
  max-width: 540px; width: 100%;
  padding: 2.5rem; position: relative;
  transform: translateY(30px) scale(0.96);
  transition: var(--transition);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--bg-2);
  cursor: pointer; font-size: 1.1rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--accent); color: white; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 0.5rem;
}
.modal-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.modal-service-name {
  background: rgba(108,71,255,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-weight: 700; color: var(--accent);
  font-size: 0.9rem; margin-bottom: 1.5rem;
}

/* ─── Footer ─────────────────────────────────────── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 80px 2rem 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1280px; margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: white; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 0.875rem; line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.5rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  color: white; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}

/* ─── Auth Pages ─────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fe 0%, #ede9fe 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.auth-card {
  background: white; border-radius: 24px;
  padding: 3rem; max-width: 480px; width: 100%;
  box-shadow: 0 20px 60px rgba(108,71,255,0.12);
}
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800; color: var(--primary);
}
.auth-logo-text span { color: var(--accent); }
.auth-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.auth-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }
.auth-switch { text-align: center; margin-top: 1.5rem; font-size: 0.875rem; color: var(--text-muted); }
.auth-switch a { color: var(--accent); font-weight: 600; }
.password-toggle {
  position: relative;
}
.password-toggle .toggle-btn {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  font-size: 1rem;
}

/* ─── About Page ─────────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 160px 2rem 100px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(108,71,255,0.25), transparent 70%);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: white;
  letter-spacing: -0.03em;
  position: relative;
}
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-top: 1rem; position: relative; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 1.25rem; font-size: 0.85rem; color: rgba(255,255,255,0.4);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.team-avatar-wrap {
  height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--accent);
}
.team-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.5rem; }
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-social {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bg-3); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.team-social:hover { background: var(--accent); color: white; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.mv-card.mission::before { background: linear-gradient(90deg, var(--accent), #a78bfa); }
.mv-card.vision::before { background: linear-gradient(90deg, var(--accent-2), #fbbf24); }
.mv-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.mv-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.mv-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ─── Admin Styles ───────────────────────────────── */
.admin-layout {
  display: flex; min-height: 100vh;
  font-family: var(--font-body);
}
.admin-sidebar {
  width: 260px; background: var(--primary);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100; overflow-y: auto;
  transition: transform 0.3s ease;
}
.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800; color: white;
}
.sidebar-logo span { color: var(--accent); }
.sidebar-badge {
  display: inline-block; background: rgba(108,71,255,0.2);
  color: var(--accent); font-size: 0.65rem;
  padding: 2px 8px; border-radius: 99px; margin-top: 4px;
  font-weight: 700; letter-spacing: 0.05em;
}
.sidebar-nav { padding: 1rem 0; flex: 1; }
.sidebar-section {
  padding: 0.5rem 1rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-top: 1rem;
}
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 1.25rem;
  color: rgba(255,255,255,0.55); font-size: 0.875rem;
  transition: var(--transition); cursor: pointer;
  position: relative; border-radius: 0;
  text-decoration: none;
}
.sidebar-link:hover, .sidebar-link.active {
  color: white; background: rgba(108,71,255,0.15);
}
.sidebar-link.active::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  border-radius: 0 2px 2px 0;
}
.sidebar-link-icon { width: 18px; text-align: center; font-size: 1rem; }
.sidebar-link-badge {
  margin-left: auto;
  background: var(--accent-2); color: white;
  font-size: 0.65rem; font-weight: 800;
  padding: 2px 7px; border-radius: 99px;
}
.sidebar-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sidebar-user {
  display: flex; align-items: center; gap: 10px;
}
.sidebar-avatar {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  font-family: var(--font-display);
}
.sidebar-user-name { font-size: 0.85rem; font-weight: 700; color: white; }
.sidebar-user-role { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.admin-main {
  margin-left: 260px; flex: 1;
  display: flex; flex-direction: column; min-height: 100vh;
  background: var(--bg-2);
}
.admin-topbar {
  background: white; padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.admin-page-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.admin-topbar-right { display: flex; align-items: center; gap: 1rem; }
.notif-btn {
  position: relative; width: 40px; height: 40px; border-radius: 10px;
  border: 1.5px solid var(--border-light); background: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem; transition: var(--transition);
}
.notif-btn:hover { border-color: var(--accent); color: var(--accent); }
.notif-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-2); color: white;
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.admin-content { padding: 2rem; flex: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.stat-card {
  background: white; border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--border-light);
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--card-shadow); transform: translateY(-2px); }
.stat-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.stat-card-icon.purple { background: rgba(108,71,255,0.1); color: var(--accent); }
.stat-card-icon.orange { background: rgba(255,107,53,0.1); color: var(--accent-2); }
.stat-card-icon.green { background: rgba(0,212,170,0.1); color: var(--accent-3); }
.stat-card-icon.blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900; line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.stat-trend { 
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 8px; border-radius: 6px;
}
.stat-trend.up { background: rgba(0,212,170,0.1); color: var(--accent-3); }
.stat-trend.down { background: rgba(239,68,68,0.1); color: #ef4444; }
.admin-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden; margin-bottom: 1.5rem;
}
.admin-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}
.admin-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 800; }
.admin-card-body { padding: 1.5rem; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: 10px 16px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); background: var(--bg-2);
  border-bottom: 1px solid var(--border-light);
}
.data-table td {
  padding: 14px 16px; font-size: 0.875rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-2); }
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 99px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.02em;
}
.badge-pending { background: rgba(245,158,11,0.1); color: #d97706; }
.badge-completed { background: rgba(0,212,170,0.1); color: #059669; }
.badge-in_progress { background: rgba(59,130,246,0.1); color: #2563eb; }
.badge-cancelled { background: rgba(239,68,68,0.1); color: #dc2626; }
.badge-admin { background: rgba(108,71,255,0.1); color: var(--accent); }
.badge-user { background: rgba(100,116,139,0.1); color: #475569; }
.badge-active { background: rgba(0,212,170,0.1); color: #059669; }
.badge-inactive { background: rgba(239,68,68,0.1); color: #dc2626; }
.action-btns { display: flex; gap: 6px; }
.action-btn {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--border-light); background: white;
  cursor: pointer; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--text-muted);
  text-decoration: none;
}
.action-btn.edit:hover { border-color: var(--accent); color: var(--accent); background: rgba(108,71,255,0.06); }
.action-btn.delete:hover { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,0.06); }
.action-btn.view:hover { border-color: #3b82f6; color: #3b82f6; background: rgba(59,130,246,0.06); }
.search-bar {
  display: flex; align-items: center; gap: 0; max-width: 320px;
}
.search-bar input {
  flex: 1; padding: 9px 14px;
  border: 1.5px solid var(--border-light); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-body); font-size: 0.875rem; outline: none;
  transition: var(--transition);
}
.search-bar input:focus { border-color: var(--accent); }
.search-bar button {
  padding: 9px 14px; border: 1.5px solid var(--border-light); border-left: none;
  background: var(--bg-2); cursor: pointer; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted); transition: var(--transition); font-size: 0.9rem;
}
.search-bar button:hover { background: var(--accent); color: white; border-color: var(--accent); }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.admin-select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.875rem; color: var(--text);
  background: white; outline: none; transition: var(--transition);
  cursor: pointer;
}
.admin-select:focus { border-color: var(--accent); }
.quick-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.quick-action {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 8px 16px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
.quick-action:hover { border-color: var(--accent); color: var(--accent); background: rgba(108,71,255,0.03); }

/* ─── Animations ─────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ─── Toast Notifications ────────────────────────── */
#toast-container {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 9999; display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: white; border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-left: 4px solid var(--accent);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.875rem; max-width: 320px;
  animation: toastIn 0.4s ease forwards;
  font-family: var(--font-body);
}
.toast.success { border-left-color: var(--accent-3); }
.toast.error { border-left-color: #ef4444; }
.toast.warning { border-left-color: #f59e0b; }
.toast-icon { font-size: 1.1rem; }
.toast-message { flex: 1; color: var(--text); }
.toast-close { cursor: pointer; color: var(--text-muted); background: none; border: none; font-size: 1.1rem; }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ─── Misc ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-100 { width: 100%; }
.pagination-nav { display: flex; justify-content: center; margin-top: 2rem; }
.pagination { display: flex; gap: 6px; list-style: none; align-items: center; }
.pagination li a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid var(--border-light); font-size: 0.875rem;
  color: var(--text-muted); transition: var(--transition);
  text-decoration: none;
}
.pagination li.active a { background: var(--accent); color: white; border-color: var(--accent); }
.pagination li a:hover { border-color: var(--accent); color: var(--accent); }
.empty-state {
  text-align: center; padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state-text { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.empty-state-sub { font-size: 0.875rem; }
.google-reviews-section { padding: 60px 2rem; background: var(--bg-2); }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .floating-cards { right: 10px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .testimonial-card { min-width: calc(50% - 0.75rem); }
  .mission-vision-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 100px 1.5rem 60px; }
  .section { padding: 60px 1.5rem; }
  .cta-section { padding: 48px 28px; border-radius: 20px; }
  .testimonial-card { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mobile-menu { display: flex; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800; color: white;
  transition: var(--transition);
}
.mobile-menu .nav-link:hover { color: var(--accent); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE OVERHAUL — mobile / tablet / laptop / desktop
   ═══════════════════════════════════════════════════════════ */

/* ─── Global Mobile Fixes ─────────────────────────────────── */
html { -webkit-text-size-adjust: 100%; }
img, video, iframe { max-width: 100%; height: auto; }
table { width: 100%; }

/* ─── Navbar ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-nav { display: none !important; }
  .menu-toggle { display: flex !important; }
  .nav-inner { height: 68px; padding: 0 1.25rem; }
}
@media (min-width: 901px) {
  .menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}

/* ─── Hero ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; max-width: 720px; }
  .hero-visual { order: -1; }
  .floating-cards { right: 0; }
  .hero { padding: 110px 1.5rem 70px; }
}
@media (max-width: 640px) {
  .hero { padding: 95px 1.25rem 60px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-subtitle { font-size: .95rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-card-main { padding: 1.25rem; }
  .floating-cards { display: none; }
  .hero-badge { font-size: .72rem; }
}

/* ─── Section / Container ─────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 56px 1.25rem; }
  .section-sm { padding: 40px 1.25rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-subtitle { font-size: .9rem; }
  .section-header { margin-bottom: 2.5rem; }
}

/* ─── Services Grid ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }
}

/* ─── Features Grid ───────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ─── Portfolio Grid ──────────────────────────────────────── */
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filter { justify-content: flex-start; overflow-x: auto; padding-bottom: .5rem; flex-wrap: nowrap; }
  .filter-btn { flex-shrink: 0; }
}

/* ─── Testimonials ────────────────────────────────────────── */
@media (max-width: 900px) {
  .testimonial-card { min-width: calc(50% - .75rem); }
}
@media (max-width: 560px) {
  .testimonial-card { min-width: 100%; }
}

/* ─── CTA Section ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .cta-section { padding: 48px 1.5rem; border-radius: 20px; }
  .cta-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .cta-actions { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ─── Contact Grid ────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-map { height: 200px; }
}
@media (max-width: 560px) {
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── About Grid ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-main-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .mission-vision-grid { grid-template-columns: 1fr; }
}

/* ─── Footer ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
  footer { padding: 56px 1.25rem 32px; }
}

/* ─── Auth Pages ──────────────────────────────────────────── */
@media (max-width: 540px) {
  .auth-card { padding: 2rem 1.5rem; border-radius: 16px; }
  .auth-page { padding: 1rem; align-items: flex-start; padding-top: 2rem; }
}

/* ─── Page Hero ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .page-hero { padding: 120px 1.25rem 70px; }
  .page-hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .page-hero-sub { font-size: .9rem; }
}

/* ─── Service Detail ──────────────────────────────────────── */
@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr !important; }
}

/* ─── Profile Page ────────────────────────────────────────── */
@media (max-width: 720px) {
  .profile-grid { grid-template-columns: 1fr !important; }
}

/* ─── Modal ───────────────────────────────────────────────── */
@media (max-width: 560px) {
  .modal { padding: 1.75rem 1.25rem; margin: 1rem; max-height: 90vh; }
  .modal-overlay { padding: .5rem; }
}

/* ─── Buttons ─────────────────────────────────────────────── */
@media (max-width: 400px) {
  .btn-lg { padding: 14px 28px; font-size: .9rem; }
  .btn { padding: 12px 22px; }
}

/* ─── Admin Panel ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .admin-sidebar {
    transform: translateX(-100%);
    position: fixed; top: 0; left: 0; bottom: 0;
    z-index: 200;
    transition: transform .3s ease;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0 !important; }
  #sidebar-toggle { display: flex !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .live-chat-panel { grid-template-columns: 1fr; height: auto; }
  .chat-sessions-list { height: 280px; border-right: none; border-bottom: 1px solid var(--border-light); }
  .admin-chat-main { min-height: 400px; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .admin-content { padding: 1rem; }
  .admin-topbar { padding: .875rem 1rem; }
  .admin-card-body { padding: 1rem; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .data-table th, .data-table td { padding: 10px 10px; font-size: .8rem; }
}

/* ─── Overflow Fixes ──────────────────────────────────────── */
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 768px) {
  .data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-form-grid { grid-template-columns: 1fr; }
}

/* ─── Touch Target Sizes ──────────────────────────────────── */
@media (pointer: coarse) {
  .btn, .btn-nav, .service-btn, .filter-btn, .action-btn,
  .sidebar-link, .chat-send-btn, .chat-suggestion,
  input[type="checkbox"], input[type="radio"] {
    min-height: 44px;
  }
  .action-btn { min-height: 36px; }
  .chat-send-btn { min-height: 40px; }
}

/* ─── Tablet Landscape (768-1024) ────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .hero-content { gap: 3rem; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}

/* ─── Large screens (1400px+) ────────────────────────────── */
@media (min-width: 1400px) {
  .container { max-width: 1380px; }
  .hero-content { max-width: 1380px; }
  .section-title { font-size: 3.2rem; }
}

/* ═══════════════════════════════════════════════════════════
   MODERN TEAM SECTION
   ═══════════════════════════════════════════════════════════ */

/* Team Grid Layout */
.team-section-wrap { position: relative; }

.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Team Card */
.team-card-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  isolation: isolate;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.team-card-modern:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(108,71,255,.22);
  z-index: 2;
}

/* Photo */
.team-card-photo {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .4s ease;
}
.team-card-modern:hover .team-card-photo {
  transform: scale(1.08);
  filter: brightness(0.6) saturate(1.1);
}

/* Placeholder when no photo */
.team-card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem;
  background: linear-gradient(160deg, #1e1e3f 0%, #0f0f23 100%);
  transition: filter .4s ease;
}
.team-card-modern:hover .team-card-placeholder { filter: brightness(.7); }
.team-card-placeholder-initials {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900; color: rgba(108,71,255,.6);
  line-height: 1;
}
.team-card-placeholder-icon {
  font-size: 3.5rem; color: rgba(255,255,255,.08);
}

/* Gradient overlay — always present, stronger on hover */
.team-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,10,15,.95) 0%,
    rgba(10,10,15,.5)  40%,
    rgba(10,10,15,.1)  65%,
    transparent        100%);
  transition: background .4s ease;
}
.team-card-modern:hover .team-card-overlay {
  background: linear-gradient(to top,
    rgba(10,10,15,1)   0%,
    rgba(10,10,15,.7)  50%,
    rgba(10,10,15,.25) 80%,
    transparent        100%);
}

/* Accent strip */
.team-card-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.team-card-modern:hover .team-card-accent { transform: scaleX(1); }

/* Number badge */
.team-card-number {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 900;
  color: rgba(255,255,255,.2);
  letter-spacing: .05em;
  transition: color .3s ease;
}
.team-card-modern:hover .team-card-number { color: rgba(255,255,255,.5); }

/* Content */
.team-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem;
  transform: translateY(0);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800;
  color: white; line-height: 1.2;
  margin-bottom: 4px;
}
.team-card-role {
  font-size: .78rem; font-weight: 700;
  color: var(--accent); letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: margin .3s ease;
}

/* Bio — hidden until hover */
.team-card-bio {
  font-size: .8rem; color: rgba(255,255,255,.7);
  line-height: 1.6; margin-top: .75rem;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease .1s, margin .3s ease;
}
.team-card-modern:hover .team-card-bio {
  max-height: 100px; opacity: 1;
  margin-top: .75rem;
}
.team-card-modern:hover .team-card-role { margin-bottom: 0; }

/* Socials */
.team-card-socials {
  display: flex; gap: 8px; margin-top: 1rem;
  transform: translateY(10px); opacity: 0;
  transition: transform .3s ease .15s, opacity .3s ease .15s;
}
.team-card-modern:hover .team-card-socials {
  transform: translateY(0); opacity: 1;
}
.team-card-social-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  color: white; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.team-card-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

/* Featured card (first one) — taller */
.team-card-modern.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}
.team-card-modern.featured .team-card-name { font-size: 1.3rem; }
.team-card-modern.featured .team-card-bio {
  font-size: .875rem;
  max-height: 0;
}
.team-card-modern.featured:hover .team-card-bio { max-height: 140px; }

/* Stats bar */
.team-stats-bar {
  display: flex; gap: 0;
  background: var(--primary);
  border-radius: 16px; overflow: hidden;
  margin-top: 3rem;
}
.team-stat-item {
  flex: 1; padding: 1.5rem 1rem; text-align: center;
  position: relative;
}
.team-stat-item + .team-stat-item::before {
  content: '';
  position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px; background: rgba(255,255,255,.08);
}
.team-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900; color: white; line-height: 1;
}
.team-stat-label {
  font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 4px;
}

/* Join CTA Card */
.team-join-card {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(108,71,255,.15) 0%, rgba(10,10,15,.9) 100%);
  border: 1.5px dashed rgba(108,71,255,.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  cursor: pointer;
  transition: border-color .3s, background .3s, transform .3s;
}
.team-join-card:hover {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(108,71,255,.25) 0%, rgba(10,10,15,.95) 100%);
  transform: translateY(-4px);
}
.team-join-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(108,71,255,.15); border: 1.5px dashed var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent); margin: 0 auto 1rem;
  transition: background .3s, transform .3s;
}
.team-join-card:hover .team-join-icon {
  background: var(--accent); color: white; transform: rotate(45deg);
}
.team-join-title {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 800; color: white; margin-bottom: .5rem;
}
.team-join-text { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* Responsive team grid */
@media (max-width: 1100px) {
  .team-grid-modern { grid-template-columns: repeat(3, 1fr); }
  .team-card-modern.featured { grid-row: span 1; aspect-ratio: 3/4; }
}
@media (max-width: 768px) {
  .team-grid-modern { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-stats-bar { flex-wrap: wrap; }
  .team-stat-item { flex: 0 0 50%; }
  .team-stat-item:nth-child(3)::before { display: none; }
}
@media (max-width: 460px) {
  .team-grid-modern { grid-template-columns: 1fr; }
  .team-join-card { aspect-ratio: auto; padding: 2rem; }
  .team-card-modern { aspect-ratio: 3/3.5; }
}

