/*=========ECOMMERCE PAGE START====== */

.ecomsuite-section {
    padding: 70px 20px;
    background-color: #543e53; 
    overflow: hidden;
}

.ecomsuite-inner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c6cbe9 0%, #665396 100%); 
    /* ✅ NEAT SHADOW UPDATE */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
    margin-top: 50px;
}

.ecomsuite-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; 
    gap: 25px; 
    align-items: flex-start;
}

.ecomsuite-col {
    padding: 20px;
    background-color: #ffffff; 
    border-radius: 8px;
    /* ✅ NEAT SHADOW UPDATE */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ecomsuite-col:hover {
    /* Retained the great hover effect */
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ecomsuite-image-col {
    padding: 0;
    background: none;
    box-shadow: none;
    align-self: center;
}

.ecomsuite-image-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    /* A subtle shadow on the image itself can add depth */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
    animation: slideInLeft 1s ease-out; 
}

.ecomsuite-text-col {
    padding-right: 10px;
}

.ecomsuite-text-col h2 {
    color: #5448b3;
    font-size: 1.35rem;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.ecomsuite-text-col p {
    color: #7d7e98;
    font-size: 0.89rem;
    line-height: 1.4;
    animation: fadeIn 1.2s ease-out;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    letter-spacing: -0.1px;
}


.ecomsuite-sub-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.ecomsuite-sub-features .sub-feature {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
   
    /* ✅ NEAT SHADOW UPDATE (initial state) */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecomsuite-sub-features .sub-feature:hover {
    transform: translateY(-4px);
    /* ✅ NEAT SHADOW UPDATE (hover state) */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); 
}

.ecomsuite-sub-features .sub-feature i {
    font-size: 22px;
    color: #650162;
    margin-right: 10px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.ecomsuite-sub-features .sub-feature:hover i {
    transform: scale(1.2);
    color: #515dba; /* green accent on hover */
}

.ecomsuite-sub-features .sub-feature h4 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

/* Mobile stacking */
@media (max-width: 768px) {
    .ecomsuite-sub-features {
       grid-template-columns: 1fr 1fr; /* ✅ two columns */
    }

    .ecomsuite-text-col {
    margin-top: -35px;
}
}


.ecomsuite-features-col {
    background-color: #e6f3ff;
    border: 1px solid #cce0f5;
    animation: slideInRight 1s ease-out;
}

.ecomsuite-features-col h3 {
    color: #343a40;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #b3d9ff;
    font-weight: 500;
}

.ecomsuite-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ecomsuite-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #3f3955;
    line-height: 1.3;
    font-family: 'Onest', sans-serif;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: pointer; /* makes it feel interactive */
    font-weight: 400;
    letter-spacing: -0.3px;
}

.ecomsuite-features-list li:hover {
    transform: translateX(5px); /* gentle slide on hover */
    color: #650162; /* matches your theme */
}

.ecomsuite-features-list li .fa-check-circle {
    color: #650162;
    margin-right: 8px;
    font-size: 19px;
    min-width: 16px;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Icon bounce effect */
.ecomsuite-features-list li:hover .fa-check-circle {
    transform: scale(1.2); /* subtle grow */
    color: #28a745; /* green highlight on hover */
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Tablet Layout - 2 columns */
@media (max-width: 992px) {
    .ecomsuite-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .ecomsuite-image-col {
        grid-column: 1 / 3;
        padding-bottom: 10px;
    }
}

/* Mobile Layout - Full Stack */
@media (max-width: 768px) {
    .ecomsuite-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ecomsuite-image-col {
        grid-column: auto;
    }

    .ecomsuite-text-col,
    .ecomsuite-features-col {
        grid-column: auto;
    }

    .ecomsuite-section {
        padding: 40px 10px;
    }

    .ecomsuite-inner-container {
        padding: 20px 15px;
    }

    .ecomsuite-text-col h2 {
        font-size: 20px;
        
    }

    .ecomsuite-text-col p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .ecomsuite-features-col h3 {
        font-size: 16px;
    }

    .ecomsuite-features-list li {
        font-size: 13px;
    }
}


/* WHY CHOOSE OUR EMAIL */
.why-choose {
  background: linear-gradient(135deg, #1a1430, #252038);
  color: #e0e0e0;
  padding: 80px 80px;
  font-family: 'Onest', sans-serif;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: #cdc9f1;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}


.why-subtitle {
  color: #8b87ac;
  font-size: 1rem;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.2px;
  margin-top: -10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

/* Initial state: hidden and shifted left */
.why-col {
  background: linear-gradient(145deg, #352e46, #2d2740);
  padding: 30px 25px;
  border-radius: 16px;
  border: 1px solid #403854;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.6s ease; /* for slide & fade */
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateX(-50px);
}

/* Active state: visible and in position */
.why-col.slide-in {
  opacity: 1;
  transform: translateX(0);
}


.why-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #901d7d, #9e98ea);
}

.why-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: #9e98ea;
}

.why-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #9e98ea;
  margin-bottom: 15px;
  font-weight: 500;
  padding-bottom: 5px; /* space for underline */
  position: relative;   /* keep for other potential effects */
}

.why-col h3::after {
  content: '';
  display: block;       /* ensures it is under the heading text */
  width: 25px;          /* length of the underline */
  height: 2px;
  background-color: #901d7d;
  margin: 5px auto 0;   /* centers underline under the text */
  transition: width 0.3s ease;
}


.why-col:hover h3::after {
  width: 40px;
}

.why-col p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #8b87ac;
  text-align: left;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 20px;
  }
  
  .why-title {
    font-size: 1.7rem;
  }
  
  .why-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  
  .why-grid {
    gap: 20px;
  }
  
  .why-col {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .why-choose {
    padding: 50px 15px;
  }
  
  .why-title {
    font-size: 1.2rem;
  }
  
  .why-subtitle {
    font-size: 0.9rem;
    margin-bottom: 35px;
    line-height: 1.4;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-col {
    padding: 20px 18px;
  }
  
  .why-col h3 {
    font-size: 1.1rem;
  }
  
  .why-col p {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
  }
}


/* IMAGE SECTION */
.image-section {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 10px;
  margin: 0;
  background: linear-gradient(135deg, #e5d9f3 0%, #c7bfef 100%);
  padding-bottom: 10px;
}

.image-section img {
  width: 40%;
  height: auto;
  display: block;
  object-fit: cover; /* ensures the image covers the container nicely */
  transition: transform 0.5s ease;
}

.image-section img:hover {
  transform: scale(1.05); /* subtle zoom on hover */
}


@media (max-width: 768px) {
.image-section img {
  width: 100%;

}
}



/* ======EMAIL HOSTING PAGE STARTS====== */

/* EMAIL WELCOME START */
#emailer-section {
    position: relative;
    padding: 80px 20px;
    background: #f9f9fc;
    overflow: hidden;
}
#emailer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('Images/stock-photo-abstract-polygonal-space-low-poly-background-connecting-dots-lines-connection.jpeg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 1;
}
#emailer-inner-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #eed2f7cc, #faf9ffcc);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
#emailer-col-image {
    flex: 1;
    min-width: 300px;
}
#emailer-col-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
#emailer-col-content {
    flex: 1;
    min-width: 300px;
    color: #222;
}
#emailer-subheader {
    color: #6c63ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1px;
    font-size: 0.86rem;
}
#emailer-header {
    font-size: 2rem;
    color: #374168;
    margin-bottom: 15px;
    margin-top: -6px;
}
#emailer-description {
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Onest', sans-serif;
    font-size: 0.9rem;
}
#emailer-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: -2px;
}
#emailer-feature-list li {
    font-size: 0.77rem;
    color: #5a556b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    padding: 8px 12px;
    background: #fafaff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.25s ease;
    position: relative;
    font-weight: 500;
}
#emailer-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(45deg, #901d7d, #6c63ff);
    opacity: 0;
    transition: opacity 0.25s ease;
}
#emailer-feature-list li:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(108, 99, 255, 0.12);
    border-color: #e6e4ff;
}
#emailer-feature-list li:hover::before {
    opacity: 1;
}
#emailer-feature-list i {
    margin-right: 8px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #901d7d, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.25s ease;
}
#emailer-feature-list li:hover i {
    transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}


