/* Force Security Premium Page Styling */
:root {
  --force-primary: #7D2240;
  --force-secondary: #4A1425;
  --force-accent: #FFD700;
  --card-bg: rgba(20, 25, 30, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-color: rgba(255, 255, 255, 0.9);
}

/* Fix general spacing issues */
.container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}

section {
  padding: 4rem 0;
  position: relative;
}

/* Hero section fixes */
.force-hero {
  min-height: 650px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/security-home-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 6rem 0;
}

.hero-content {
  max-width: 900px;
  width: 90%;
  z-index: 2;
}

.provider-logo-container {
  margin-bottom: 2rem;
}

.provider-hero-logo {
  max-width: 220px;
  height: auto;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
  color: var(--force-accent);
}

/* Section layouts */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-subtitle {
  color: var(--force-primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Stats container fix */
.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  flex: 1;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--force-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Features section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(125, 34, 64, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--force-primary);
}

.feature-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--force-primary);
}

.feature-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '•';
  color: var(--force-primary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* Equipment showcase */
.equipment-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.equipment-item.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.equipment-item.reverse .equipment-info {
  direction: ltr;
}

.equipment-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.equipment-image img {
  width: 100%;
  height: auto;
  display: block;
}

.equipment-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--force-primary);
}

.equipment-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.equipment-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.equipment-features li i {
  color: var(--force-primary);
  margin-top: 0.25rem;
}

/* Packages styling */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.package-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(125, 34, 64, 0.3);
}

.package-card.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--force-primary);
  z-index: 1;
}

.package-badge {
  background: var(--force-primary);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.package-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.package-price {
  margin-bottom: 0.5rem;
}

.package-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--force-primary);
}

.period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.equipment-cost {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.equipment-cost .cost {
  font-weight: 600;
  color: white;
}

.package-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-description {
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
}

.package-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.package-features li i {
  color: var(--force-primary);
  margin-top: 0.25rem;
}

.package-features li.not-included {
  color: rgba(255, 255, 255, 0.5);
}

.package-features li.not-included i {
  color: rgba(255, 255, 255, 0.3);
}

.package-cta {
  margin-top: auto;
  padding-top: 1rem;
  text-align: center;
}

.package-cta a {
  width: 100%;
}

.custom-package {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

.custom-package-content {
  flex: 1;
  min-width: 300px;
}

.custom-package-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--force-primary);
}

.package-notice {
  background: rgba(125, 34, 64, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(125, 34, 64, 0.2);
}

.package-notice i {
  color: var(--force-primary);
  font-size: 1.5rem;
}

/* Testimonials styling */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
  border-color: rgba(125, 34, 64, 0.2);
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  color: var(--force-accent);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  position: relative;
  padding-left: 1.25rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--force-primary);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.verified-badge {
  font-size: 0.85rem;
  color: var(--force-primary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Comparison table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, 
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  background: rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.comparison-table .highlight {
  color: var(--force-primary);
  font-weight: 600;
}

.force-column {
  background: rgba(125, 34, 64, 0.1);
}

/* Technology cards */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(125, 34, 64, 0.3);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--force-primary);
}

.tech-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--force-primary);
}

.tech-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Form styling */
.quote-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.quote-form {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

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

.quote-benefits {
  margin-top: 2rem;
}

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

.benefit-item i {
  color: var(--force-primary);
}

.form-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-heading h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: white;
  font-size: 1rem;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--force-primary);
  box-shadow: 0 0 0 2px rgba(125, 34, 64, 0.3);
}

/* Interactive demo section */
.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.demo-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.demo-image img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(125, 34, 64, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Responsive fixes */
@media (max-width: 1024px) {
  .section-grid,
  .demo-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .equipment-item,
  .equipment-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
  }
  
  .equipment-features li {
    justify-content: center;
  }
  
  .quote-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid,
  .packages-grid,
  .testimonials-slider,
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    justify-content: center;
  }
  
  .stat-box {
    min-width: 140px;
    flex: 0 0 calc(50% - 1rem);
  }
}

