/* ArchiSec - Redesigned based on Cross Illuminated Theme */
/* Color Palette inspired by the illuminated cross image */
:root {
  /* Primary Colors from the Cross Image */
  --primary-orange: #ff6b35;
  --primary-red: #e63946;
  --accent-coral: #ff8c69;
  --accent-warm: #ffa07a;
  
  /* Dark Theme Base */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  
  /* Cross-inspired gradients */
  --gradient-cross: linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #dc2626 100%);
  --gradient-glow: radial-gradient(circle, rgba(255,107,53,0.3) 0%, rgba(230,57,70,0.1) 50%, transparent 100%);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-muted: #a3a3a3;
  
  /* Typography */
  --font-heading: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Orbitron', monospace;
}

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

html {
  scroll-behavior: smooth;
}

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

.cyber-security-landing-page {
  min-height: 100vh;
  position: relative;
}

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

/* Navigation Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

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

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

.brand-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.brand-text {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-cross);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cross);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  filter: invert(1);
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-orange);
}

/* Header Actions */
.header-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-cross-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title-main {
  color: var(--text-primary);
}

.hero-title-highlight {
  background: var(--gradient-cross);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  bottom: 0;
  background: var(--gradient-glow);
  z-index: -1;
  border-radius: 8px;
  opacity: 0.3;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-cross);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

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

.btn-outline:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 200px;
  height: 200px;
  background: var(--gradient-glow);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.1;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--gradient-cross);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-primary);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cross);
  border-radius: 20px;
  position: relative;
}

.icon-cross {
  width: 40px;
  height: 40px;
  position: relative;
}

.icon-cross::before,
.icon-cross::after {
  content: '';
  position: absolute;
  background: white;
}

.icon-cross::before {
  width: 40px;
  height: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.icon-cross::after {
  width: 4px;
  height: 40px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

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

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--primary-orange);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-cross);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a0a00 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0.3;
}

.newsletter-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-cross);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.2;
}

.newsletter-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter-input-group {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  padding: 18px 32px;
  background: var(--gradient-cross);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.newsletter-privacy {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.newsletter-privacy input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary-orange);
}

.newsletter-privacy a {
  color: var(--primary-orange);
  text-decoration: none;
}

.newsletter-privacy a:hover {
  text-decoration: underline;
}

.newsletter-message {
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 500;
}

.newsletter-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.newsletter-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Responsive Design for Newsletter */
@media (max-width: 768px) {
  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .newsletter-content h2 {
    font-size: 2.2rem;
  }
  
  .newsletter-input-group {
    flex-direction: column;
  }
  
  .newsletter-btn {
    padding: 16px 24px;
  }
}

/* Newsletter Dedicated Page Styles */
.newsletter-hero-section {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1a0a00 50%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.newsletter-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0.2;
}

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

.newsletter-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.newsletter-hero-description {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 50px;
}

.newsletter-signup-form {
  margin-bottom: 40px;
}

.newsletter-signup-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-signup-group input[type="email"] {
  flex: 1;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.newsletter-signup-group input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-signup-btn {
  padding: 20px 35px;
  background: var(--gradient-cross);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.benefit-icon {
  font-size: 1.2rem;
}

.newsletter-content-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.newsletter-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.newsletter-info-card h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-orange);
  font-weight: 700;
}

.newsletter-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.newsletter-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  font-size: 1.5rem;
  margin-top: 5px;
}

.newsletter-features strong {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 5px;
  display: block;
}

.newsletter-features p {
  color: var(--text-secondary);
  line-height: 1.5;
}

.recent-articles {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.article-preview {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-preview:last-child {
  border-bottom: none;
}

.article-date {
  font-size: 0.85rem;
  color: var(--primary-orange);
  margin-bottom: 8px;
  font-weight: 500;
}

.article-preview h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.article-preview p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

.view-all-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: var(--accent-coral);
}

/* Responsive for Newsletter Page */
@media (max-width: 768px) {
  .newsletter-hero-title {
    font-size: 2.5rem;
  }
  
  .newsletter-hero-description {
    font-size: 1.1rem;
  }
  
  .newsletter-signup-group {
    flex-direction: column;
  }
  
  .newsletter-benefits {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .newsletter-info-card {
    padding: 25px;
  }
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  text-align: center;
}

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

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  background: var(--gradient-cross);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background: var(--bg-primary);
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary-orange);
}

.author-info h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-glow);
  opacity: 0.1;
}

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

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-cross);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-inner {
    padding: 10px 20px;
  }
  
  .site-nav {
    display: none; /* Will be handled by mobile menu */
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Loading States */
.loading {
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

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

/* Pricing Section Styles */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.pricing-card {
  background: var(--bg-tertiary);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-cross);
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 20px;
  z-index: 1;
}

.pricing-card:hover::before {
  opacity: 0.1;
}

.pricing-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cross);
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 24px;
  color: var(--primary-orange);
  font-weight: 600;
}

.amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-features {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: var(--gradient-cross);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.pricing-action {
  position: relative;
  z-index: 2;
}

/* Contact Form Styles */
.contact-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-container {
  background: var(--bg-tertiary);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-primary);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 10px;
  padding: 15px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Navigation Active State */
.nav-link.active {
  color: var(--primary-orange);
}

.nav-link.active::after {
  width: 100%;
}

/* Hero Variants */
.pricing-hero .hero-background,
.support-hero .hero-background,
.blog-hero .hero-background,
.contact-hero .hero-background,
.service-hero .hero-background {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pricing-hero .hero-overlay,
.support-hero .hero-overlay,
.blog-hero .hero-overlay,
.contact-hero .hero-overlay,
.service-hero .hero-overlay {
  background: linear-gradient(
    45deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(230, 57, 70, 0.05) 50%,
    transparent 100%
  );
}

/* ===== BLOG PAGE STYLES ===== */

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 80px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.featured-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.featured-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(230, 57, 70, 0.05) 100%
  );
}

.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
}

.article-date,
.article-read-time {
  position: relative;
}

.article-date::after {
  content: '•';
  position: absolute;
  right: -12px;
  color: var(--primary-orange);
}

/* Blog Grid */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.blog-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-orange);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.card-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.card-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.card-date::after {
  content: '•';
  margin-left: 12px;
  color: var(--primary-orange);
}

.card-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: var(--accent-red);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 80px 20px;
  margin: 60px 0;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.newsletter-form .form-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  max-width: 350px;
  padding: 15px 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.newsletter-form button {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}

.privacy-note {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 10px;
}

/* Full Article */
.full-article {
  margin-top: 40px;
}

.article-header {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(255, 107, 53, 0.3) 100%
  );
  z-index: 2;
}

.article-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.article-category.large {
  background: var(--primary-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.article-hero-content h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.article-meta.large {
  display: flex;
  gap: 30px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.article-meta.large span::after {
  content: '•';
  margin: 0 15px;
  color: var(--primary-orange);
}

.article-meta.large span:last-child::after {
  display: none;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.content-wrapper {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

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

.article-section h2 {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.article-section p {
  margin-bottom: 20px;
}

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

.article-section li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.article-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
}

.cta-box {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.cta-box h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .featured-article {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px auto;
  }
  
  .featured-content h1 {
    font-size: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .newsletter-form input {
    max-width: none;
  }
  
  .article-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .article-meta.large {
    flex-direction: column;
    gap: 10px;
  }
  
  .article-meta.large span::after {
    display: none;
  }
}
