/* 
 * Premium ID Website - Home Page Styles
 * Version: 2.0
 * Last Updated: May 2025
 */

/* =============================
 * TABLE OF CONTENTS:
 * -----------------------------
 * 1. Variables
 * 2. General Styling
 * 3. Hero Section
 * 4. Country Selection Section
 * 5. Benefits Section
 * 6. Security Features Section
 * 7. Product Catalog Section
 * 8. How It Works Section
 * 9. Testimonials Section
 * 10. Articles Section
 * 11. CTA Section
 * 12. Animations
 * 13. Media Queries
 * ============================= */

/* =============================
 * 1. Variables
 * ============================= */
:root {
  /* Primary Colors */
  --primary: #0056b3;
  --primary-dark: #003d82;
  --primary-light: #e6f0ff;
  
  /* Secondary Colors */
  --secondary: #263238;
  --secondary-light: #4f5b62;
  --secondary-dark: #000a12;
  
  /* Accent Colors */
  --accent-1: #00c853;
  --accent-2: #ff6d00;
  --accent-3: #6200ea;
  
  /* Country Specific Colors */
  --uk-color: #00247d;
  --us-color: #3c3b6e;
  --ca-color: #d80621;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent-3) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  --gradient-uk: linear-gradient(135deg, #00247d 0%, #cf142b 100%);
  --gradient-us: linear-gradient(135deg, #3c3b6e 0%, #b22234 100%);
  --gradient-ca: linear-gradient(135deg, #d80621 0%, #ffffff 100%);
  
  /* Typography */
  --font-family-heading: 'Montserrat', sans-serif;
  --font-family-body: 'Roboto', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
}

/* =============================
 * 2. General Styling
 * ============================= */
body {
  font-family: var(--font-family-body);
  color: var(--gray-800);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--secondary);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-base);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

/* Z-index utility */
.z-1 {
  z-index: 1;
}

/* =============================
 * 3. Hero Section
 * ============================= */
.hero-section {
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(98, 0, 234, 0.8) 100%);
  z-index: 0;
}

.min-vh-80 {
  min-height: 80vh;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-image-container {
  position: relative;
  overflow: visible;
}

.hero-cards {
  position: relative;
  height: 420px;
  perspective: 1000px;
}

.hero-card {
  position: absolute;
  width: 480px;
  height: 300px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-card.uk-card {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-5deg) translateZ(20px);
  border: 2px solid var(--uk-color);
}

.hero-card.us-card {
  top: 80px;
  left: 60px;
  z-index: 2;
  transform: rotate(5deg) translateZ(10px);
  border: 2px solid var(--us-color);
}

.hero-card.ca-card {
  top: 160px;
  left: 120px;
  z-index: 1;
  transform: rotate(-3deg) translateZ(0);
  border: 2px solid var(--ca-color);
}

.id-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--border-radius) - 2px);
}

.country-label {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  z-index: 4;
}

.hero-card.uk-card .country-label {
  background-color: var(--uk-color);
}

.hero-card.us-card .country-label {
  background-color: var(--us-color);
}

.hero-card.ca-card .country-label {
  background-color: var(--ca-color);
}

.hero-image-container:hover .hero-card.uk-card {
  transform: rotate(-8deg) translateZ(30px) translateX(-10px);
}

.hero-image-container:hover .hero-card.us-card {
  transform: rotate(8deg) translateZ(20px) translateX(10px);
}

.hero-image-container:hover .hero-card.ca-card {
  transform: rotate(-5deg) translateZ(10px) translateX(-5px);
}

.hero-image-features {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.feature-highlight {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 6;
}

.highlight-dot {
  width: 16px;
  height: 16px;
  background-color: var(--accent-2);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  box-shadow: 0 0 0 rgba(255, 109, 0, 0.4);
  animation: pulse 2s infinite;
}

.highlight-text {
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
  fill: var(--white);
}

.countries-served {
  margin-top: 2rem;
}

.country-badge {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-xl);
  padding: 0.5rem 1rem;
}

