﻿/* Main styles for Ashik portfolio */

:root {
  --white: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-card: rgba(255, 255, 255, 0.85);
  --navy: #0f172a;
  --blue-1: #2563eb;
  --blue-2: #06b6d4;
  --grad: linear-gradient(135deg, #2563eb, #06b6d4);
  --grad-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
  --shadow-sm: 0 2px 16px rgba(37, 99, 235, 0.07);
  --shadow-md: 0 8px 40px rgba(37, 99, 235, 0.12);
  --shadow-lg: 0 20px 80px rgba(37, 99, 235, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.8;
  font-size: 18px;
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--grad);
  border-radius: 3px;
}

/* ===== TYPOGRAPHY ===== */

.display {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}

.heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

/* Responsive typography */

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

/* ===== NAVBAR ===== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(37, 99, 235, 0.08);
  padding: 12px 20px;
}

.nav-logo {
  width: 160px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--blue-1);
  background: rgba(37, 99, 235, 0.06);
}

.nav-links a.active {
  color: var(--blue-1);
  background: rgba(37, 99, 235, 0.08);
}

.btn-hire {
  background: var(--grad);
  color: white;
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-hire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 5%;
  width: 34px;
  height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close::before,
.mobile-close::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.mobile-close:hover {
  color: var(--blue-1);
}

/* ===== BUTTONS ===== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue-1);
  border: 2px solid rgba(37, 99, 235, 0.25);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: var(--blue-1);
  transform: translateY(-2px);
}

/* ===== BADGE ===== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--blue-1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3)
  }
}

/* ===== HERO ===== */

#home {
  min-height: 100vh;
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 60%), radial-gradient(ellipse at 30% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#home::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content .badge {
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-canvas {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 5 / 6;
  position: relative;
  border-radius: 28px;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(37, 99, 235, 0.08), transparent 60%), radial-gradient(ellipse at 30% 70%, rgba(6, 182, 212, 0.08), transparent 60%);
}

.owner-hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Floating Cards in Hero */

.float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  animation: floatY 3s ease-in-out infinite;
}

.float-card.card1 {
  top: 30px;
  left: -20px;
  animation-delay: 0s;
}

.float-card.card2 {
  bottom: 60px;
  right: -20px;
  animation-delay: 1s;
}

.float-card.card3 {
  top: 50%;
  left: -30px;
  animation-delay: 1.5s;
  transform: translateY(-50%);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-10px)
  }
}

.float-card.card3 {
  animation: floatY3 3.5s ease-in-out infinite;
}

