/* ========================================================
   مكتب حرفوش - للدعاية والإعلان والمطابع
   Modern Responsive Stylesheet (Arabic RTL)
   ======================================================== */

:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #e0e7ff;
  --secondary: #0284c7;
  --accent: #d97706;
  --success: #10b981;
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --white: #ffffff;
  --font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.dir-ltr { direction: ltr; text-align: left; }
.font-mono { font-family: monospace; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* Gradient backgrounds */
.bg-gradient-indigo { background: linear-gradient(135deg, #4f46e5, #312e81); }
.bg-gradient-sky { background: linear-gradient(135deg, #0284c7, #0369a1); }
.bg-gradient-amber { background: linear-gradient(135deg, #d97706, #b45309); }
.bg-gradient-emerald { background: linear-gradient(135deg, #059669, #047857); }
.bg-gradient-rose { background: linear-gradient(135deg, #e11d48, #be123c); }
.bg-gradient-violet { background: linear-gradient(135deg, #7c3aed, #5b21b6); }

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.3;
  color: var(--dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--slate-200);
}

.btn-outline:hover {
  background-color: var(--slate-100);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
}

.btn-store {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: var(--white);
}

.btn-store:hover {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #312e81, #4f46e5);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.bar-link {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: 800;
  transition: var(--transition);
}

.bar-link:hover {
  color: var(--white);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--slate-600);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-highlight {
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--slate-200);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-size: 18px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 70px 0 60px;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.06) 0%, transparent 60%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.25;
}

.gradient-text {
  background: linear-gradient(135deg, #4f46e5 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 16px;
  color: var(--slate-600);
  margin-bottom: 30px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: var(--slate-600);
  font-weight: 700;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--slate-200);
}

/* Hero Visual Graphic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-card-main {
  position: relative;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-graphic {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-circle {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: rotateCircle 25s linear infinite;
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.graphic-icon-center {
  font-size: 54px;
  color: #38bdf8;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.6));
}

.orbiting-icons .orb {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.orb-1 { top: -20px; left: 68px; background: #4f46e5; }
.orb-2 { right: -20px; top: 68px; background: #0284c7; }
.orb-3 { bottom: -20px; left: 68px; background: #d97706; }
.orb-4 { left: -20px; top: 68px; background: #10b981; }

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  z-index: 2;
  font-size: 12px;
}

.floating-badge strong { display: block; color: var(--dark); font-size: 13px; }
.floating-badge small { color: var(--slate-600); }

.badge-1 {
  top: -15px;
  right: -25px;
  animation: floatY 4s ease-in-out infinite;
}

.badge-1 i { color: #f59e0b; font-size: 20px; }

.badge-2 {
  bottom: -15px;
  left: -25px;
  animation: floatY 4.5s ease-in-out infinite reverse;
}

.badge-2 i { color: #e11d48; font-size: 20px; }

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

/* Common Section Styles */
.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 15px;
  color: var(--slate-600);
}

.section-header {
  margin-bottom: 50px;
}

/* About Section */
.about {
  background: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.about-image-wrapper {
  position: relative;
}

.about-card {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.about-card-icon {
  font-size: 50px;
  color: #38bdf8;
  margin-bottom: 20px;
}

.about-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--slate-400);
  font-size: 14px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-box h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 13px;
  color: var(--slate-600);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--accent, var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 18px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--slate-100);
  padding-top: 14px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-800);
  font-weight: 600;
  margin-bottom: 8px;
}

.service-list li i {
  color: var(--success);
  font-size: 12px;
}

/* Portfolio Section */
.portfolio {
  background: var(--white);
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-600);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.item-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
}

.placeholder-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.item-icon {
  font-size: 64px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  transition: var(--transition);
}

.item-tag {
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 8px;
}

.item-title {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.item-desc {
  color: var(--slate-200);
  font-size: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.item-view-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  border: none;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition);
  font-family: var(--font-family);
}

.item-view-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Store Banner Section */
.store-banner-section {
  padding: 50px 0;
}

.store-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 40px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.store-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.3);
  border: 1px solid rgba(99, 102, 241, 0.5);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.store-content h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.store-content p {
  color: var(--slate-300);
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.8;
}

.store-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #e0e7ff;
  font-weight: 600;
}

.sf-item i {
  color: #38bdf8;
}

.store-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-store-large {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  transition: var(--transition);
}

.btn-store-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.store-subtext {
  font-size: 12px;
  color: var(--slate-400);
}

.store-qr-display {
  display: flex;
  justify-content: center;
}

.qr-frame {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.qr-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.qr-image-box {
  background: #f8fafc;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  margin-bottom: 8px;
}

.qr-image-box img {
  display: block;
}

.qr-url {
  font-family: monospace;
  font-size: 11px;
  font-weight: 800;
  color: var(--slate-600);
  direction: ltr;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 13px;
  color: var(--slate-600);
  margin-bottom: 6px;
}

.info-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.quote-form-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
}

.quote-form-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.quote-form-card > p {
  font-size: 13px;
  color: var(--slate-600);
  margin-bottom: 22px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--slate-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-800);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

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

/* Footer */
.footer {
  background: var(--dark);
  color: var(--slate-400);
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-title {
  color: var(--white);
  font-size: 20px;
  display: inline-block;
  margin: 12px 0 8px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-right: 4px;
}

.footer-contact p {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--slate-300);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 22px 0;
  font-size: 12px;
}

.bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.sub-credit {
  color: var(--slate-400);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.modal-header {
  padding: 24px 24px 12px;
}

.modal-category {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
}

.modal-title {
  font-size: 18px;
  margin-top: 4px;
}

.modal-body {
  padding: 0 24px 20px;
}

.modal-placeholder-preview {
  height: 200px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}

.modal-preview-icon {
  font-size: 54px;
}

.modal-desc {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.7;
}

.modal-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--slate-100);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
}

.float-wa {
  background: #25d366;
}

.float-store {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-tooltip {
  position: absolute;
  left: 64px;
  background: var(--dark);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* Responsive Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .about-container {
    grid-template-columns: 1fr;
  }
  .store-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .store-features {
    align-items: center;
  }
  .store-cta-group {
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-actions .btn-store {
    display: none;
  }
  .hero-title {
    font-size: 30px;
  }
  .section-title {
    font-size: 26px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

