/*
Theme Name: Shopla
Theme URI: https://www.shopla.shakedeal.co.il/
Author: Tiran Moyal
Author URI: https://www.shopla.shakedeal.co.il/
Description: Custom Design Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Online Shop, technology
Text Domain: shopla
*/

/* ========================================
   TechFlow - Global Stylesheet
   ======================================== */

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

body {
  min-height: 100vh;
  background: linear-gradient(145deg, #0a0a0f 0%, #12121a 50%, #0d0d14 100%);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

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

/* ========================================
   Ambient Background Effects
   ======================================== */
.ambient-1 {
  position: fixed;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.ambient-2 {
  position: fixed;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
  z-index: 0;
}

/* Contact page alternate ambient positions */
.ambient-1.contact-alt {
  left: -15%;
  top: 20%;
  right: auto;
}

.ambient-2.contact-alt {
  right: -10%;
  bottom: -10%;
  left: auto;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-inner.wide {
  max-width: 1600px;
}

.header-inner.blog-wide {
  max-width: 1400px;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.logo-text {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* Navigation */
.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  border-radius: 1px;
}

/* Back Link (Blog Post) */
.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover { color: #fff; }

/* Header Actions */
.header-actions {
  display: flex;
  gap: 12px;
}

/* Search */
.search-container {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.search-input:focus {
  background: rgba(255,255,255,0.06);
  border-color: rgba(99, 102, 241, 0.5);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}

/* Search Box (Blog) */
.search-box {
  position: relative;
  width: 320px;
}

.search-box input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.search-box input::placeholder { color: rgba(255,255,255,0.3); }

.search-box input:focus {
  background: rgba(255,255,255,0.06);
  border-color: rgba(99, 102, 241, 0.5);
}

.search-box svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-ghost:hover { background: rgba(255,255,255,0.08); }

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

/* ========================================
   Main Content Container
   ======================================== */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  position: relative;
  z-index: 1;
}

.main.wide {
  max-width: 1600px;
}

.main.blog-wide {
  max-width: 1400px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  margin-bottom: 40px;
  animation: slideUp 0.6s ease forwards;
}

.hero.centered {
  padding: 80px 32px 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero.compact {
  padding: 60px 32px 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #6366f1;
  border-radius: 50%;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: #a5b4fc;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  line-height: 1.6;
}

.hero .date {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  font-family: 'Space Mono', monospace;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Blog Header
   ======================================== */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 60px 0 32px;
  animation: slideUp 0.6s ease forwards;
}

.blog-header h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

/* ========================================
   Categories
   ======================================== */
.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.category-pill {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-family: inherit;
}

.category-pill:hover {
  transform: translateY(-2px);
}

.category-pill.active {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* ========================================
   Product Grid (Homepage)
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideUp 0.5s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
.product-card:nth-child(7) { animation-delay: 0.4s; }
.product-card:nth-child(8) { animation-delay: 0.45s; }
.product-card:nth-child(9) { animation-delay: 0.5s; }
.product-card:nth-child(10) { animation-delay: 0.55s; }
.product-card:nth-child(11) { animation-delay: 0.6s; }
.product-card:nth-child(12) { animation-delay: 0.65s; }

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.product-card:hover .product-image img { transform: scale(1.1); }
.product-card:hover .product-overlay { opacity: 1; }
.product-card:hover .product-action {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.product-image {
  position: relative;
  height: 180px;
  background: linear-gradient(145deg, #1a1a24 0%, #12121a 100%);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 50%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.trending-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

.trending-badge svg {
  width: 12px;
  height: 12px;
}

.trending-badge span {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
}

.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.product-content {
  padding: 16px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}

.product-category {
  padding: 3px 8px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.product-brand {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.price-original {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.product-action {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.product-action svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   Blog Grid
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  animation: slideUp 0.5s ease forwards;
  opacity: 0;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.15s; }
.blog-card:nth-child(3) { animation-delay: 0.2s; }
.blog-card:nth-child(4) { animation-delay: 0.25s; }
.blog-card:nth-child(5) { animation-delay: 0.3s; }
.blog-card:nth-child(6) { animation-delay: 0.35s; }

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.blog-card:hover .blog-card-image img { transform: scale(1.1); }

.blog-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.8) 0%, transparent 50%);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.blog-card-content { padding: 24px; }

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-author span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.blog-card-time {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'Space Mono', monospace;
}

/* ========================================
   Featured Post
   ======================================== */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 60px;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  animation: slideUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.featured-post:hover {
  transform: scale(1.01);
  border-color: rgba(99, 102, 241, 0.2);
}

.featured-image {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  width: fit-content;
}

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.featured-excerpt {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 15px;
  font-weight: 500;
}

.author-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   Stats Grid (About Page)
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  animation: scaleIn 0.5s ease forwards;
  opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-value {
  font-family: 'Space Mono', monospace;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ========================================
   Story Section (About Page)
   ======================================== */
.story-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 80px 32px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.story-content h2 span { color: #6366f1; }

.story-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-image {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a24, #12121a);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
}

/* ========================================
   Values Section (About Page)
   ======================================== */
.values-section {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.value-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.04);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ========================================
   Team Section (About Page)
   ======================================== */
.team-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 80px 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.team-card:hover .team-image img { transform: scale(1.1); }

.team-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 50%);
}

.team-content {
  padding: 24px;
  margin-top: -60px;
  position: relative;
}

.team-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: #a5b4fc;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.cta-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 32px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
}

.cta-card p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

/* ========================================
   Contact Methods (Contact Page)
   ======================================== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px 60px;
  position: relative;
  z-index: 1;
}

.contact-method-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  flex-shrink: 0;
}

.contact-method-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-method-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.contact-method-content .value {
  font-size: 15px;
  color: #a5b4fc;
  font-weight: 500;
}

/* ========================================
   Contact Grid & Form (Contact Page)
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  position: relative;
  z-index: 1;
}

.form-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px;
}

.form-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.form-card > p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

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

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-input:focus {
  background: rgba(255,255,255,0.06);
  border-color: rgba(99, 102, 241, 0.5);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Success State */
.success-state {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.success-state.visible { display: block; }
.form-content.hidden { display: none; }

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pulse 2s ease-in-out infinite;
}

.success-state h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.success-state p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

/* Sidebar Cards */
.sidebar-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px;
}

.sidebar-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.2);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer { display: block; }

/* Offices */
.office-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.office-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.office-icon {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  flex-shrink: 0;
}

.office-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.office-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ========================================
   Privacy Page
   ======================================== */
.privacy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  position: relative;
  z-index: 1;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.toc-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px;
}

.toc-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-link {
  padding: 10px 16px;
  margin-left: -16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.toc-link:hover {
  color: #fff;
  padding-left: 20px;
}

.toc-link.active {
  color: #a5b4fc;
  border-left-color: #6366f1;
}

.contact-card {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 24px;
}

.contact-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5b4fc;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.contact-card a:hover { color: #fff; }

/* Content */
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.privacy-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px;
  scroll-margin-top: 100px;
  transition: border-color 0.3s ease;
}

.privacy-section:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

.privacy-section .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  text-align: left;
}

.section-icon {
  width: 52px;
  height: 52px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.privacy-section .section-header h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.content-block {
  margin-bottom: 24px;
}

.content-block:last-child { margin-bottom: 0; }

.content-block h3 {
  font-size: 16px;
  font-weight: 600;
  color: #a5b4fc;
  margin-bottom: 10px;
}

.content-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ========================================
   Blog Post Article
   ======================================== */
/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  z-index: 200;
  transition: width 0.1s ease-out;
  width: 0%;
}

/* Hero Image */
.post-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 1) 0%, rgba(10, 10, 15, 0.3) 50%, rgba(10, 10, 15, 0.5) 100%);
}

/* Article */
.article-container {
  max-width: 800px;
  margin: -200px auto 0;
  padding: 0 32px 80px;
  position: relative;
  z-index: 10;
  animation: slideUp 0.6s ease forwards;
}

.article-category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.article-excerpt {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.article-meta .author-avatar {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(99, 102, 241, 0.3);
}

.article-meta .author-name {
  font-size: 16px;
  font-weight: 600;
}

.author-date {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Article Body */
.article-body p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #fff;
}

.article-body blockquote {
  border-left: 4px solid #6366f1;
  padding-left: 28px;
  margin: 40px 0;
  font-style: italic;
}

.article-body blockquote p {
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.article-body blockquote cite {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

.article-body ul {
  margin: 24px 0;
  padding-left: 24px;
  list-style: none;
}

.article-body ul li {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
}

.article-body ul li::before {
  content: '•';
  position: absolute;
  left: -24px;
  color: #6366f1;
}

.article-body figure {
  margin: 48px 0;
}

.article-body figure img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}

.article-body figcaption {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-style: italic;
}

/* Tags */
.article-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.tags-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.tags-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Author Card */
.author-card {
  margin-top: 48px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.author-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-card-content { flex: 1; }

.author-card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-card-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-card-role {
  font-size: 14px;
  color: #a5b4fc;
  margin-bottom: 8px;
}

.author-card-bio {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.follow-btn {
  padding: 12px 24px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  color: #a5b4fc;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.follow-btn:hover { background: rgba(99, 102, 241, 0.2); }

/* Related Posts */
.related-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  position: relative;
  z-index: 1;
}

.related-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.related-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
}

.related-card-image {
  height: 180px;
  overflow: hidden;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content { padding: 20px; }

.related-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.related-card-category {
  font-size: 11px;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-card-time {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'Space Mono', monospace;
}

.related-card-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

/* ========================================
   Newsletter Section
   ======================================== */
.newsletter-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.newsletter {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.newsletter h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.newsletter p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form input:focus { border-color: rgba(99, 102, 241, 0.5); }

.newsletter-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
}

/* Newsletter CTA (Blog Post) */
.newsletter-cta {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.newsletter-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.newsletter-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.newsletter-cta .newsletter-form input {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ========================================
   Load More
   ======================================== */
.load-more {
  text-align: center;
  margin-bottom: 80px;
}

/* ========================================
   Empty State
   ======================================== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255,255,255,0.4);
  display: none;
}

.empty-state.visible {
  display: block;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  background: rgba(0,0,0,0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner.wide {
  max-width: 1600px;
}

.footer-inner.blog-wide {
  max-width: 1400px;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

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

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

/* ========================================
   Responsive Breakpoints
   ======================================== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .privacy-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; order: -1; }
  .toc-card { display: none; }
  .contact-card { margin-top: 0; }
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-image { height: 300px; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-image { height: 300px; }
  .featured-content { padding: 32px; }
  .search-box { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 12px 16px; }
  .header-actions { display: none; }
  .main { padding: 24px 16px 60px; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-card { padding: 40px 24px; }
  .cta-buttons { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .post-hero { height: 350px; }
  .article-container { margin-top: -100px; }
  .author-card {
    flex-direction: column;
    text-align: center;
  }
  .follow-btn { width: 100%; }
}

/* extra style */

.menuicon {
    position: absolute;
    right: 10px;
    top: 20px;
    display: none;
    cursor: pointer;
}
.floatingnav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #000;
    z-index: 999999999;
}
.mobilemenuheader {
    padding: 10px 10px;
    overflow: hidden;
    position: relative;
    border-bottom: 5px solid #ff007f;
}
.mobilelogo {
    float: left;
}
.mobilelogo img {
    width: 100%;
    height: auto;
    display: inline-block;
}
.closemenu {
    float: right;
    padding: 0 0 0 0;
    cursor: pointer;
}
.menubox {
    padding: 20px 20px;
    text-align: center;
}
.menubox ul li {
    padding: 0 0 5px 0;
    text-align: left;
}
.menubox ul li a {
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}
.menubox ul li a:hover {
    text-decoration: none;
    color: #ff007f;
}
.menubox ul li.current_page_item a {
    text-decoration: none;
    color: #ff007f;
}
.menubox ul li.current_page_item ul li a {
    text-decoration: none;
    color: #fff;
}

/* mobile menu end */

.navigation{
  text-align: left;
  margin: 20px 0 0 0;
}
.navigation ul li{
  list-style: none;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  margin: 0 32px 0 0;
}
.navigation ul li a{
  color: #ffffff99;
  text-decoration: none;
  display: block;
  padding: 0 0 30px 0;
}
.navigation ul li a:hover{
  color: #fff;
  text-decoration: none;
}
.navigation ul li.current_page_item::after{
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  border-radius: 1px;
}
.navigation ul li ul{
  position: absolute;
  width: 250px;
  top: 0;
  left: 0;
  display: none;
  z-index: 999;
}
.navigation ul li ul li{
  display: block;
  padding: 0;
}

.categories ul li{
  list-style:none;
  display: inline-block;
  margin: 5px 5px 5px 5px;
}
.categories ul li a{
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  color: #ffffff99;
  display: block;
}
.categories ul li a:hover{
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.load-more{
  margin: 80px 0 0 0;
}
.article-container{
  max-width: 1000px;
  padding: 0 10px;
}
.footer-links ul li{
  display: inline-block;
  list-style-type: none;
  margin: 0 0 0 25px;
}
.footer-links ul li a{
  font-size: 14px;
  color: #ffffff66;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links ul li a:hover{
  color: #fff;
  text-decoration: none;
}

.top-padd{
  margin-top: 230px;
  margin-bottom: 50px;
}
.product-card{
  position: relative;
}
.fulllink{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.product-category{
  width: 49%;
}
.product-brand{
  width: 49%;
}
.related-section{
  padding-top: 50px;
}
.author-info img{
  border-radius: 50%;
}