/* 📧 EMAIL STATS (Compact Dark Version) */
#emailer-stats-section {
    padding: 50px 15px;
    background: linear-gradient(135deg, #414177, #1a1430);
    color: #fff;
    position: relative;
    overflow: hidden;
}
#emailer-stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(100,60,150,0.05), transparent 60%);
    z-index: 0;
}
#emailer-stats-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}
.emailer-stats-box {
    background: linear-gradient(135deg, rgba(35, 30, 50, 0.85), rgba(25, 20, 40, 0.9));
    border-radius: 10px;
    padding: 25px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(4px);
    border-right: 2px solid #515dba;
}
.emailer-stats-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}
.emailer-stats-box i {
    font-size: 1.8rem;
    color: #a569ff;
    margin-bottom: 8px;
}
.emailer-stats-box h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 3px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    margin-top: -1px;
}
.emailer-stats-box p {
    color: #bdb9d2;
    font-size: 0.85rem;
    font-family: 'Onest', sans-serif;
    margin: 0;
}
.emailer-stats-box i,
.emailer-stats-box h3,
.emailer-stats-box p {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease-out;
}
.emailer-stats-box.visible i,
.emailer-stats-box.visible h3,
.emailer-stats-box.visible p {
    opacity: 1;
    transform: translateY(0);
}
.emailer-stats-box.visible i { transition-delay: 0.2s; }
.emailer-stats-box.visible h3 { transition-delay: 0.4s; }
.emailer-stats-box.visible p { transition-delay: 0.6s; }