@keyframes floatY3 {
  0%,
  100% {
    transform: translateY(-50%)
  }
  50% {
    transform: translateY(calc(-50% - 10px))
  }
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.fc-icon.blue {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
}

.fc-icon.green {
  background: rgba(16, 185, 129, 0.12);
}

.fc-icon.orange {
  background: rgba(245, 158, 11, 0.12);
}

/* Central mockup */

.mockup-center {
  width: 280px;
  height: 320px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  overflow: hidden;
  position: relative;
}

.mockup-header {
  height: 44px;
  background: var(--grad);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-content {
  padding: 20px;
}

.mockup-line {
  height: 10px;
  border-radius: 5px;
  margin-bottom: 12px;
}

.mockup-line.full {
  background: #f1f5f9;
  width: 100%;
}

.mockup-line.short {
  background: #e2e8f0;
  width: 70%;
}

.mockup-line.shorter {
  background: #e2e8f0;
  width: 50%;
}

.mockup-img-block {
  height: 100px;
  border-radius: 12px;
  margin: 16px 0;
  background: linear-gradient(135deg, #dbeafe, #cffafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.mockup-tags {
  display: flex;
  gap: 8px;
}

.mockup-tag {
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--grad);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
}

/* ===== CONTAINER 1200px ===== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* All sections constrain content to 1200px */

section>.section-header,
section>.specialty-grid,
section>.portfolio-grid,
section>.aplus-portfolio-grid,
section>.designer-grid,
section>.about-grid,
section>.contact-grid,
section>.testi-grid,
section>.faq-list,
section>div:not(.gradient-section) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

section>.section-header {
  max-width: 1200px;
}

footer>.footer-top,
footer>.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SECTION COMMON ===== */

section {
  padding: 100px 20px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-1);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  color: #64748b;
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===== TRUSTED ===== */

#trusted {
  background: var(--bg-soft);
  padding: 60px 5%;
  text-align: center;
}

.trusted-label {
  font-size: 0.82rem;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
}

.trusted-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.trusted-logos {
  display: flex;
  gap: 14px;
  align-items: stretch;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trusted-logos::-webkit-scrollbar {
  display: none;
}

.trust-logo {
  flex: 0 0 calc((100% - 70px) / 6);
  min-width: 145px;
  height: 74px;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.06);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #1f2a44;
  letter-spacing: -0.03em;
  transition: all 0.3s ease;
  cursor: default;
  scroll-snap-align: start;
}

.trust-logo::first-letter {
  color: var(--blue-1);
}

.trust-logo:hover {
  color: var(--blue-1);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.trusted-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50%;
  background: white;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  transition: all 0.3s ease;
}

.trusted-arrow:hover {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

.trusted-arrow.prev {
  left: -18px;
}

.trusted-arrow.next {
  right: -18px;
}

/* ===== SPECIALTIES ===== */

#specialties {
  background: white;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.specialty-card {
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.specialty-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.4s;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.specialty-card:hover::before {
  opacity: 1;
}

.sc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  position: relative;
  color: var(--blue-1);
}

.sc-icon i {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sc-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.sc-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
}

/* ===== PRODUCTS DESIGN ===== */

#products {
  background: var(--bg-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  grid-template-rows: 260px 260px 260px;
  gap: 16px;
}

/* Layout matching screenshot exactly */

.portfolio-item {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.portfolio-item:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.55);
  outline-offset: 4px;
}

/* Grid placement matching screenshot */

.pi-1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* tall left col — skincare */

.pi-2 {
  grid-column: 2;
  grid-row: 1;
}

/* wide center top — earbuds */

.pi-3 {
  grid-column: 3;
  grid-row: 1;
}

/* top right — coffee */

.pi-4 {
  grid-column: 2;
  grid-row: 2;
}

/* center mid — smartwatch */

.pi-5 {
  grid-column: 3;
  grid-row: 2 / 4;
}

/* right tall — perfume */

.pi-6 {
  grid-column: 1 / 3;
  grid-row: 3;
}

/* wide bottom left — fitness */

/* Background image fill */

.pi-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .pi-bg {
  transform: scale(1.06);
}

/* Dark overlay gradient at bottom for text readability */

.pi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 30, 0.72) 0%, rgba(5, 10, 30, 0.18) 45%, transparent 70%);
  transition: opacity 0.4s;
}

/* Category badge top-left */

.pi-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #0f172a;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Title bottom-left */

.pi-title {
  position: absolute;
  bottom: 52px;
  left: 18px;
  right: 52px;
  z-index: 3;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  line-height: 1.3;
}

/* Arrow button bottom-right */

.pi-arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.pi-arrow:hover {
  background: var(--grad);
  color: white;
  transform: scale(1.12);
}

/* Responsive */

/* ===== A PLUS CONTENT ===== */

#aplus {
  background: var(--bg-soft);
}

.aplus-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.aplus-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(37, 99, 235, 0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.aplus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.aplus-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #e2e8f0;
  transition: transform 0.5s ease;
}

.aplus-card:hover .aplus-card-img {
  transform: scale(1.04);
}

.aplus-card-img-wrap {
  overflow: hidden;
  height: 240px;
}

.aplus-card-foot {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aplus-card-info {}

.aplus-card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.aplus-card-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

.aplus-card-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.aplus-card:hover .aplus-card-arrow {
  transform: scale(1.1) rotate(45deg);
}

.aplus-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 48px;
}

.aplus-tag {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  color: var(--blue-1);
  font-size: 0.82rem;
  font-weight: 600;
  background: white;
  transition: all 0.3s ease;
}

.aplus-tag:hover {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

/* ===== STOREFRONT ===== */

#storefront {
  background: var(--bg-soft);
}

.storefront-showcase {
  position: relative;
  margin-top: 48px;
}

.store-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.store-carousel::-webkit-scrollbar {
  display: none;
}

