/* ==========================================================================
   ELEVATE STUDIOZ - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  /* Color System */
  --bg-dark: #090a0f;
  --bg-card: rgba(18, 20, 29, 0.7);
  --bg-card-hover: rgba(28, 31, 46, 0.85);
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-border-hover: rgba(99, 102, 241, 0.4);
  
  --text-light: #f3f4f6;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --accent-glow: rgba(99, 102, 241, 0.18);
  
  --success: #10b981;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}

ul {
  list-style: none;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 6rem;
  position: relative;
  z-index: 2;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.font-bold { font-weight: 700; }
.text-xs { font-size: 0.75rem; }
.text-xxs { font-size: 0.65rem; }
.text-accent { color: var(--accent-light); }
.text-subtle { color: var(--text-subtle); }
.justify-center { justify-content: center; }

/* Selection & Ambient Background */
::selection {
  background: var(--accent);
  color: #ffffff;
}

.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.orb-1 {
  top: -150px;
  left: 20%;
  background: radial-gradient(circle, #6366f1, transparent 70%);
}

.orb-2 {
  bottom: 10%;
  right: 5%;
  background: radial-gradient(circle, #a855f7, transparent 70%);
}

/* Glassmorphic Components */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  transition: all var(--tr-smooth);
}

.glass-card:hover {
  border-color: var(--surface-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

/* Section Headings */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  background: rgba(99, 102, 241, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--tr-smooth);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  border: 1px solid var(--surface-border);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--surface-border);
}

.btn-outline:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-block: 1.2rem;
  transition: all var(--tr-smooth);
}

.header.scrolled {
  padding-block: 0.8rem;
  background: rgba(9, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-mark {
  color: var(--accent);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform var(--tr-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
  transition: visibility var(--tr-smooth);
}

.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity var(--tr-smooth);
}

.mobile-drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background: var(--bg-dark);
  border-left: 1px solid var(--surface-border);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--tr-smooth);
}

.mobile-drawer.open .drawer-content {
  transform: translateX(0);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.drawer-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}

.drawer-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: var(--text-muted);
}

/* HERO SECTION */
.hero-section {
  padding-top: 9rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--surface-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.stat-suffix {
  color: var(--accent-light);
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: var(--surface-border);
}

/* Hero Mockup Visual */
.mockup-stack {
  position: relative;
  width: 100%;
}

.mockup-card {
  padding: 0.8rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.primary-mockup {
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.8rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
}

.dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.address-bar {
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  color: var(--text-subtle);
  padding: 0.2rem 1rem;
  border-radius: var(--radius-full);
  width: 100%;
}

.browser-body {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.browser-body img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.mockup-overlay-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(18, 20, 29, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pulse-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: white;
}

.secondary-mockup {
  position: absolute;
  bottom: -25px;
  right: -25px;
  z-index: 3;
  padding: 1rem 1.4rem;
}

.ui-panel-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ui-panel-preview i {
  font-size: 1.5rem;
}

/* TRUST SECTION */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.trust-card {
  padding: 2.2rem;
}

.icon-circle {
  width: 52px;
  height: 52px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--accent-light);
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.trust-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* WORK / PROJECTS SECTION */
.section-head-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--surface-border);
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.filter-btn:hover, .filter-btn.active {
  color: #ffffff;
  background: var(--accent-gradient);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-thumb-frame {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: #111420;
}

.project-thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-smooth);
}

.project-card:hover .project-thumb-frame img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9, 10, 15, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--surface-border);
}

.project-details {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-details h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.project-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

/* Update this in style.css */
.btn-project {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0 0 0;
  border-top: 1px solid var(--surface-border);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-light);
  transition: color var(--tr-fast);
}

.btn-project:hover {
  color: #ffffff;
}

.btn-project i {
  transition: transform var(--tr-fast);
}

.project-card:hover .btn-project i {
  transform: translateX(4px);
}
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.service-card {
  padding: 2.2rem;
}