@media (max-width: 992px) {
    #emailer-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
@media (max-width: 576px) {
    #emailer-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .emailer-stats-box {
        padding: 18px 8px;
    }
    .emailer-stats-box i {
        font-size: 1.5rem;
    }
    .emailer-stats-box h3 {
        font-size: 1.45rem;
        margin-top: -1px;
    }
    .emailer-stats-box p {
        font-size: 0.75rem;
    }
}


/* EMAILS FEATURES SECTION - COMPACT & WIDER - ENHANCED */
#emailer-features-section {
    padding: 50px 10px;
    background: linear-gradient(135deg, #f9f9fc 0%, #f0f2ff 100%);
    position: relative;
    overflow: hidden;
}
#emailer-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(108, 99, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(108, 99, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
#emailer-features-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}
#emailer-feature-main h2 {
    font-size: 1.8rem;
    color: #33427e;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    letter-spacing: -0.3px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}
#emailer-feature-main p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}
#emailer-feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    justify-content: center;
}
.emailer-feature-item {
    background: linear-gradient(135deg, #ffffffcc, #f3f0ffcc);
    backdrop-filter: blur(4px);
    padding: 15px 12px;
    border-radius: 12px;
    box-shadow: 
        0 3px 12px rgba(0,0,0,0.05),
        0 1px 2px rgba(255,255,255,0.8) inset,
        0 -1px 1px rgba(0,0,0,0.05) inset;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}
.emailer-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.05), transparent);
    transition: left 0.6s ease;
}
.emailer-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 25px rgba(108, 99, 255, 0.15),
        0 2px 4px rgba(255,255,255,0.8) inset;
}
.emailer-feature-item:hover::before {
    left: 100%;
}
.emailer-feature-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #6c63ff;
    margin-bottom: 6px;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}
.emailer-feature-item:hover .emailer-feature-number {
    transform: scale(1.1);
}
.emailer-feature-item h3 {
    font-size: 1.2rem;
    color: #374168;
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
    margin-top: -5px;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}
.emailer-feature-item:hover h3 {
    color: #6c63ff;
}
.emailer-feature-item p {
    font-size: 0.85rem;
    color: #5d6580;
    line-height: 1.4;
    font-family: 'Onest', sans-serif;
    margin-top: -6px;
    transition: color 0.3s ease;
}
.emailer-feature-item:nth-child(1) { animation: fadeInUp 0.6s ease 0.3s forwards; }
.emailer-feature-item:nth-child(2) { animation: fadeInUp 0.6s ease 0.4s forwards; }
.emailer-feature-item:nth-child(3) { animation: fadeInUp 0.6s ease 0.5s forwards; }
.emailer-feature-item:nth-child(4) { animation: fadeInUp 0.6s ease 0.6s forwards; }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.emailer-feature-number {
    animation: subtlePulse 4s ease-in-out infinite;
}
.emailer-feature-item:nth-child(1) .emailer-feature-number { animation-delay: 0s; }
.emailer-feature-item:nth-child(2) .emailer-feature-number { animation-delay: 1s; }
.emailer-feature-item:nth-child(3) .emailer-feature-number { animation-delay: 2s; }
.emailer-feature-item:nth-child(4) .emailer-feature-number { animation-delay: 3s; }
@media (max-width: 992px) {
    #emailer-feature-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .emailer-feature-item:hover {
        transform: translateY(-3px);
    }
}