.store-card {
  flex: 0 0 calc((100% - 24px) / 2);
  max-width: calc((100% - 24px) / 2);
  min-width: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  scroll-snap-align: start;
  transition: all 0.4s ease;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Scroll-on-hover image container */

.store-header {
  height: 420px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #e2e8f0;
}

.store-header img {
  width: 100%;
  /* tall enough to show full-page scroll */
  height: auto;
  min-height: 220px;
  display: block;
  object-fit: cover;
  object-position: top;
  transform: translateY(0);
  /* slow scroll on hover — duration set via JS per image height */
  transition: transform 4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.store-header:hover img {
  /* JS sets this dynamically based on actual image height */
  transform: var(--scroll-to, translateY(-60%));
}

/* Fallback emoji display when no image */

.store-header-emoji {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Hover overlay hint */

.store-header::after {
  content: '↕ Hover to preview';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.65);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.store-header:hover::after {
  opacity: 0;
}

.store-info {
  padding: 24px;
}

.store-info h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.store-info p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.store-tag {
  padding: 4px 12px;
  background: var(--grad-soft);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-1);
}

.carousel-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--blue-1);
}

.carousel-btn:hover {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

/* ===== DESIGNER ===== */

#designer {
  background: white;
}

.designer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.skills-section h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 28px;
}

.skill-item {
  margin-bottom: 22px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.skill-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.skill-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-1);
}

.skill-bar {
  height: 8px;
  background: var(--bg-soft);
  border-radius: 50px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 50px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.tool-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tool-card:hover {
  background: white;
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-sm);
}

.tool-icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tool-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.tool-level {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* Timeline */

.timeline {
  margin-top: 32px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-1), var(--blue-2));
}

.tl-item {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  position: relative;
}

.tl-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.tl-content {}

.tl-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tl-role {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin: 4px 0;
}

.tl-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

/* ===== ABOUT ===== */

#about {
  background: var(--bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.about-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
}

.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
  overflow: hidden;
  padding: 4px;
}

.about-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-card h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  text-align: center;
}

.about-card .role {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-1);
  margin: 6px 0 20px;
}

.about-divider {
  height: 1px;
  background: var(--bg-soft);
  margin: 20px 0;
}

.about-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 8px 0;
}

.about-info-row span:first-child {
  color: #94a3b8;
  font-weight: 500;
}

.about-info-row span:last-child {
  color: var(--navy);
  font-weight: 600;
}

.about-contact-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  width: 100%;
  margin-top: 20px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 50px;
  background: var(--grad);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
  animation: contactBtnFloat 2.4s ease-in-out infinite, contactBtnPulse 2.4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-contact-btn::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -35%;
  width: 22%;
  height: 180%;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(5px);
  transform: rotate(20deg);
  animation: contactBtnShine 2.6s ease-in-out infinite;
}

.about-contact-btn:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.38);
}

@keyframes contactBtnFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes contactBtnPulse {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
  }
  50% {
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.42);
  }
}

@keyframes contactBtnShine {
  0% {
    left: -35%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  48%,
  100% {
    left: 120%;
    opacity: 0;
  }
}

.about-text h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.mission-card {
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: white;
}

.mission-card h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mission-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-stat {
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.about-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */

#testimonials {
  background: white;
}

.testi-slider {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testi-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testi-grid::-webkit-scrollbar {
  display: none;
}

.testi-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  min-height: 190px;
  flex-direction: column;
  padding: 22px 20px;
  border: 1px solid rgba(37, 99, 235, 0.04);
  border-radius: 12px;
  background: #f3f5f7;
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.testi-card.is-active {
  border-color: rgba(79, 70, 229, 0.12);
  background: #eaf0ff;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.1);
}

.testi-card:hover {
  background: white;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.testi-quote {
  display: none;
}

.testi-text {
  order: 1;
  margin-bottom: 24px;
  color: #313b4a;
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.65;
}

.testi-author {
  display: flex;
  order: 2;
  margin-top: auto;
  align-items: center;
  gap: 12px;
  padding-right: 108px;
}

.testi-avatar {
  display: flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #dbe3ef;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.testi-role {
  color: #5149d8;
  font-size: 0.62rem;
  line-height: 1.4;
}

.stars {
  position: absolute;
  right: 18px;
  bottom: 32px;
  order: 3;
  color: #f59e0b;
  font-size: 0.84rem;
  letter-spacing: 2px;
  line-height: 1;
}

/* ===== FAQ ===== */

#faq {
  background: var(--bg-soft);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 99, 235, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.3s;
}

.faq-item.open .faq-question {
  color: var(--blue-1);
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.3s;
  color: var(--blue-1);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.8;
}

/* ===== CONTACT ===== */

#contact {
  background: #f4f7fc;
  padding-top: 96px;
  padding-bottom: 100px;
}

#contact.gradient-section::before {
  background: radial-gradient(circle at 88% 16%, rgba(37, 99, 235, 0.08), transparent 24%), radial-gradient(circle at 12% 84%, rgba(6, 182, 212, 0.04), transparent 28%);
}

