/* =============================================
   SCANNED DOCUMENT EDITING - Modern Design System
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors - Light Theme matched to Logo (Royal Blue + Crimson) */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f5f7fb;
  --color-bg-tertiary: #eef1f8;
  --color-bg-card: rgba(26, 43, 138, 0.03);
  --color-bg-card-hover: rgba(26, 43, 138, 0.07);
  --color-bg-glass: rgba(255, 255, 255, 0.85);
  --color-bg-glass-strong: rgba(255, 255, 255, 0.95);

  --color-accent-blue: #1a2b8a;
  --color-accent-cyan: #c41458;
  --color-accent-emerald: #3b5de7;
  --color-accent-gold: #e8276d;
  --color-accent-purple: #6e1b99;

  --color-text-primary: #1a1a2e;
  --color-text-secondary: #4a5568;
  --color-text-muted: #718096;
  --color-text-dark: #1e293b;

  --color-border: rgba(26, 43, 138, 0.1);
  --color-border-hover: rgba(26, 43, 138, 0.2);

  /* Gradients - Logo-matched Blue to Crimson */
  --gradient-primary: linear-gradient(135deg, #1a2b8a, #c41458);
  --gradient-accent: linear-gradient(135deg, #c41458, #e8276d);
  --gradient-gold: linear-gradient(135deg, #e8276d, #1a2b8a);
  --gradient-hero: linear-gradient(135deg, rgba(26, 43, 138, 0.92), rgba(196, 20, 88, 0.85));
  --gradient-card: linear-gradient(135deg, rgba(26, 43, 138, 0.05), rgba(196, 20, 88, 0.03));
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(26, 43, 138, 0.08), transparent 70%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows - Light theme */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow-blue: 0 4px 30px rgba(26, 43, 138, 0.2);
  --shadow-glow-cyan: 0 4px 30px rgba(196, 20, 88, 0.15);

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

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  --top-bar-height: 44px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding: var(--space-5xl) 0;
}

.section-padding-sm {
  padding: var(--space-3xl) 0;
}

/* --- Animated Background --- */
.bg-animated {
  position: relative;
  overflow: hidden;
}

.bg-animated::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-glow);
  animation: bgFloat 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes bgFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* --- Particles Background --- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: #1a2b8a;
  padding: var(--space-sm) 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.top-bar-left {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color var(--transition-fast);
}

.top-bar-left a:hover {
  color: var(--color-accent-cyan);
}

.top-bar-left i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar-hours {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.top-bar-hours i {
  color: var(--color-accent-gold);
}

.top-bar-social {
  display: flex;
  gap: var(--space-sm);
}

.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: #e2e8f0;
  color: #4a5568;
  transition: all var(--transition-fast);
  font-size: 0.8rem;
}

.top-bar-social a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
  padding: 4px 12px;
  border-radius: 8px;
  transition: all var(--transition-base);
}

.logo img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(26, 43, 138, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: #4a5568;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: #1a2b8a;
  background: #f7fafc;
}

.nav-menu > li > a .dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}

.nav-menu > li:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 100;
  list-style: none;
  margin: 0;
}

.dropdown li {
  list-style: none;
}

.nav-menu > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: #4a5568;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.dropdown li a:hover {
  background: rgba(26, 43, 138, 0.06);
  color: #c41458;
  padding-left: calc(var(--space-md) + 6px);
}

/* Sub-dropdown (child flyout) */
.dropdown .has-sub {
  position: relative;
}

.dropdown .has-sub > .dropdown {
  top: -4px;
  left: 100%;
  margin-left: 4px;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 200;
  padding: var(--space-sm);
  list-style: none;
}

.dropdown .has-sub:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown .has-sub > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown .has-sub > a::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  margin-left: var(--space-md);
  opacity: 0.4;
  transition: all var(--transition-fast);
}

.dropdown .has-sub:hover > a::after {
  opacity: 1;
  color: var(--color-accent-cyan);
  transform: translateX(2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-sm);
}

/* CTA Button in Nav */
.nav-cta {
  margin-left: var(--space-sm);
}

.nav-cta a {
  background: var(--gradient-primary);
  color: white !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition-fast) !important;
  box-shadow: var(--shadow-glow-blue);
}

