/* ============================================
   SEO KARACHI — Design System & Styles
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors — Light & Warm Professional */
  --bg-primary: #fafbff;
  --bg-secondary: #f1f3f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --border-glass: rgba(99, 102, 241, 0.1);
  --border-subtle: rgba(0, 0, 0, 0.06);

  --text-primary: #1e1b4b;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;

  --accent-primary: #6366f1;
  --accent-secondary: #4f46e5;
  --accent-tertiary: #8b5cf6;
  --accent-glow: rgba(99, 102, 241, 0.1);
  --accent-glow-strong: rgba(99, 102, 241, 0.18);

  --gradient-accent: linear-gradient(135deg, #6366f1, #a855f7);
  --gradient-hero: linear-gradient(135deg, #eef2ff 0%, #faf5ff 50%, #fff7ed 100%);
  --gradient-card: linear-gradient(145deg, #ffffff, #f8fafc);
  --gradient-warm: linear-gradient(135deg, #f97316, #ef4444);

  --green-accent: #10b981;
  --whatsapp-green: #25d366;
  --upwork-green: #14a800;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 8px 32px rgba(99, 102, 241, 0.1);
  --shadow-glow-lg: 0 16px 48px rgba(99, 102, 241, 0.12);
  --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-secondary);
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---- Utility Classes ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 4px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(99, 102, 241, 0.04);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  color: #fff;
}

/* ---- Glass Card ---- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: var(--border-glass);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ==============================
   NAVIGATION
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo:hover { color: var(--text-primary); }

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ---- Nav Dropdown Mega Menu ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 2px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--text-primary);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown.open .nav-dropdown-trigger::after {
  width: 100%;
}

.nav-chevron {
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu Panel */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(99, 102, 241, 0.04);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-base);
  z-index: 1001;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Wide variant for Informational Clusters (2 columns) */
.nav-dropdown-menu--wide {
  min-width: 520px;
  padding: 12px;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* Dropdown Item */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
}

/* Override the nav-links a::after underline for dropdown items */
.nav-dropdown-item::after {
  display: none !important;
}

.nav-dropdown-item:hover {
  background: rgba(99, 102, 241, 0.06);
  color: var(--text-primary);
}

.ndi-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.nav-dropdown-item:hover .ndi-icon {
  background: rgba(99, 102, 241, 0.1);
}

.ndi-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ndi-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  white-space: nowrap;
}

.ndi-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.92;
}

/* Floating grid — subtle on light */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  display: none;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  z-index: 1;
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-primary);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-tertiary);
  bottom: 20%;
  left: 5%;
  animation-delay: -3s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.hero-stat {
  position: relative;
}

.hero-stat::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border-glass);
}

.hero-stat:last-child::after { display: none; }

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-portrait {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.hero-portrait img {
  width: 100%;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-portrait::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-accent);
  border-radius: calc(var(--radius-xl) + 3px);
  z-index: 1;
  opacity: 0.4;
}

.hero-portrait::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: rgba(99, 102, 241, 0.12);
  filter: blur(30px);
  border-radius: 50%;
  z-index: 0;
}

/* Floating cards */
.floating-card {
  position: absolute;
  z-index: 3;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: float-card 5s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card-1 {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: -2s;
}

.floating-card-3 {
  bottom: 5%;
  right: 10%;
  animation-delay: -4s;
}

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

.floating-card .fc-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.floating-card .fc-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-card .fc-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==============================
   SERVICES SECTION
   ============================== */
.services {
  padding: var(--section-padding);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--transition-base);
}

.service-card:hover .service-icon {
  background: rgba(99, 102, 241, 0.12);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==============================
   ABOUT / EXPERT SECTION
   ============================== */
.about {
  padding: var(--section-padding);
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-highlight {
  padding: 20px;
  background: rgba(99, 102, 241, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.about-highlight:hover {
  border-color: var(--border-glass);
  background: rgba(99, 102, 241, 0.06);
}

.about-highlight .ah-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.about-highlight .ah-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-highlight .ah-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.about-experience-badge .aeb-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-experience-badge .aeb-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==============================
   PROJECTS SECTION
   ============================== */
.projects {
  padding: var(--section-padding);
  position: relative;
  background: var(--bg-secondary);
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-header .section-subtitle {
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-card-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.project-card:hover .project-card-thumbnail img {
  transform: scale(1.05);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.85) 100%);
}

.project-card-body {
  padding: 24px;
}

.project-card-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.project-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-card-results {
  display: flex;
  gap: 20px;
}

.project-result {
  display: flex;
  flex-direction: column;
}

.project-result .pr-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-accent);
}

.project-result .pr-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==============================
   UPWORK SECTION
   ============================== */
.upwork {
  padding: var(--section-padding);
  position: relative;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 30%, #f0fdfa 60%, #f5f3ff 100%);
}

.upwork .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.upwork-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.upwork-left-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.upwork-trust-section {
  margin-top: 8px;
}

.upwork-trust-section .section-subtitle {
  margin-bottom: 0;
}

.upwork-profile-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.upwork-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--upwork-green), var(--green-accent));
}

.upwork-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.upwork-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--upwork-green);
}

.upwork-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.upwork-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.upwork-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(20, 168, 0, 0.1);
  border: 1px solid rgba(20, 168, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--upwork-green);
  margin-top: 6px;
}