.service-icon {
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 1.4rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-list li i {
  color: var(--success);
  font-size: 0.75rem;
}

/* INDUSTRIES */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.industry-card {
  padding: 1.6rem;
  cursor: pointer;
  text-align: center;
}

.industry-icon {
  font-size: 1.8rem;
  color: var(--accent-light);
  margin-bottom: 0.8rem;
}

.industry-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.industry-card p {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* PROCESS / TIMELINE */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}

.timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--surface-border);
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.2rem;
  position: relative;
}

.step-badge {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  background: var(--bg-dark);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  z-index: 2;
  box-shadow: 0 0 16px var(--accent-glow);
}

.step-content {
  padding: 1.8rem;
  flex-grow: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.featured-plan {
  border-color: var(--accent);
  box-shadow: 0 0 35px var(--accent-glow);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-light);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-light);
  margin-block: 0.6rem 0.4rem;
}

.plan-price .currency {
  font-size: 1.6rem;
}

.plan-price .term {
  font-size: 0.85rem;
  color: var(--text-subtle);
  font-weight: 400;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.pricing-features li i {
  color: var(--accent-light);
  font-size: 0.8rem;
}

.custom-pricing-banner {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.custom-pricing-banner h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.custom-pricing-banner p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* WHY WORK WITH US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.why-card {
  padding: 2.2rem;
}

.why-icon {
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 4px;
}

.quote-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.client-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.client-role {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--accent-light);
  transition: transform var(--tr-smooth);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-smooth), padding var(--tr-smooth);
  padding-inline: 1.8rem;
}

.faq-answer p {
  padding-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CONTACT SECTION */
.contact-card-wrap {
  padding: 3.5rem;
  border-radius: var(--radius-lg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
}

.contact-heading {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--surface-border);
  transition: all var(--tr-fast);
}

.contact-channel-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--surface-border-hover);
  transform: translateX(4px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: white;
}

.wa-bg { background: #25d366; }
.mail-bg { background: #6366f1; }
.insta-bg { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.channel-title { font-weight: 600; font-size: 0.9rem; }
.channel-detail { font-size: 0.8rem; color: var(--text-subtle); }

/* Form */
.project-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--tr-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 10px var(--accent-glow);
}

.error-msg {
  color: #ef4444;
  font-size: 0.72rem;
  display: none;
}

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #ef4444;
}

.form-group.invalid .error-msg {
  display: block;
}

.form-status {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  z-index: 90;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform var(--tr-smooth);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(9, 10, 15, 0.9);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-fast);
  border: 1px solid var(--surface-border);
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
}

/* PROJECT MODAL */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-smooth);
}

.project-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0d0f17;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  z-index: 2;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close-btn:hover {
  color: white;
}

.modal-header-section {
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.modal-grid-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-block: 1.8rem;
}

.modal-section-block h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.4rem;
}

.modal-section-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-gallery-preview {
  margin-block: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
}

.modal-gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FOOTER */
.main-footer {
  background: #06070a;
  border-top: 1px solid var(--surface-border);
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-top: 0.5rem;
}

.footer-brief {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-block: 1rem 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.footer-socials a:hover { color: var(--accent-light); }

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links-col a:hover {
  color: var(--text-light);
  padding-left: 4px;
}

.footer-email {
  font-weight: 600;
  color: var(--accent-light);
  display: block;
  margin-top: 0.4rem;
}

.domain-info {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin-top: 0.6rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

/* KEYFRAME ANIMATIONS */
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
}

.float-animation {
  animation: floatUp 6s ease-in-out infinite;
}

.float-reverse {
  animation: floatDown 7s ease-in-out infinite;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .hide-mobile {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .section {
    padding-block: 4rem;
  }
  .hero-section {
    padding-top: 6.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-card-wrap {
    padding: 1.8rem;
  }
  .modal-grid-details {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}