:root {
  /* Color System */
  --acer-red: #DB1E36;
  --acer-red-dark: #b01616;
  --acer-red-light: #e63946;
  
  /* Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --another-gray: #FEE2E2;
  
  /* Semantic Colors */
  --white: #ffffff;
  --red-100: rgba(239, 68, 68, 0.1);
  
  /* Typography */
   --font-family: 'Montserrat', sans-serif;
  
  /* Spacing & Sizing */
  --container-max-width: 1400px;
  --container-max-width-wider: 1440px;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: all 0.15s ease-in-out;
  --transition-normal: all 0.3s ease-in-out;
  --transition-slow: all 0.6s ease-out;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--white);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.container-wider {
  max-width: var(--container-max-width-wider);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 4rem 0 6rem;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 6rem 0 8rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-content h1 {
    font-size: 3.75rem;
  }
}

.hero-highlight {
  color: var(--acer-red);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  background-color: var(--acer-red);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  transform: scale(1);
  font-family: var(--font-family);
}

.hero-cta:hover {
  background-color: var(--acer-red-dark);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

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

.hero-image {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  background-color: var(--gray-200);
  box-shadow: var(--shadow-2xl);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-badge-rating {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--acer-red);
}

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

/* Animation */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}

.trust-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .trust-section h2 {
    font-size: 2.5rem;
  }
}

.trust-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.trust-card:hover {
  box-shadow: var(--shadow-lg);
}

.trust-card-image {
  position: relative;
  width: 100%;
  height: 10rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: var(--border-radius);
}

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

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

.trust-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.6), transparent);
}

.trust-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background-color: rgba(207, 27, 27, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -3rem auto 1rem;
  position: relative;
  z-index: 10;
  border: 4px solid var(--white);
}
.trust-icon-wrapper i{
color: var(--acer-red);
    font-size: x-large;
    }
.trust-icon {
  width: 2rem;
  height: 2rem;
  color: var(--acer-red);
}

.trust-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.trust-card p {
  color: var(--gray-600);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  float:inherit !important;
}

@media (min-width: 1024px) {
  .benefits-header h2 {
    font-size: 2.5rem;
  }
}

.benefits-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 32rem;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-normal);
}

.benefit-card:hover {
  border-color: var(--acer-red);
  box-shadow: var(--shadow-md);
}

.benefit-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: rgba(207, 27, 27, 0.1);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon-wrapper i{
	color: var(--acer-red);
    font-size: x-large;
}
.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--acer-red);
}

.benefit-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.benefit-text p {
  color: var(--gray-600);
}

/* ========================================
   KEY BENEFITS CARD
   ======================================== */

.key-benefits-card {
  background-color: var(--gray-50);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
}

.key-benefits-image {
  position: relative;
  margin-bottom: 2rem;
}

.key-benefits-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.key-benefits-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(207, 27, 27, 0.2);
  border-radius: var(--border-radius-lg);
}

.key-benefits-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.key-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.key-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.key-benefit-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(207, 27, 27, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.key-benefit-icon-wrapper i{
	color: var(--acer-red);
    font-size: larger;
}
.key-benefit-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--acer-red);
}

.key-benefit-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.key-benefit-text p {
  color: var(--gray-600);
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */

.testimonial-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}

.testimonial-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  background-color: var(--gray-200);
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 1.25rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .testimonial-quote {
    font-size: 1.5rem;
  }
}

.testimonial-author {
  color: var(--gray-600);
  font-weight: 500;
}

/* ========================================
   CALLOUT SECTION
   ======================================== */

.callout-section {
  padding: 4rem 0;
  background-color: var(--acer-red);
}

.callout-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.callout-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .callout-content h2 {
    font-size: 2.5rem;
  }
}

.callout-content p {
  font-size: 1.25rem;
  color: var(--another-gray);
  margin-bottom: 2rem;
}

.callout-cta {
  background-color: var(--white);
  color: var(--acer-red);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-family);
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.callout-cta:hover {
  background-color: var(--gray-100);
  box-shadow: var(--shadow-xl);
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.form-section {
  padding: 4rem 0;
}

.form-section.bg-white {
  background-color: var(--white);
}

.form-section.bg-gray {
  background-color: var(--gray-50);
}

.form-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.form-image-container {
  position: relative;
}

.form-image {
  width: 100%;
  height: 20rem;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
}

.form-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-badge-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--acer-red);
}

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

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
  background-color: var(--acer-red);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
  padding-bottom: 6rem;
}

.content-wrapper-f3b7d1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-media-icons-e6a8c3 {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.social-icon-b4c9a1 {
  color: var(--white);
  transition: var(--transition-normal);
  font-size: 25px;
}
.contact-info-d2f8c9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--white);
}

.contact-link-e6a8c3 {
  color: var(--white);
  text-decoration: none;
}

.separator-f3b7d1 {
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
}

.company-info-a1e5b4 {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  margin: 0 auto;
  color: var(--white);
}

.legal-links-b4c9a1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-link-d2f8c9 {
  color: var(--white);
  text-decoration: none;
}

.copyright-e6a8c3 {
  font-size: 14px;
  line-height: 22px;
  color: var(--white);
  text-align: center;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
}

.sticky-footer button, .sticky-footer a {
  position: relative;
  background-color: var(--acer-red);
  color: var(--white);
  font-weight: 500;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-family);
    font-size: .875rem;
    line-height: 1.25rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 2.5rem;
    text-decoration: none;
}

.sticky-footer button:hover {
  background-color: #B01616;
}

/* G Form */
.gform_required_legend{display:none;}
.gfield_label{
	display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}
.ginput_container_text input, .ginput_container_select select, .ginput_container_email input{
	width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    }
.gfield--input-type-checkbox {border:0;}
.gfield--input-type-checkbox legend{display: none;}
.gfield--input-type-captcha label{display: none;}
.gform_button{
    width: 100%;
    background-color: var(--acer-red);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-family);
    font-size: 1.125rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
}
/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.transition { transition: var(--transition-normal); }

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

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1280px) {
  .xl\:text-6xl { font-size: 3.75rem; }
}

.ophrph, .ophrmail{
color:var(--acer-red);
text-decoration: none;
font-family: sans-serif;
}
.ophrs p{
    margin: 1em 0;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-family: sans-serif;
}
.ophrs p i{
font-size: 18px!important;
}

@media screen and (min-width: 1280px) {
    header {
        padding: 10px 0 0;
    }
}
header {
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: block;
}
#mega-menu-wrap-primary #mega-menu-primary{
padding-bottom:0!important;
}