/* --- PRICE SECTION (Small helper classes) --- */
.rek-plan-note {
    font-size: 0.8rem;
    color: #4d4b5d;
}
.rek-success-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.85rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    font-weight: 600;
    font-family: "Onest", sans-serif;
    font-size: 0.9rem;
    opacity: 0; 
    transform: translateY(10px); 
    transition: all 0.4s ease;
    z-index: 9999;
    pointer-events: none;
}


@media (max-width: 768px) {
    /* UNIVERSAL RESET: Only for animation property, not transitions */
    * {
        animation: none !important;
    }
    
    /* 1. KILL BACKDROP-FILTER (Global Lag Fix) */
    #emailer-inner-container {
        backdrop-filter: none !important;
        background: linear-gradient(135deg, #eed2f7, #faf9ff) !important;
    }
    .emailer-stats-box {
        backdrop-filter: none !important;
        background: linear-gradient(135deg, #231e32, #1a1430) !important;
    }
    .emailer-feature-item {
        backdrop-filter: none !important;
        background: #ffffff !important;
    }
    
    /* 2. ISOLATED FEATURES SECTION FIX (Requested Performance Kill) */
    
    /* Ensure features headers/items are visible, static, and remove desktop animations */
    #emailer-feature-main h2,
    #emailer-feature-main p,
    .emailer-feature-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important; 
    }
    
    /* Kill complex shadows, pulse animation, and all hover effects on feature boxes */
    .emailer-feature-item {
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
        border: 1px solid #eee !important;
    }
    .emailer-feature-item::before {
        content: none !important; 
    }
    .emailer-feature-item:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    .emailer-feature-number {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
    .emailer-feature-item:hover .emailer-feature-number {
        transform: none !important;
    }
    .emailer-feature-item:hover h3,
    .emailer-feature-item:hover p {
        color: initial !important; 
    }
    
    /* 3. WELCOME LIST (NAV MENU) EFFECTS RESTORED */
    #emailer-feature-list li {
        /* Re-enable performant transitions for hover */
        transition: all 0.15s ease-out !important; 
        box-shadow: none !important;
        border-color: #eee !important;
    }
    #emailer-feature-list li:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 1px 5px rgba(108, 99, 255, 0.1) !important;
        border-color: #e6e4ff !important;
    }
    #emailer-feature-list li::before {
        content: '' !important;
        opacity: 0 !important;
        transition: opacity 0.25s ease !important;
    }
    #emailer-feature-list li:hover::before {
        opacity: 1 !important;
    }
    #emailer-feature-list i {
        transition: transform 0.15s ease-out !important;
    }
    #emailer-feature-list li:hover i {
        transform: scale(1.05) !important;
    }
    
    /* 4. STATS POPUP & HOVER RESTORED */
    .emailer-stats-box i,
    .emailer-stats-box h3,
    .emailer-stats-box p {
        opacity: 0; 
        transform: translateY(15px);
        transition: opacity 0.3s ease-out, transform 0.3s ease-out !important; 
    }
    .emailer-stats-box.visible i,
    .emailer-stats-box.visible h3,
    .emailer-stats-box.visible p {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .emailer-stats-box:hover {
        transform: translateY(-2px) !important; 
        transition: transform 0.15s ease-out !important;
    }


    /* 5. MOBILE LAYOUT ADJUSTMENTS (Keep existing) */
    #emailer-inner-container { flex-direction: column; padding: 30px; }
    #emailer-col-image img { max-width: 450px; }
    #emailer-subheader { font-size: 0.9rem; margin-top: -40px; }
    #emailer-header { font-size: 1.3rem; margin-bottom: 12px; }
    #emailer-description { font-size: 0.84rem; margin-bottom: 20px; }
    #emailer-feature-list li { font-size: 0.86rem; justify-content: flex-start; }

    #emailer-feature-row { grid-template-columns: 1fr; gap: 10px; }
    #emailer-feature-main h2 { font-size: 1.5rem; }
    #emailer-feature-main p { font-size: 0.9rem; }
    .emailer-feature-number { font-size: 2.4rem; }
    .emailer-feature-item h3 { font-size: 1.15rem; margin-top: -15px; }
    .emailer-feature-item p { font-size: 0.84rem; }
    
    #emailer-stats-container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .emailer-stats-box { padding: 18px 8px; }
    .emailer-stats-box i { font-size: 1.5rem; }
    .emailer-stats-box h3 { font-size: 1.45rem; }
    .emailer-stats-box p { font-size: 0.75rem; }
}