.country-flag {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  margin-right: 0.75rem;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

.uk-flag {
  background-image: url('/images/flags/uk-flag.svg');
}

.us-flag {
  background-image: url('/images/flags/us-flag.svg');
}

.ca-flag {
  background-image: url('/images/flags/ca-flag.svg');
}

.country-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

/* =============================
 * 4. Country Selection Section
 * ============================= */
.country-selection-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.country-cards {
  margin-top: 2rem;
}

.country-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.country-card.uk-country:hover {
  border-color: var(--uk-color);
}

.country-card.us-country:hover {
  border-color: var(--us-color);
}

.country-card.ca-country:hover {
  border-color: var(--ca-color);
}

.country-card-flag {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gray-100);
}

.big-flag {
  width: 120px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.country-card:hover .big-flag {
  transform: scale(1.05);
}

.country-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.country-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.country-card.uk-country .country-card-title {
  color: var(--uk-color);
}

.country-card.us-country .country-card-title {
  color: var(--us-color);
}

.country-card.ca-country .country-card-title {
  color: var(--ca-color);
}

.country-card-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* =============================
 * 5. Benefits Section
 * ============================= */
.benefits-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

.benefit-card {
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

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

.benefit-card:hover .benefit-title,
.benefit-card:hover .benefit-text {
  color: var(--white);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  color: var(--white);
  transform: scale(1.1);
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color var(--transition-base);
}

.benefit-text {
  color: var(--gray-600);
  margin-bottom: 0;
  transition: color var(--transition-base);
}

/* =============================
 * 6. Security Features Section
 * ============================= */
.security-features-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.security-tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/tech-pattern-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.security-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(0, 86, 179, 0.1) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 80% 20%, rgba(98, 0, 234, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 0;
}

.security-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  transform: translate(40%, -40%);
  z-index: 0;
}

.security-features-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  transform: translate(-40%, 40%);
  z-index: 0;
}