.upwork-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.upwork-stat {
  text-align: center;
  padding: 14px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.upwork-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.upwork-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.upwork-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.upwork-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.upwork-rating-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.upwork-rating-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-left: auto;
}

.btn-upwork {
  background: var(--upwork-green);
  color: #fff;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(20, 168, 0, 0.2);
}

.btn-upwork:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(20, 168, 0, 0.3);
  color: #fff;
}

.upwork-content .section-subtitle,
.upwork-trust-section .section-subtitle {
  margin-bottom: 24px;
}

.upwork-testimonials {
  margin-top: 24px;
}

.testimonial-card {
  padding: 24px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--accent-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-info .ta-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-author-info .ta-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==============================
   SEO COST CALCULATOR
   ============================== */
.seo-calculator-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.seo-calculator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.calc-header {
  text-align: center;
  margin-bottom: 28px;
}

.calc-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.calc-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.calc-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.calc-input,
.calc-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  transition: all var(--transition-base);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.calc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236366f1' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.calc-input:focus,
.calc-select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.calc-input::placeholder {
  color: var(--text-muted);
}

.calc-result {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.calc-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
}

.calc-result-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.calc-result-value {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.calc-result-value.updated {
  animation: pulse-price 0.4s ease;
}

@keyframes pulse-price {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.calc-result-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

.calc-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

/* ==============================
   VIDEO REELS SECTION
   ============================== */
.reels {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.reels-header {
  text-align: center;
  margin-bottom: 60px;
}

.reels-header .section-subtitle {
  margin: 0 auto;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.reel-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.reel-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, rgba(168, 85, 247, 0.06) 100%);
}

.reel-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  border: 2px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.reel-card:hover .reel-play-btn {
  background: rgba(99, 102, 241, 0.18);
  border-color: var(--accent-primary);
  transform: scale(1.1);
}

.reel-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-primary);
  margin-left: 3px;
}

.reel-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 0 12px;
  color: var(--text-secondary);
}

.reel-card-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-card-meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==============================
   LOCAL MAP SECTION
   ============================== */
.local-map {
  padding: var(--section-padding);
  position: relative;
}

.local-map .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
  align-items: start;
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: none;
}

.address-content {
  padding-top: 20px;
  grid-row: 1 / 3;
}

.address-card {
  padding: 32px;
  margin-bottom: 24px;
}

.address-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.address-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.address-item:last-child { margin-bottom: 0; }

.address-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.address-item-text {
  display: flex;
  flex-direction: column;
}

.address-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 2px;
}

.address-item-value {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.business-hours {
  padding: 32px;
}

.business-hours h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.hours-item .day {
  color: var(--text-secondary);
}

.hours-item .time {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-item.active .day,
.hours-item.active .time {
  color: var(--accent-primary);
}

/* ==============================
   SOCIAL / FOOTER SECTION
   ============================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

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

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.social-icon:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: var(--border-glass);
  color: var(--accent-primary);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--accent-primary);
  padding-left: 6px;
}

.footer-newsletter p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer-newsletter-form input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.footer-newsletter-form button {
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
}

.footer-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent-primary);
}

/* ==============================
   WHATSAPP FLOATING BUTTON
   ============================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float-tooltip {
  padding: 10px 18px;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

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

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ==============================
   BACK TO TOP BUTTON
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.back-to-top:active {
  transform: translateY(-1px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .upwork .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .seo-calculator-card {
    order: 2;
  }

  .upwork-content {
    order: 1;
  }

  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .local-map .container {
    grid-template-columns: 1fr;
  }

  .local-map .address-content {
    grid-row: auto;
  }

  .local-map .business-hours {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    overflow-y: auto;
    padding: 80px 24px 40px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links > a {
    font-size: 1.1rem;
  }

  /* Mobile dropdown overrides */
  .nav-dropdown {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .nav-dropdown-trigger {
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
    padding: 10px 0;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: none;
    padding: 4px;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease, max-height 0.4s ease;
  }

  .nav-dropdown-menu::before { display: none; }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  /* Don't open on hover in mobile, only on click */
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-dropdown:hover .nav-chevron { transform: none; }
  .nav-dropdown:hover .nav-dropdown-trigger { color: var(--text-secondary); }
  .nav-dropdown:hover .nav-dropdown-trigger::after { width: 0; }
  .nav-dropdown.open:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown.open:hover .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown.open:hover .nav-dropdown-trigger { color: var(--text-primary); }

  .nav-dropdown-menu--wide {
    min-width: 100%;
  }

  .nav-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-item {
    padding: 10px 12px;
    justify-content: flex-start;
  }

  .ndi-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .ndi-title { font-size: 0.85rem; }
  .ndi-desc { font-size: 0.7rem; }

  .nav-mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

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

  .hero-stat::after { display: none; }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .upwork-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .calc-result-value {
    font-size: 1.6rem;
  }

  .calc-title {
    font-size: 1.2rem;
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .floating-card {
    display: none;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float-tooltip { display: none; }

  .back-to-top {
    bottom: 82px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .whatsapp-float-btn {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .reels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.35);
}

/* FAQ Accordion Styles */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary span { transform: rotate(45deg); display: inline-block; }
.faq-item summary span { transition: transform 0.3s ease; display: inline-block; }