/* Animation enhancements */
.uvp-animation {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/force-security-tech.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0;
}

.uvp-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.uvp-item {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.uvp-item:hover {
  transform: translateY(-10px);
  border-color: rgba(125, 34, 64, 0.3);
}

.uvp-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--force-primary);
}

/* Force branding overrides */
.btn-primary {
  background-color: var(--force-primary);
  border-color: var(--force-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--force-secondary);
  border-color: var(--force-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--force-primary);
  color: var(--force-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--force-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--force-primary);
  color: var(--force-primary);
  transform: translateY(-3px);
}

/* Specific styling for quote buttons */
.get-quote-btn {
  background-color: var(--force-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--force-primary);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.get-quote-btn:hover {
  background-color: var(--force-secondary);
  border-color: var(--force-secondary);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/* Override any styling that may be interfering */
.package-card .get-quote-btn,
.custom-package .get-quote-btn,
.package-cta .get-quote-btn {
  background-color: var(--force-primary) !important;
  color: white !important;
  border: 2px solid var(--force-primary) !important;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* Form submit button */
.quote-form button[type="submit"] {
  background-color: var(--force-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--force-primary);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.quote-form button[type="submit"]:hover {
  background-color: var(--force-secondary);
  border-color: var(--force-secondary);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/* Fix the Trust Badges section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.trust-logo {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%) brightness(1.5);
  transition: filter 0.3s ease;
}

.trust-logo:hover {
  filter: grayscale(0%) brightness(1.5);
}

/* SEO Enhancements - New Style Additions */

/* Breadcrumbs navigation */
.breadcrumbs {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs ol {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumbs li:last-child span {
  color: var(--force-primary);
  font-weight: 600;
}

/* Resource link sections */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.resource-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.resource-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.resource-card h3 i {
  color: var(--force-primary);
}

.resource-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-links li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.25rem;
}

.resource-links li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--force-primary);
}

.resource-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.resource-links a:hover {
  color: var(--force-primary);
  text-decoration: underline;
}

/* FAQ Section Styling */
.faq-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  padding: 4rem 0;
}

.faq-container {
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.1);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-color);
}

.faq-toggle {
  font-size: 1rem;
  color: var(--force-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* Enhanced footer content */
.footer-content {
  padding: 4rem 0 2rem;
}

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

.footer-col h3 {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  padding-bottom: 0.75rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--force-primary);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--force-primary);
  transform: translateY(-3px);
}

/* Related topics section */
.related-topics {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 1rem;
}

.related-topics h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.topic-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.topic-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

/* Copyright section */
.copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0.5rem 0;
}

.disclaimer {
  font-size: 0.8rem;
}

.disclaimer a {
  color: var(--force-primary);
  text-decoration: none;
}

.disclaimer a:hover {
  text-decoration: underline;
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none; /* Initially hidden, shown via JS */
  max-width: 400px;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Back to top button */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--force-primary);
  color: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--force-secondary);
  transform: translateY(-5px);
}

/* Form checkbox styling */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Sitemap CSS for additional SEO */
.sitemap-links {
  display: none; /* Hidden visually but available for search engines */
}

/* Schema.org highlight class */
.schema-highlight {
  display: inline-block;
  background-color: rgba(125, 34, 64, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-weight: 600;
}

/* Hero section adjustments */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-buttons .get-quote-btn {
  width: auto;
  min-width: 200px;
}

/* Fix testimonials-cta button */
.testimonials-cta .get-quote-btn {
  width: auto;
  min-width: 200px;
  margin: 0 auto;
}

/* Make all get-quote-btn consistent everywhere */
.get-quote-btn {
  background-color: var(--force-primary) !important;
  color: white !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  border: 2px solid var(--force-primary) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  cursor: pointer !important;
  font-size: 1rem !important;
} 