.contact-header,
.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.contact-header .section-label {
  width: max-content;
  margin: 0 auto 18px;
  padding: 6px 16px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.contact-header .section-label::before {
  display: none;
}

.contact-header h2 {
  margin-bottom: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.18;
}

.contact-header p {
  color: #5f7494;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.contact-copy h3 {
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.contact-copy>p {
  max-width: 540px;
  margin-bottom: 30px;
  color: #627797;
  font-size: 0.94rem;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 15px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
}

.cd-icon {
  display: flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-size: 1rem;
}

.cd-label {
  color: #88a0c2;
  font-size: 0.72rem;
  line-height: 1.25;
}

.cd-value {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

a.cd-value {
  text-decoration: none;
}

a.cd-value:hover {
  color: var(--primary);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.contact-social a,
.footer-social a {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe5f2;
  border-radius: 50%;
  color: #6980a4;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social a:hover,
.footer-social a:hover {
  border-color: transparent;
  background: var(--grad);
  color: white;
  transform: translateY(-2px);
}

.contact-form {
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #425572;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d9e3f1;
  border-radius: 50px;
  outline: none;
  background: white;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 106px;
  border-radius: 16px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-1);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* ===== FOOTER ===== */

footer {
  padding: 48px 20px 22px;
  background: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 38px;
}

.footer-brand p {
  max-width: 290px;
  margin-top: 12px;
  color: #607596;
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col h4 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-col ul a {
  color: #607596;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--blue-1);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
}

.footer-status {
  margin-top: 16px;
  color: #8ca0be;
  font-size: 0.7rem;
  line-height: 1.65;
}

.footer-online {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00a83e;
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-online::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0bc94d;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #e5edf6;
}

.footer-bottom p,
.footer-legal a {
  color: #8ba0bf;
  font-size: 0.7rem;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a:hover {
  color: var(--blue-1);
}

/* ===== WHATSAPP FLOAT ===== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: waBounce 2s ease-in-out infinite 3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waBounce {
  0%,
  100% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.08)
  }
}

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 96px;
  z-index: 998;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 50%;
  background: white;
  color: var(--blue-1);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--grad);
  color: white;
  transform: translateY(-3px);
}

/* ===== REVEAL ANIMATIONS ===== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== GRADIENT BG SECTIONS ===== */

.gradient-section {
  position: relative;
  overflow: hidden;
}

.gradient-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.04), transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.04), transparent 50%);
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */

/* ===== TEAM MEMBERS ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

#team>.team-grid {
  max-width: 1000px;
}

.profile-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #e5e7eb;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.profile-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

.profile-card .img {
  width: 100%;
  /* height: 100%; */
}

.profile-card .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.27), transparent 48%);
  pointer-events: none;
}

.profile-card img {
  display: block;
  width: 100%;
  /* height: 100%; */

  filter: grayscale(1);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.profile-card:hover img {
  transform: scale(1.07);
  filter: grayscale(0.25);
}

.caption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  padding: 2px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(118, 126, 139, 0.54);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.13);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.35s ease, transform 0.35s ease;
  height: 51px;
}

.profile-card:hover .caption {
  background: rgba(82, 94, 112, 0.66);
  transform: translateY(-2px);
}

.caption h3 {
  margin: 0;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.35;
}

.caption p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  line-height: 1.35;
}

/* ===== FORM (EmailJS) ===== */

#contactForm input,
#contactForm textarea,
#contactForm select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d9e3f1;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: var(--navy);
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
  border-color: var(--blue-1);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#contactForm .is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

#contactForm textarea {
  min-height: 106px;
  border-radius: 16px;
  resize: vertical;
}

#submitBtn {
  width: 100%;
  padding: 13px;
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  background: var(--grad);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#submitBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.25);
}

#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#formMsg {
  margin: 14px 0;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

#formMsg.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

#formMsg.error {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
