/* ============================================
   AliCreationBD - Premium Professional UI
   Updated & Optimized Stylesheet
   ============================================ */

:root {
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-blue: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  --gradient-purple: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);

  --color-primary: #3b82f6;
  --color-primary-dark: #2563eb;
  --color-primary-light: #60a5fa;
  --color-accent: #8b5cf6;
  --color-accent-dark: #7c3aed;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  --color-fiverr: #1dbf73;
  --color-linkedin: #0077b5;
  --color-freelancer: #0e76a8;
  --color-whatsapp: #25d366;
  --color-shopify: #7ab55c;

  --color-dark: #0f172a;
  --color-dark-light: #1e293b;
  --color-dark-lighter: #334155;
  --color-light: #f8fafc;
  --color-light-dark: #f1f5f9;
  --color-white: #ffffff;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-light: #ffffff;
  --text-muted: #94a3b8;

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;

  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 10px 30px rgba(59, 130, 246, 0.3);
  --shadow-accent: 0 10px 30px rgba(139, 92, 246, 0.3);

  --container-width: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 999px;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

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

ul {
  list-style: none;
}

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

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

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.brand-highlight {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--gradient-blue);
  transition: var(--transition-base);
}

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

.nav a:hover::before,
.nav a.active::before {
  width: 100%;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(30, 41, 59, 0.7) 100%);
}

.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.65), transparent);
  top: -180px;
  left: -180px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent);
  bottom: -120px;
  right: -120px;
  animation-delay: 7s;
}

.shape-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.45), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.08); }
  66% { transform: translate(-25px,25px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  color: var(--text-light);
}

.hero-badge,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f0abfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
}

.stat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  color: #60a5fa;
  font-size: 22px;
}

.stat-content h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-light);
}

.stat-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-primary,
.btn-light {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-primary:hover,
.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,255,255,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--text-light);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* ===== COMMON SECTIONS ===== */
.services-section,
.portfolio-section,
.shopify-section,
.why-choose-section,
.testimonial-section,
.faq-section,
.platforms-section,
.about-section,
.values-section,
.services-overview-section,
.blog-section,
.contact-info-section,
.cta-section {
  padding: var(--section-padding) 0;
}

.services-section,
.portfolio-section,
.about-section,
.services-overview-section,
.blog-section,
.contact-info-section,
.platforms-section {
  background: var(--bg-primary);
}

.shopify-section,
.why-choose-section,
.testimonial-section,
.faq-section,
.values-section,
.cta-section {
  background: var(--bg-secondary);
}

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

.section-badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-grid,
.platforms-grid,
.values-grid,
.blog-grid,
.contact-grid,
.features-grid,
.portfolio-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 30px;
}

.services-grid,
.portfolio-grid,
.blog-grid,
.platforms-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.values-grid,
.features-grid,
.testimonial-grid,
.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card,
.platform-card,
.value-card,
.feature-card,
.blog-card,
.contact-info-card,
.portfolio-card,
.testimonial-card,
.faq-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  overflow: hidden;
}

.service-card,
.platform-card,
.value-card,
.feature-card,
.contact-info-card,
.testimonial-card,
.faq-card {
  padding: 36px 30px;
}

.service-card:hover,
.platform-card:hover,
.value-card:hover,
.feature-card:hover,
.blog-card:hover,
.contact-info-card:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.faq-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card.featured {
  background: var(--gradient-blue);
  color: var(--text-light);
  border: none;
  box-shadow: var(--shadow-primary);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-features li,
.service-card.featured .service-link {
  color: var(--text-light);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-icon,
.feature-icon,
.value-icon,
.contact-icon,
.platform-icon,
.expertise-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-base);
}

.service-icon,
.expertise-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: var(--gradient-blue);
  margin-bottom: 24px;
  font-size: 30px;
}

.feature-icon,
.value-icon,
.contact-icon,
.platform-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  font-size: 34px;
  background: var(--gradient-blue);
}

.platform-icon.fiverr-icon { background: var(--color-fiverr); }
.platform-icon.linkedin-icon { background: var(--color-linkedin); }
.platform-icon.freelancer-icon { background: var(--color-freelancer); }

.service-card h3,
.feature-card h3,
.value-card h3,
.platform-card h3,
.contact-info-card h3,
.blog-content h3,
.portfolio-content h3,
.testimonial-author h4,
.faq-card h3,
.expertise-content h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
}

.service-card h3,
.platform-card h3,
.blog-content h3,
.portfolio-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card h3,
.value-card h3,
.contact-info-card h3,
.expertise-content h3,
.faq-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.platform-card p,
.feature-card p,
.value-card p,
.contact-info-card p,
.blog-content p,
.portfolio-content p,
.testimonial-card p,
.faq-card p,
.expertise-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-features,
.shopify-features {
  margin: 20px 0 24px;
}

.service-features li,
.shopify-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-tertiary);
  font-size: 15px;
}

.service-features i,
.shopify-features i {
  color: var(--color-success);
}

.service-link,
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
}