.nav-cta a:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--gradient-accent) !important;
  box-shadow: 0 8px 30px rgba(196, 20, 88, 0.4);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 43, 138, 0.93), rgba(140, 15, 70, 0.88));
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content h1 {
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content h1 strong {
  background: linear-gradient(135deg, #ffffff, #ffd6e7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.125rem;
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Hero Form */
.hero-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.3));
}

.hero-form h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.5rem;
  color: #ffffff;
}

.hero-form .form-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
}

.hero-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-form .form-control:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.hero-form label {
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(26, 43, 138, 0.5);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #1a2b8a;
  border: 1px solid rgba(26, 43, 138, 0.3);
}

.btn-secondary:hover {
  background: var(--color-bg-glass-strong);
  border-color: var(--color-accent-cyan);
  color: var(--color-accent-cyan);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent-cyan);
  border: 2px solid var(--color-accent-cyan);
}

.btn-outline:hover {
  background: var(--color-accent-cyan);
  color: var(--color-bg-primary);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: white;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
  color: white;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn i {
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

/* =============================================
   FORM ELEMENTS
   ============================================= */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  color: #1a1a2e;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: #1a2b8a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 43, 138, 0.12);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-accent-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.section-header .section-tag::before,
.section-header .section-tag::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.05rem;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  background: #ffffff;
  border-color: rgba(26, 43, 138, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 43, 138, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--space-lg);
  transition: transform var(--transition-base);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-accent-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.service-card .card-link:hover {
  gap: var(--space-md);
  color: var(--color-accent-blue);
}

/* =============================================
   ABOUT / HOW WE WORK SECTION
   ============================================= */
.about-section {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

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

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

.about-image-overlay {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  background: var(--gradient-primary);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  color: white;
  backdrop-filter: blur(10px);
}

.about-image-overlay .counter-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-overlay span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-content h5 {
  color: var(--color-accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content > p {
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
}

.about-features {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.about-features h5 {
  color: var(--color-accent-gold);
  margin-bottom: var(--space-sm);
}

.about-features p {
  font-size: 0.9rem;
}

/* =============================================
   CTA / BANNER SECTION
   ============================================= */
.cta-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #060918;
  padding: 100px 0 !important;
}

/* Animated mesh gradient bg */
.cta-section .cta-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(196,20,88,0.35), transparent),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(26,43,138,0.5), transparent),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(59,29,110,0.3), transparent);
  animation: ctaMeshShift 10s ease-in-out infinite alternate;
}

@keyframes ctaMeshShift {
  0% { filter: hue-rotate(0deg); transform: scale(1); }
  100% { filter: hue-rotate(25deg); transform: scale(1.15); }
}

/* Sparkle particles */
.cta-section .cta-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.cta-sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: ctaSparkleFade 3s ease-in-out infinite;
}
.cta-sparkle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.cta-sparkle:nth-child(2) { top: 35%; left: 25%; animation-delay: 0.6s; width: 2px; height: 2px; }
.cta-sparkle:nth-child(3) { top: 60%; left: 12%; animation-delay: 1.2s; }
.cta-sparkle:nth-child(4) { top: 20%; right: 15%; animation-delay: 0.4s; width: 2px; height: 2px; }
.cta-sparkle:nth-child(5) { top: 70%; right: 10%; animation-delay: 1s; }
.cta-sparkle:nth-child(6) { top: 45%; right: 30%; animation-delay: 1.8s; width: 4px; height: 4px; }
.cta-sparkle:nth-child(7) { top: 80%; left: 40%; animation-delay: 2.2s; width: 2px; height: 2px; }
.cta-sparkle:nth-child(8) { top: 10%; left: 55%; animation-delay: 0.8s; }
.cta-sparkle:nth-child(9) { top: 50%; left: 70%; animation-delay: 1.5s; width: 2px; height: 2px; }
.cta-sparkle:nth-child(10) { top: 85%; right: 25%; animation-delay: 2s; }

@keyframes ctaSparkleFade {
  0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
  50% { opacity: 0.9; transform: scale(1) translateY(-10px); }
}

/* Floating accent rings */
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  z-index: 0;
  animation: ctaRingSpin 30s linear infinite;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(196,20,88,0.08);
  border-radius: 50%;
  bottom: -120px;
  left: -100px;
  z-index: 0;
  animation: ctaRingSpin 25s linear infinite reverse;
}
@keyframes ctaRingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.3);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,9,24,0.75), rgba(26,43,138,0.5) 50%, rgba(196,20,88,0.3));
  z-index: -1;
}