/* ====OUR TERMS PAGE START==== */


#service-agreement-full {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: #e0ddeb; /* White background for text body */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
    font-family: 'Onest', sans-serif;
    color: #444;
}

/* Main Agreement Title */
#service-agreement-full h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #374168; /* Dark header color */
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e6e4ff; /* Light accent line */
    font-weight: 700;
    letter-spacing: -0.4px;
}

/* Clause Headings (e.g., 1.1 Authorisation) */
#service-agreement-full h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    color: #6c63ff; /* Primary accent color */
    margin-top: 30px;
    margin-bottom: 10px;
    padding: 5px 0;
    font-weight: 600;
    border-left: 4px solid #901d7d; /* Stronger accent indicator */
    padding-left: 10px;
    background-color: #f7f7ff; /* Very light background for clause title */
    border-radius: 0 4px 4px 0;
}

/* Paragraph Text */
#service-agreement-full p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #5d6580; /* Neutral, highly readable text color */
    padding-left: 14px; /* Align with h3 padding */
    letter-spacing: -0.1px;
}

/* Strong/Bold text within paragraphs (used for 'Extra Fee', '25% penalty', etc.) */
#service-agreement-full p strong {
    color: #901d7d; /* Darker accent for emphasis */
    font-weight: 700;
}

/* List Styling (Cancellation Clause 2.4) */
#service-agreement-full ol {
    list-style-type: none; /* Remove default marker */
    padding-left: 14px;
    margin-top: 15px;
    margin-bottom: 25px;
}

#service-agreement-full ol li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #5d6580;
    position: relative;
    padding-left: 20px;
}

/* Custom list markers for the 'a)', 'b)', 'c)' list */
#service-agreement-full ol li::before {
    content: attr(type) ")"; /* Use the 'type' attribute (a, b, c) from the HTML */
    position: absolute;
    left: 0;
    top: 0;
    color: #6c63ff;
    font-weight: 600;
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    #service-agreement-full {
        margin: 20px 10px;
        padding: 15px;
        box-shadow: none; /* Reduce complexity on mobile */
        border: 1px solid #f0f0f0;
    }
    
    #service-agreement-full h1 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    #service-agreement-full h3 {
        font-size: 1.05rem;
        margin-top: 20px;
        border-left: 3px solid #901d7d;
    }
    
    #service-agreement-full p {
        font-size: 0.83rem;
        line-height: 1.6;
        padding-left: 10px;
    }

    #service-agreement-full ol {
        padding-left: 10px;
    }
    
    #service-agreement-full ol li {
        font-size: 0.88rem;
        padding-left: 18px;
    }
}


/* =====ABOUT US PAGE STARTS======= */
/* About Us Section */
.bert-about-section {
    padding: 60px 20px;
    background: #e2ddf7;
    color: #4a4e61;
    font-family: 'Onest', sans-serif;
}

.bert-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    background: #efedf8;
    border-radius: 10px;
    padding-left: 50px;
}

.bert-col {
    flex: 1;
    min-width: 300px;
}

/* Column 1 Text */
.bert-text-col .bert-about-header {
    font-size: 2rem;
    color: #36315e;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.4px;
}

.bert-text-col .bert-about-subheader {
    font-size: 1.2rem;
    color: #3f3b60;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    margin-top: -10px;
}

.bert-text-col .bert-about-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #64667e;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    
}

/* Column 2 Image + Experience */
.bert-image-wrapper {
    position: relative;
    text-align: center;
}

.bert-about-image {
    width: 100%;
    max-width: 360px;
    border-radius: 10px;
}

.bert-experience-box {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #423d99;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
}

.bert-years {
    font-size: 3.9rem;
    font-weight: 700;
    display: block;
}