.service-link:hover,
.blog-link:hover {
  gap: 12px;
}

/* ===== PORTFOLIO ===== */
.portfolio-card {
  overflow: hidden;
}

.portfolio-image {
  height: 240px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.06);
}

.portfolio-content {
  padding: 28px;
}

/* ===== SHOPIFY ===== */
.shopify-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.shopify-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shopify-content .section-title,
.shopify-content .section-description {
  text-align: left;
  margin-left: 0;
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
  position: relative;
}

.testimonial-stars {
  color: var(--color-warning);
  font-size: 18px;
  margin-bottom: 18px;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author span {
  color: var(--text-tertiary);
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq-card h3 {
  margin-bottom: 10px;
}

/* ===== ABOUT / EXPERTISE ===== */
.page-hero-section {
  padding: 140px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.15), transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-light);
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

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

.lead-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.image-card {
  background: var(--gradient-blue);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  color: var(--text-light);
  box-shadow: var(--shadow-primary);
}

.image-card i {
  font-size: 80px;
  margin-bottom: 24px;
}

.image-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}

.image-card p {
  color: rgba(255,255,255,0.92);
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.expertise-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.expertise-item:hover {
  transform: translateX(10px);
  background: var(--bg-primary);
  box-shadow: var(--shadow-lg);
}

/* ===== BLOG ===== */
.blog-image {
  height: 220px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-image i {
  font-size: 60px;
  color: rgba(255,255,255,0.92);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.blog-meta i {
  color: var(--color-primary);
}

/* ===== PLATFORMS ===== */
.platform-card {
  text-align: center;
}

.platform-stats {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}

.platform-stats .stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 600;
}

.platform-stats .stat i {
  color: var(--color-warning);
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--text-light);
}

.fiverr-btn { background: var(--color-fiverr); }
.linkedin-btn { background: var(--color-linkedin); }
.freelancer-btn { background: var(--color-freelancer); }

.fiverr-btn:hover,
.linkedin-btn:hover,
.freelancer-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== CTA ===== */
.cta-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-2xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.25), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.25), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  font-size: 46px;
  color: var(--text-light);
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-dark);
  color: var(--text-muted);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  margin: 16px 0 20px;
  color: var(--text-muted);
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.footer-links li,
.footer-services li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--color-primary);
  width: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  margin-bottom: 8px;
}

.footer-bottom i {
  color: var(--color-danger);
}

/* ===== SCROLL BUTTON ===== */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--text-light);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.scroll-top.active,
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ===== ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show,
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 46px; }
  .section-title { font-size: 40px; }
  .about-content-grid,
  .shopify-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .page-hero-section {
    padding: 100px 0 60px;
  }

  .hero-title { font-size: 36px; }
  .hero-description { font-size: 17px; }
  .section-title { font-size: 32px; }
  .section-description { font-size: 16px; }

  .services-section,
  .portfolio-section,
  .shopify-section,
  .why-choose-section,
  .testimonial-section,
  .faq-section,
  .platforms-section,
  .about-section,
  .values-section,
  .services-overview-section,
  .blog-section,
  .contact-info-section,
  .cta-section {
    padding: var(--section-padding-mobile) 0;
  }

  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    gap: 16px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .cta-card {
    padding: 56px 24px;
  }

  .cta-card h2 {
    font-size: 30px;
  }

  .expertise-item {
    flex-direction: column;
    text-align: center;
  }

  .expertise-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 28px; }
  .page-hero-content h1 { font-size: 34px; }
  .cta-card h2 { font-size: 26px; }
}
/* ===== UPGRADE PACK ===== */

/* Loader */
.loader-wrap {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 50%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrap.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  text-align: center;
  color: #fff;
}

.loader-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  animation: pulseLogo 1.6s infinite ease-in-out;
}

.loader-box p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 24px 50px rgba(0,0,0,0.28);
  }
}

/* Improved Header */
.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: var(--gradient-blue);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Better buttons */
.btn {
  box-shadow: var(--shadow-md);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

/* Hero visual polish */
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(248,250,252,1), rgba(248,250,252,0));
  z-index: 1;
}

.hero-content {
  z-index: 3;
}

.hero-title {
  text-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-stats .stat-item {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Service card polish */
.service-card {
  position: relative;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(59,130,246,0.04));
  transition: 0.3s ease;
}

.service-card:hover::after {
  height: 100%;
}

/* Portfolio premium hover */
.portfolio-card {
  position: relative;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.08));
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

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

/* Testimonial polish */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  line-height: 1;
  color: rgba(59,130,246,0.08);
  font-family: Georgia, serif;
}

/* FAQ card polish */
.faq-card {
  border-left: 4px solid transparent;
}

.faq-card:hover {
  border-left-color: var(--color-primary);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  background: #1fb557;
}

/* better fade */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Mobile nav */
@media (max-width: 768px) {
  .header-wrap {
    flex-direction: row;
    align-items: center;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 10px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 86px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .scroll-top {
    right: 18px;
    bottom: 20px;
  }
}