/* Inner glassmorphism card wrapper */
.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 60px 48px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Glowing top border accent */
.cta-content::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c41458, #3b82f6, transparent);
  border-radius: 3px;
  animation: ctaBorderGlow 3s ease-in-out infinite;
}

@keyframes ctaBorderGlow {
  0%, 100% { width: 200px; opacity: 0.7; }
  50% { width: 350px; opacity: 1; }
}

/* Decorative tag above heading */
.cta-content h2::before {
  content: '✦ PREMIUM SERVICES ✦';
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(196,20,88,0.9);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: var(--space-md);
  color: white;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta-content > div > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.cta-stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px 24px;
  min-width: 140px;
  transition: all 0.3s ease;
}

.cta-stat:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cta-stat .stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  font-weight: 600;
}

.cta-stat .stat-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
}

.cta-buttons .btn {
  background: linear-gradient(135deg, #c41458, #e8365d);
  color: white;
  font-weight: 700;
  padding: 14px 10px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-align: center;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(196,20,88,0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn:hover {
  background: linear-gradient(135deg, #d81b60, #ff4081);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 35px rgba(196,20,88,0.5), 0 0 15px rgba(196,20,88,0.3);
}

.cta-buttons .btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-buttons .btn-ghost:hover {
  background: rgba(255,255,255,0.95);
  color: #1a2b8a;
  font-weight: 800;
  border-color: white;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 35px rgba(255,255,255,0.25), 0 0 15px rgba(255,255,255,0.15);
}


/* =============================================
   CONTENT SECTION (Why Use)
   ============================================= */
.content-section {
  position: relative;
  z-index: 1;
}

.content-section .content-box {
  max-width: 800px;
  margin: 0 auto;
}

.content-section .content-box h2 {
  margin-bottom: var(--space-lg);
}

.content-section .content-box p {
  font-size: 1.05rem;
  line-height: 1.9;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
}

.contact-form-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
}

.contact-form-box h5 {
  color: var(--color-accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.contact-form-box h2 {
  margin-bottom: var(--space-xl);
  font-size: 1.75rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-hover);
  transform: translateX(8px);
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-info-card h5 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.contact-info-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-hover);
}

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

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

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

.blog-card-date {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card-content {
  padding: var(--space-xl);
}

.blog-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card-content h4 a {
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

.blog-card-content h4 a:hover {
  color: var(--color-accent-cyan);
}

.blog-card-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-text {
  padding: var(--space-xl);
}

.blog-card-text .date-badge {
  color: var(--color-accent-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0f1629;
  border-top: none;
  position: relative;
  z-index: 1;
  color: #cbd5e0;
}

.footer-main {
  padding: var(--space-4xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: var(--space-2xl);
}

.footer-about p {
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-blue);
}

.footer-heading {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-cyan);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  color: #e8276d;
  padding-left: 6px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  margin-bottom: var(--space-md);
}

.footer-contact-item label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-xs);
}

.footer-contact-item strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

.footer-newsletter {
  display: flex;
  gap: var(--space-sm);
}

.footer-newsletter .form-control {
  max-width: 250px;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.footer-newsletter .btn {
  border-radius: var(--radius-full);
  padding: 10px 20px;
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  position: relative;
  padding: var(--space-5xl) 0 var(--space-3xl);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  z-index: -1;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: #1a2b8a;
}

.page-hero .breadcrumb span {
  color: var(--color-text-muted);
}

/* =============================================
   INNER PAGE CONTENT
   ============================================= */
.page-content {
  position: relative;
  z-index: 1;
}

.page-content .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.page-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.page-content p {
  margin-bottom: var(--space-md);
  line-height: 1.9;
}

.page-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.page-content ul li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-primary);
}

/* =============================================
   SAMPLE GALLERY
   ============================================= */
.sample-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.sample-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.sample-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-hover);
}

.sample-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.sample-item:hover img {
  transform: scale(1.05);
}

.sample-item-caption {
  padding: var(--space-md);
  text-align: center;
}