.security-features-image {
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.security-features-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.security-flags {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.mini-flag-element {
  width: 40px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 5px;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

.mini-flag-element.uk-flag {
  animation-delay: 0s;
}

.mini-flag-element.us-flag {
  animation-delay: 1s;
}

.mini-flag-element.ca-flag {
  animation-delay: 2s;
}

.tech-radar-element {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-image: url('/images/radar-scan.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  animation: rotate 8s linear infinite;
}

.security-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: pulse-badge 3s infinite;
}

.security-badge-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.security-badge-inner span:first-child {
  font-size: 1.5rem;
}

.security-badge-inner span:last-child {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.floating-feature {
  position: absolute;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  max-width: 280px;
  z-index: 2;
}

.top-feature {
  top: 10%;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.middle-feature {
  top: 40%;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.bottom-feature {
  bottom: 10%;
  right: -20px;
  animation: float 5s ease-in-out infinite;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.feature-content p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--gray-600);
}

.security-features-list {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.security-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.security-feature-item:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.feature-check {
  color: var(--accent-1);
  font-size: 1.5rem;
  margin-right: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-info p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* =============================
 * 7. Product Catalog Section
 * ============================= */
.product-catalog-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius-xl);
  background-color: var(--gray-200);
  color: var(--gray-700);
  border: none;
  font-weight: 500;
  transition: all var(--transition-base);
  cursor: pointer;
}

.filter-btn:hover {
  background-color: var(--gray-300);
}

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

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent-2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-xl);
  z-index: 1;
}

.product-country {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 20px;
  border-radius: 3px;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.product-country.uk-badge {
  background-image: url('/images/flags/uk-flag.svg');
}

.product-country.us-badge {
  background-image: url('/images/flags/us-flag.svg');
}

.product-country.ca-badge {
  background-image: url('/images/flags/ca-flag.svg');
}

.product-actions {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
}

.product-card:hover .action-btn {
  opacity: 1;
  transform: translateY(0);
}

.action-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.view-btn {
  transition-delay: 0.05s;
}

.cart-btn {
  transition-delay: 0.1s;
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  height: 3.15rem;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--accent-2);
}

.product-rating i {
  margin-right: 2px;
}

.rating-count {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-left: 0.5rem;
}

.product-price-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.product-price-original {
  font-size: 0.925rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-right: 0.75rem;
}

.product-price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* =============================
 * 8. How It Works Section
 * ============================= */
/* How It Works Section Styles */

.how-it-works-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.how-it-works-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.process-container {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

/* Process Flow Styling */
.process-flow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-connection-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 4px;
  background: linear-gradient(to bottom, 
    var(--primary-light) 0%, 
    var(--primary) 25%, 
    var(--primary) 75%, 
    var(--primary-light) 100%);
  border-radius: 4px;
  z-index: 1;
}

/* Process Item Styling */
.process-item {
  position: relative;
  margin-bottom: 3rem;
  z-index: 2;
}

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

.process-item-inner {
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.process-item:hover .process-item-inner {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Process Step Number and Icon */
.process-icon-wrapper {
  position: relative;
  width: 100px;
  min-width: 100px;
  background: linear-gradient(to bottom, var(--primary), var(--accent-3));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-sm);
}

/* Process Content */
.process-content {
  padding: 2rem;
  flex: 1;
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.process-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* Country Options */
.country-options {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.country-option {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all var(--transition-base);
}

.country-option:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.country-option.uk:hover {
  background-color: rgba(0, 36, 125, 0.1);
}

.country-option.us:hover {
  background-color: rgba(60, 59, 110, 0.1);
}

.country-option.ca:hover {
  background-color: rgba(216, 6, 33, 0.1);
}

.country-flag {
  width: 24px;
  height: 16px;
  margin-right: 0.5rem;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}

/* Customization Preview */
.customization-preview {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 1rem;
}

.custom-field {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.custom-field:last-child {
  margin-bottom: 0;
}

.field-label {
  font-weight: 600;
  min-width: 60px;
}

.field-input {
  color: var(--gray-700);
}

.photo-upload-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.photo-upload-btn:hover {
  background-color: var(--primary-dark);
}

.photo-upload-btn i {
  margin-left: 0.5rem;
}

/* Payment Options */
.payment-options {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.payment-icon {
  font-size: 2rem;
  color: var(--gray-600);
  transition: all var(--transition-base);
}

.payment-icon:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

/* Quality Features */
.quality-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quality-feature {
  display: flex;
  align-items: center;
  background-color: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.quality-feature i {
  margin-right: 0.5rem;
  color: var(--accent-1);
}

/* Delivery Info */
.delivery-info {
  display: flex;
  margin-top: 1rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.delivery-options {
  flex: 1;
  padding: 1rem;
}

.delivery-option {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 0.75rem;
  transition: all var(--transition-base);
}

.delivery-option:last-child {
  margin-bottom: 0;
}

.delivery-option:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.delivery-option.express {
  border-left: 3px solid var(--accent-2);
}

.option-name {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.option-name i {
  margin-right: 0.5rem;
}

.option-time {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.delivery-map {
  position: relative;
  width: 150px;
  min-height: 130px;
  background-color: rgba(230, 240, 255, 0.5);
  border-left: 1px solid var(--gray-200);
  overflow: hidden;
}

.map-dots {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.uk-dot {
  top: 30%;
  right: 25%;
  background-color: var(--uk-color);
}

.us-dot {
  top: 40%;
  left: 20%;
  background-color: var(--us-color);
}

.ca-dot {
  top: 20%;
  left: 30%;
  background-color: var(--ca-color);
}

.delivery-plane {
  position: absolute;
  top: 35%;
  left: 40%;
  font-size: 1.5rem;
  color: var(--primary);
  animation: plane-float 3s infinite ease-in-out;
}

@keyframes plane-float {
  0%, 100% {
    transform: translate(0, 0) rotate(25deg);
  }
  50% {
    transform: translate(15px, -10px) rotate(15deg);
  }
}

/* Process CTA */
.process-cta {
  position: relative;
  z-index: 1;
}

.process-cta h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Media Queries */
@media (max-width: 991.98px) {
  .process-icon-wrapper {
    width: 80px;
    min-width: 80px;
  }
  
  .process-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .step-number {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
  
  .process-content {
    padding: 1.5rem;
  }
  
  .process-content h3 {
    font-size: 1.25rem;
  }
  
  .delivery-map {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .process-item-inner {
    flex-direction: column;
  }
  
  .process-icon-wrapper {
    width: 100%;
    height: 80px;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 1.5rem;
  }
  
  .process-connection-line {
    display: none;
  }
  
  .step-number {
    position: relative;
    top: unset;
    right: unset;
    margin-left: 1rem;
  }
  
  .country-options, 
  .payment-options,
  .quality-features {
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .process-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .process-content {
    padding: 1rem;
  }
  
  .process-content h3 {
    font-size: 1.125rem;
  }
  
  .delivery-option {
    flex-direction: column;
  }
  
  .option-time {
    margin-top: 0.25rem;
    margin-left: 1.75rem;
  }
}

/* =============================
 * 9. Testimonials Section
 * ============================= */
/* 
 * Testimonials Section - Enhanced Styles
 */

.testimonials-section {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.testimonial-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/quote-pattern.svg');
  background-size: 150px;
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

/* Rating Summary */
.rating-summary-container {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}

.rating-summary {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 2rem;
  border-right: 1px solid var(--gray-200);
  min-width: 150px;
}

.score-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.score-stars {
  color: var(--accent-2);
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.score-count {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.rating-breakdown {
  flex: 1;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breakdown-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

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

.breakdown-item .stars {
  min-width: 60px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--gray-700);
}

.breakdown-item .stars i {
  margin-left: 0.25rem;
  color: var(--accent-2);
}

.progress-bar-container {
  flex: 1;
  height: 8px;
  background-color: var(--gray-200);
  border-radius: 4px;
  margin: 0 1rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--accent-2);
  border-radius: 4px;
}

.percentage {
  min-width: 40px;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Country Filter Tabs */
.country-filter-container {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.country-tabs {
  display: flex;
  justify-content: center;
  border-bottom: none;
  gap: 0.5rem;
}

.country-tabs .nav-link {
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.country-tabs .nav-link.active {
  color: var(--white);
  background-color: var(--primary);
}

.country-tabs .nav-link:hover:not(.active) {
  background-color: var(--gray-200);
}

.country-flag {
  width: 24px;
  height: 16px;
  background-size: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}

/* Reviews Container */
.reviews-container {
  position: relative;
  z-index: 1;
}

/* Featured Video Review */
.featured-review {
  margin-bottom: 2.5rem;
}

.video-review {
  display: flex;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.video-review:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.video-thumbnail {
  position: relative;
  width: 300px;
  min-height: 180px;
  overflow: hidden;
}

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

.video-review:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.3);
  animation: pulse-ring 2s infinite;
  z-index: 2;
  cursor: pointer;
  transition: all var(--transition-base);
}

.play-button:hover {
  background-color: var(--primary-dark);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-flag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 20px;
  background-size: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.video-info {
  flex: 1;
  padding: 1.5rem;
}

.video-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.video-title h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary);
}

.review-stars {
  color: var(--accent-2);
  font-size: 1rem;
}

.video-excerpt {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.reviewer-name {
  font-weight: 600;
  color: var(--gray-800);
}

.location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.video-duration {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Review Card */
.review-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 4px solid transparent;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-card.uk-review {
  border-top-color: var(--uk-color);
}

.review-card.us-review {
  border-top-color: var(--us-color);
}

.review-card.ca-review {
  border-top-color: var(--ca-color);
}

.review-header {
  padding: 1.5rem 1.5rem 0.75rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--primary-light);
}

.reviewer-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.reviewer-location {
  font-size: 0.875rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-rating .stars {
  color: var(--accent-2);
  font-size: 1rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.review-content {
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}

.review-content p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 0;
  line-height: 1.6;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.product-type {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.25rem 0.75rem;
  background-color: var(--gray-200);
  border-radius: var(--border-radius);
}

.verified-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-1);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Load More Button */
.load-more-container {
  margin-top: 2.5rem;
}

.load-more-btn {
  padding: 0.75rem 2rem;
  font-weight: 500;
}

/* Loading State */
.reviews-loading {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}

/* Trust Badge */
.trust-badge-container {
  margin-top: 3rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 2.5rem;
  color: var(--accent-1);
  margin-right: 1rem;
}

.badge-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.badge-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Video Modal */
.modal-content {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.modal-header {
  background-color: var(--primary);
  color: var(--white);
  border-bottom: none;
}

.modal-title {
  font-weight: 600;
}

.btn-close {
  color: var(--white);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .rating-summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .rating-score {
    padding-right: 0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .rating-breakdown {
    padding-left: 0;
  }
  
  .video-review {
    flex-direction: column;
  }
  
  .video-thumbnail {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .country-tabs {
    flex-wrap: wrap;
  }
  
  .country-tabs .nav-link {
    flex: 1;
    justify-content: center;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .rating-summary {
    padding: 1.5rem;
  }
  
  .score-number {
    font-size: 3rem;
  }
  
  .breakdown-item {
    font-size: 0.875rem;
  }
  
  .breakdown-item .stars {
    min-width: 50px;
  }
  
  .progress-bar-container {
    margin: 0 0.5rem;
  }
  
  .review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .trust-badge {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .badge-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* =============================
 * 10. Articles Section
 * ============================= */
.articles-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

.article-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.article-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  text-align: center;
  min-width: 60px;
  box-shadow: var(--shadow-sm);
}

.date-day {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.date-month {
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
}

.article-country-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.9);
}

.article-country-tag .mini-flag {
  margin: 0;
}

.article-content {
  padding: 1.5rem;
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-title a {
  color: var(--secondary);
  transition: color var(--transition-base);
}

.article-title a:hover {
  color: var(--primary);
}

.article-excerpt {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.article-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-base);
}

.article-link i {
  margin-left: 0.5rem;
  transition: transform var(--transition-base);
}

.article-link:hover {
  color: var(--primary-dark);
}

.article-link:hover i {
  transform: translateX(5px);
}

/* =============================
 * 11. CTA Section
 * ============================= */
.cta-section {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-container {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.cta-flags {
  position: absolute;
  top: -30px;
  right: -30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: rotate(30deg);
  z-index: 1;
}

.cta-flag {
  width: 60px;
  height: 40px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
  opacity: 0.7;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-container::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* =============================
 * 12. Animations
 * ============================= */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 109, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 109, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 0, 0);
  }
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 86, 179, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
  }
}

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

@keyframes plane-move {
  0% {
    transform: translate(0, 0) rotate(25deg);
  }
  25% {
    transform: translate(-30px, -20px) rotate(15deg);
  }
  50% {
    transform: translate(-60px, 0) rotate(25deg);
  }
  75% {
    transform: translate(-30px, 20px) rotate(35deg);
  }
  100% {
    transform: translate(0, 0) rotate(25deg);
  }
}

/* =============================
 * 13. Media Queries
 * ============================= */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-card,
  .cta-container {
    padding: 1.5rem;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .process-number {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    order: 1 !important;
  }
  
  .process-icon {
    display: none;
  }
  
  .floating-feature {
    position: static;
    margin-bottom: 1rem;
    max-width: 100%;
    animation: none;
  }
  
  .product-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .security-flags,
  .mini-flag-element,
  .tech-radar-element,
  .security-badge,
  .world-map-element,
  .delivery-plane-element,
  .notification-element,
  .cta-flags {
    display: none;
  }
  
  .author-location {
    flex-wrap: wrap;
  }
  
  .hero-cards {
    height: 250px;
  }
  
  .hero-card {
    width: 180px;
    height: 110px;
  }
  
  .country-card {
    margin-bottom: 1.5rem;
  }
  
  .big-flag {
    width: 80px;
    height: 50px;
  }
  
  .nav-pills .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-number {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    order: 1 !important;
  }
  
  .process-icon {
    display: none;
  }
  
  .security-flags,
  .mini-flag-element,
  .tech-radar-element,
  .security-badge,
  .world-map-element,
  .delivery-plane-element,
  .notification-element {
    display: none;
  }
  
  .hero-cards {
    height: 280px;
  }
  
  .hero-card {
    width: 200px;
    height: 125px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .process-content {
    width: calc(50% - 40px);
  }
  
  .floating-feature {
    max-width: 220px;
  }
  
  .right-illustration,
  .world-map-element,
  .delivery-plane-element,
  .notification-element {
    display: none;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .process-content {
    width: calc(50% - 40px);
  }
}

/* =============================
 * 4. Benefits Section
 * ============================= */
.benefits-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.benefit-card {
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

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

.benefit-card:hover .benefit-title,
.benefit-card:hover .benefit-text {
  color: var(--white);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  color: var(--white);
  transform: scale(1.1);
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color var(--transition-base);
}

.benefit-text {
  color: var(--gray-600);
  margin-bottom: 0;
  transition: color var(--transition-base);
}

/* =============================
 * 5. Security Features Section
 * ============================= */
.security-features-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.security-tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/tech-pattern-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.security-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(0, 86, 179, 0.1) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 80% 20%, rgba(98, 0, 234, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 0;
}

.security-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  transform: translate(40%, -40%);
  z-index: 0;
}

.security-features-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  transform: translate(-40%, 40%);
  z-index: 0;
}

.security-features-image {
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.security-features-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.uk-flag-element {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background-image: url('/images/uk-flag-circle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  box-shadow: var(--shadow-md);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.tech-radar-element {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-image: url('/images/radar-scan.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  animation: rotate 8s linear infinite;
}

.security-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: pulse-badge 3s infinite;
}

.security-badge-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.security-badge-inner span:first-child {
  font-size: 1.5rem;
}

.security-badge-inner span:last-child {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.floating-feature {
  position: absolute;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  max-width: 280px;
  z-index: 2;
}

.top-feature {
  top: 10%;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.middle-feature {
  top: 40%;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.bottom-feature {
  bottom: 10%;
  right: -20px;
  animation: float 5s ease-in-out infinite;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.feature-content p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--gray-600);
}

.security-features-list {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.security-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.security-feature-item:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.feature-check {
  color: var(--accent-1);
  font-size: 1.5rem;
  margin-right: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-info p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

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

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 86, 179, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
  }
}

/* =============================
 * 6. Product Catalog Section
 * ============================= */
.product-catalog-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius-xl);
  background-color: var(--gray-200);
  color: var(--gray-700);
  border: none;
  font-weight: 500;
  transition: all var(--transition-base);
  cursor: pointer;
}

.filter-btn:hover {
  background-color: var(--gray-300);
}

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

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent-2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-xl);
  z-index: 1;
}

.product-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1;
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateX(20px);
}

.product-card:hover .action-btn {
  opacity: 1;
  transform: translateX(0);
}

.action-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.view-btn {
  transition-delay: 0.05s;
}

.cart-btn {
  transition-delay: 0.1s;
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  height: 3.15rem;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--accent-2);
}

.product-rating i {
  margin-right: 2px;
}

.rating-count {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-left: 0.5rem;
}

.product-price-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.product-price-original {
  font-size: 0.925rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-right: 0.75rem;
}

.product-price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* =============================
 * 7. How It Works Section
 * ============================= */
.how-it-works-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.right-illustration {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 35%;
  height: 80%;
  z-index: 1;
}

.uk-delivery-map {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.15;
  z-index: -1;
}

.uk-map-element {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 180px;
  height: 220px;
  background-image: url('/images/uk-map-outline.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 1;
}

.delivery-truck-element {
  position: absolute;
  top: 50%;
  right: 35%;
  font-size: 2.5rem;
  color: var(--primary);
  animation: truck-move 10s infinite linear;
  z-index: 2;
}

.notification-element {
  position: absolute;
  bottom: 25%;
  right: 25%;
  font-size: 2rem;
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.notification-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  background-color: var(--accent-2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  z-index: 2;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--primary-light);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.process-step {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-md);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.process-content {
  width: calc(50% - 40px);
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-base);
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-step:nth-child(odd) .process-content {
  margin-right: 80px;
}

.process-step:nth-child(even) .process-content {
  margin-left: 80px;
  order: 1;
}

.process-step:nth-child(odd) .process-icon {
  order: 1;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.process-description {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

.process-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.process-step:nth-child(even) .process-icon {
  left: 1rem;
  right: auto;
}

@keyframes truck-move {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-30px) translateY(20px);
  }
  50% {
    transform: translateX(-60px) translateY(0);
  }
  75% {
    transform: translateX(-30px) translateY(-20px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* =============================
 * 8. Testimonials Section
 * ============================= */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.testimonials-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.testimonial-summary {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.rating-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-lg);
}

.rating-stars {
  color: var(--accent-2);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rating-count {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.testimonials-grid {
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.video-card {
  border: 2px solid var(--primary-light);
}

.testimonial-video {
  position: relative;
  overflow: hidden;
}

.testimonial-video img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  transition: all var(--transition-base);
  box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.3);
  animation: pulse-ring 2s infinite;
}

.video-play-button:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.05);
}

.testimonial-content {
  padding: 1.5rem;
}

.testimonial-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.testimonial-excerpt {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.testimonial-rating {
  color: var(--accent-2);
  font-size: 1rem;
}

.testimonial-verified {
  font-size: 0.75rem;
  color: var(--accent-1);
  font-weight: 600;
}

.testimonial-verified i {
  margin-right: 0.25rem;
}

.testimonial-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.testimonial-body p {
  font-style: italic;
  margin-bottom: 0;
  color: var(--gray-700);
  line-height: 1.6;
}

.testimonial-footer {
  padding: 1rem;
  border-top: 1px solid var(--gray-200);
  background-color: var(--gray-50);
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--primary-light);
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-weight: 600;
  line-height: 1.2;
}

.author-location {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.testimonial-pagination {
  margin-top: 2rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* Small dots for mobile pagination */
.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  background-color: var(--gray-300);
  border-radius: 50%;
  display: inline-block;
  transition: all var(--transition-base);
}

.testimonial-dots .dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 991.98px) {
  .testimonials-grid {
    margin-top: 1rem;
  }
  
  .testimonial-card {
    margin-bottom: 1rem;
  }
}

/* =============================
 * 9. Articles Section
 * ============================= */
.articles-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

.article-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.article-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  text-align: center;
  min-width: 60px;
  box-shadow: var(--shadow-sm);
}

.date-day {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.date-month {
  font-size: 0.875rem;
  text-transform: uppercase;
  display: block;
}

.article-content {
  padding: 1.5rem;
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-title a {
  color: var(--secondary);
  transition: color var(--transition-base);
}

.article-title a:hover {
  color: var(--primary);
}

.article-excerpt {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.article-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-base);
}

.article-link i {
  margin-left: 0.5rem;
  transition: transform var(--transition-base);
}

.article-link:hover {
  color: var(--primary-dark);
}

.article-link:hover i {
  transform: translateX(5px);
}

/* =============================
 * 10. CTA Section
 * ============================= */
.cta-section {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-container {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-container::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* =============================
 * 11. Animations
 * ============================= */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 109, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 109, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 0, 0);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 86, 179, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
  }
}

/* =============================
 * 12. Media Queries
 * ============================= */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-card,
  .cta-container {
    padding: 1.5rem;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .process-number {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    order: 1 !important;
  }
  
  .process-icon {
    display: none;
  }
  
  .floating-feature {
    position: static;
    margin-bottom: 1rem;
    max-width: 100%;
    animation: none;
  }
  
  .product-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .uk-flag-element,
  .tech-radar-element,
  .security-badge,
  .uk-map-element,
  .delivery-truck-element,
  .notification-element {
    display: none;
  }
  
  .testimonial-author {
    flex-wrap: wrap;
  }
  
  .verified-badge {
    margin-top: 0.5rem;
    margin-left: 0 !important;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-number {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    order: 1 !important;
  }
  
  .process-icon {
    display: none;
  }
  
  .uk-flag-element,
  .tech-radar-element,
  .security-badge,
  .uk-map-element,
  .delivery-truck-element,
  .notification-element {
    display: none;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .process-content {
    width: calc(50% - 40px);
  }
  
  .floating-feature {
    max-width: 220px;
  }
  
  .right-illustration,
  .uk-map-element,
  .delivery-truck-element,
  .notification-element {
    display: none;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .process-content {
    width: calc(50% - 40px);
  }
}

/* Additional Hover Effects for Modern Look */
.product-card,
.benefit-card,
.article-card,
.testimonial-card {
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

/* Subtle hover effects to enhance UX */
.btn,
.filter-btn,
.action-btn,
.article-link,
.testimonial-prev,
.testimonial-next,
.video-play-button {
  will-change: transform, background-color, color;
}