.bert-experience-text {
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive */
/* About Us Section Mobile Styles */
@media (max-width: 992px) {
    .bert-about-inner {
        flex-direction: column;
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
        gap: 25px;
        border-radius: 8px;
    }

    .bert-col {
        min-width: auto;
        width: 100%;
    }

    /* Column 1 Text adjustments */
    .bert-text-col .bert-about-header {
        font-size: 1.6rem;
        letter-spacing: -0.3px;
        margin-bottom: 8px;
    }

    .bert-text-col .bert-about-subheader {
        font-size: 1rem;
        margin-bottom: 15px;
        margin-top: -5px;
    }

    .bert-text-col .bert-about-description {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #4f516d;
        letter-spacing: -0.2px;
    }

    /* Column 2 Image adjustments */
    .bert-about-image {
        max-width: 300px;
    }

    .bert-experience-box {
        bottom: 10px;
        padding: 8px 16px;
    }

    .bert-years {
        font-size: 3rem;
    }

    .bert-experience-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .bert-about-inner {
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
    }

    .bert-text-col .bert-about-header {
        font-size: 1.4rem;
    }

    .bert-text-col .bert-about-subheader {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .bert-text-col .bert-about-description {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .bert-about-image {
        max-width: 550px;
    }

    .bert-experience-box {
        bottom: 8px;
        padding: 6px 12px;
    }

    .bert-years {
        font-size: 2.5rem;
    }

    .bert-experience-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .bert-about-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bert-text-col .bert-about-header {
        font-size: 1.8rem;
    }

    .bert-text-col .bert-about-subheader {
        font-size: 1rem;
    }

    .bert-text-col .bert-about-description {
        font-size: 0.87rem;
        line-height: 1.55;
    }

    .bert-about-image {
        max-width: 420px;
    }

    .bert-experience-box {
        bottom: 6px;
        padding: 5px 10px;
    }

    .bert-years {
        font-size: 3em;
    }

    .bert-experience-text {
        font-size: 0.9rem;
    }
}

/* ===== COMPACT COMPANY INFO SECTION - DARK MODE ===== */
.bert-company-info-section {
    padding: 40px 15px;
    background: linear-gradient(135deg, #352768 0%, #252038 50%, #1e1a2e 100%);
    font-family: 'Onest', sans-serif;
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.bert-company-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6c63ff, transparent);
}

.bert-company-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px; /* reduced gap */
    justify-content: space-between;
    position: relative;
}

.bert-info-col {
    flex: 1;
    min-width: 220px;
    padding: 20px; /* reduced padding */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
}

.bert-info-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #6c63ff, #901d7d);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bert-info-col:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(108, 99, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.bert-info-col:hover::before {
    opacity: 1;
}

.bert-info-header {
    font-size: 1.2rem; /* smaller font */
    font-family: 'Poppins', sans-serif;
    color: #9e98ea;
    margin-bottom: 10px; /* reduced margin */
    font-weight: 600;
    position: relative;
    padding-bottom: 6px;
}

.bert-info-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px; /* smaller line */
    height: 2px;
    background: linear-gradient(45deg, #6c63ff, #901d7d);
    border-radius: 12px;
}

.bert-info-description {
    font-size: 0.85rem; /* smaller font */
    line-height: 1.5;   /* tighter spacing */
    color: #9f9bbb;
    margin-bottom: 0;
}

/* Column dividers for desktop */
@media (min-width: 993px) {
    .bert-info-col:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -10px; /* closer divider */
        transform: translateY(-50%);
        width: 1px;
        height: 50%; /* shorter height */
        background: linear-gradient(180deg, transparent, rgba(108, 99, 255, 0.3), transparent);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .bert-company-inner {
        flex-direction: column;
        gap: 15px;
    }

    .bert-info-col {
        min-width: 100%;
        padding: 15px;
    }

    .bert-info-col::before {
        opacity: 1;
        width: 100%;
        height: 2px;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, #6c63ff, #901d7d);
    }

    .bert-info-header {
        font-size: 1.1rem;
    }

    .bert-info-description {
        font-size: 0.84rem;
    }
}

@media (max-width: 768px) {
    .bert-company-info-section {
        padding: 35px 40px;
        
    }

    .bert-info-col {
        padding: 12px;
    }

    .bert-info-header {
        font-size: 1rem;
    }

    .bert-info-description {
        font-size: 0.83rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .bert-company-info-section {
        padding: 25px 25px;
        margin-top: 5px;
    }

    .bert-info-col {
        padding: 10px;
        margin-top: 10px;
    }

    .bert-info-header {
        font-size: 0.99rem;
        margin-bottom: 8px;
    }

    .bert-info-description {
        font-size: 0.85rem;
    }
}