.sample-item-caption h5 {
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

/* =============================================
   STICKY SIDE BUTTONS
   ============================================= */
.sticky-buttons {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0 50px 50px 0;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  max-width: 50px;
  height: 50px;
  box-shadow: 4px 2px 15px rgba(0, 0, 0, 0.15);
}

.sticky-btn:hover {
  max-width: 250px;
  color: white;
  box-shadow: 6px 4px 25px rgba(0, 0, 0, 0.2);
  transform: translateX(2px);
}

.sticky-btn i {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sticky-btn span {
  padding-right: 18px;
}

.sticky-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.sticky-btn.telegram { background: linear-gradient(135deg, #2AABEE, #0088cc); }
.sticky-btn.livechat { background: linear-gradient(135deg, #e6a817, #c48b0e); }
.sticky-btn.call { background: linear-gradient(135deg, #e04040, #b73838); }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* Staggered delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero {
    min-height: auto;
    padding: var(--space-3xl) 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .cta-content {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .cta-section {
    padding: 60px 0 !important;
  }

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

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

  .cta-stat {
    min-width: 120px;
    padding: 14px 18px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

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

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: var(--space-lg);
    max-height: 80vh;
    overflow-y: auto;
  }

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

  .nav-menu > li > a {
    padding: var(--space-md);
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(26, 43, 138, 0.04);
    box-shadow: none;
    border: none;
    padding-left: var(--space-lg);
    display: none;
  }

  .dropdown.active {
    display: block;
  }

  .dropdown .has-sub > .dropdown {
    position: static;
    margin-left: var(--space-md);
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }

  .top-bar-left {
    gap: var(--space-md);
    font-size: 0.8rem;
  }

  .top-bar-right {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-form {
    padding: var(--space-xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

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

  .sample-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .sticky-buttons {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-sm);
  }

  .sticky-btn {
    border-radius: var(--radius-sm);
    max-width: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    font-size: 0.65rem;
  }

  .sticky-btn i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

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

/* =============================================
   DISCLAIMER BOX
   ============================================= */
.disclaimer-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.disclaimer-box p {
  color: var(--color-accent-gold);
  font-size: 0.85rem;
  margin: 0;
}

/* =============================================
   PRICING / FEATURES LIST
   ============================================= */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-card-hover);
}

.feature-item i {
  color: var(--color-accent-emerald);
  font-size: 1rem;
  min-width: 20px;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* Country flag badges */
.country-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.country-badge i {
  font-size: 1.2rem;
}

/* =============================================
   ORDER FORM SPECIFIC
   ============================================= */
.order-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
}

.order-form-wrapper h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* =============================================
   BLOG LIST PAGE
   ============================================= */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
}

/* Blog Card Image Header */
.blog-card-image-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-image-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image-header img {
  transform: scale(1.08);
}

/* Blog Card Icon Header (replaces image for icon-only cards) */
.blog-card-icon-header {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-card);
  overflow: hidden;
}
.blog-card-icon-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.5;
}
.blog-card-icon-header i.blog-icon {
  font-size: 3rem;
  color: var(--color-accent-blue);
  opacity: 0.35;
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}
.blog-card:hover .blog-card-icon-header i.blog-icon {
  opacity: 0.65;
  transform: scale(1.15);
}

/* Category Badge */
.blog-category-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 2;
}
.blog-category-badge.cat-editing {
  background: linear-gradient(135deg, #1a2b8a, #3b5de7);
  color: #fff;
}
.blog-category-badge.cat-news {
  background: linear-gradient(135deg, #c41458, #e8276d);
  color: #fff;
}

/* Blog Card Title in card-content – slightly smaller for grid */
.blog-list .blog-card-content h4 {
  font-size: 1.02rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog filter tabs */
.blog-filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}
.blog-filter-tab {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-heading);
}
.blog-filter-tab:hover,
.blog-filter-tab.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow-blue);
}
.blog-filter-tab .tab-count {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 1px 8px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  margin-left: 6px;
}

/* =============================================
   LOADING ANIMATION
   ============================================= */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

.animate-fadeInUp { animation: fadeInUp 0.6s ease-out both; }
.animate-slideInLeft { animation: slideInLeft 0.6s ease-out both; }
.animate-slideInRight { animation: slideInRight 0.6s ease-out both; }
.animate-scaleIn { animation: scaleIn 0.6s ease-out both; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Glow border effect */
.glow-border {
  position: relative;
}

.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.glow-border:hover::after {
  opacity: 1;
}
