/* Global Text Improvements */
* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
  /* Color Palette */
  --primary-color: #eb5d1e;
  --primary-hover-color: #ef7f4d;
  --text-dark: #212529;
  --text-light: #7a6960;
  --background-light: #fef8f5;
  --white: #fff;
}

/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'Raleway', sans-serif;
  line-height: 1.3;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Utility Classes */
.section-bg {
  background-color: var(--background-light);
}

/* Responsive AOS Animation */
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Header */
#header {
  height: 60px;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  z-index: 997;
}

#header .logo h1 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0;
}

#header .logo h1 a {
  color: var(--text-light);
}

#main {
  margin-top: 60px;
}

/* Navigation - Desktop */
.navbar {
    padding: 0;
}

.navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar a {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 30px;
    color: #4e4039;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.navbar a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;  /* Hide by default */
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: none;  /* Hide hamburger menu */
    }

    #header .navbar {
        display: none;  /* Hide the full navigation menu on mobile */
    }
}

/* Remove ALL other mobile navigation styles */
@media (max-width: 768px) {
    /* Remove any navbar styles from here */
    /* Keep only non-navigation mobile styles */
    #header {
        height: 60px;
    }

    #header .logo h1 {
        font-size: 24px;
    }
}

/* Hero Section */
#hero {
    width: 100%;
    height: 70vh;
    background: var(--background-light);
    margin: 60px 0 -60px 0;
    border-bottom: 2px solid #fcebe3;
    position: relative;
    overflow: hidden;
}

#hero .container {
    position: relative;
    z-index: 3;
}

#hero .row {
    position: relative;
}

#hero .hero-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

#hero .col-lg-6:first-child {
    position: relative;
    z-index: 2;
    background: rgba(254, 248, 245, 0.9);
    padding: 20px;
}

#hero h1 {
    font-size: clamp(28px, 6vw, 48px);
    color: #4e4039;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

#hero h2 {
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.5;
    margin-bottom: 30px;
}

#hero .btn-get-started {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 28px;
  border-radius: 3px;
  margin-top: 30px;
  transition: background 0.5s;
  font-weight: 600;
  letter-spacing: 0.03em;
}

#hero .btn-get-started:hover {
  background: var(--primary-hover-color);
}

/* Animation */
@keyframes up-down {
  0% { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}

/* Sections General */
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  color: #c2b7b1;
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title p {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

/* Add these new styles */
.pricing-hero {
    position: relative;
    z-index: 1;
    min-height: 200px;
    padding: 60px 0;
    margin-bottom: 0;
    background-position: center !important;
    background-size: cover !important;
}

/* Pricing Section */
.pricing {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    background: var(--background-light);
}

.pricing h1 {
    position: relative;
    z-index: 3;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.pricing p {
    position: relative;
    z-index: 3;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-box {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.pricing-box.featured {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-header {
    margin-bottom: 10px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price h4 sup {
    font-size: 1.5rem;
    position: relative;
    top: -15px;
}

.price h4 span {
    font-size: 1rem;
    font-weight: 400;
}

.price h5 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.price p small {
    font-size: 0.85rem;
    opacity: 1;
    font-weight: 600;
    display: block;
    margin-top: 8px;
    line-height: 1.4;
}

.pricing-box.featured .price p small {
    color: #ffffff;
}

.price p .included-feature {
    display: block;
    margin-top: 3px;
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Button styles */
.btn-buy {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    background: var(--primary-color);
    color: var(--white) !important;
    font-weight: 500;
    transition: transform 0.3s ease;
    align-self: center;
    margin-top: auto;
    font-size: 0.9rem;
    text-decoration: none;
}

/* Guardian (featured) plan button */
.pricing-box.featured .btn-buy {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
}

.btn-buy:hover {
    transform: scale(1.05);
}

.pricing-box.featured .btn-buy:hover {
    transform: scale(1.05);
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
}

/* Best Value Button */
.pricing-box:last-child .btn-buy {
    background: var(--primary-color);
    padding: 8px 25px;
    font-size: 0.9rem;
}

.pricing-box:last-child .btn-buy .value-emoji {
    font-size: 1.5rem;
    margin: -4px 2px 0;
}

@media (max-width: 991px) {
    .pricing-box {
        margin-bottom: 30px;
    }
}

/* Client Section */
.clients {
    padding: 40px 0;
}

.client-item {
    text-align: center;
    padding: 5px;
}

.client-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.client-item img {
    max-width: 110px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    transition: transform 0.3s ease;
}

.client-item:hover img {
    transform: scale(1.05);
}

.client-name {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* Swiper adjustments */
.clients .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .client-item {
        padding: 2px;
    }
    
    .client-item img {
        max-width: 90px;
    }
}

/* FAQ Section adjustments */
.faq {
    padding: 60px 0 15px;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    padding-left: 30px;
    cursor: pointer;
    color: var(--primary-color);
    transition: 0.3s;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.faq .faq-list p {
    margin: 0;
    padding: 15px 0 0 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.faq .faq-list i {
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: var(--text-dark);
}

.faq .faq-list .collapsed:hover {
    color: var(--primary-color);
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
}

/* Team Section */
.team {
    padding: 15px 0 60px;
    background: var(--background-light);
}

.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background: var(--white);
    overflow: hidden;
}

.team .member .member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    text-align: center;
}

.team .member:hover .member-info {
    bottom: 0;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    color: var(--text-light);
    margin: 0 5px;
    transition: 0.3s;
}

.team .member .social a:hover {
    color: var(--primary-color);
}

.swiper-wrapper {
    justify-content: center;
}

.swiper-slide {
    flex-shrink: 1 !important;
}

.client-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.client-item a:hover {
    color: var(--text-dark);
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Restore the pricing features styles */
.pricing-features {
    margin: 15px 0;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    margin: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-box.featured .pricing-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo adjustment */
#header .logo {
    margin-right: auto;
    max-width: 200px;
}

/* Add scroll margin to sections */
section[id] {
    scroll-margin-top: 140px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Header & Navigation */
  #header {
    height: 60px;  /* Smaller header on mobile */
  }

  #header .logo h1 {
    font-size: 24px;  /* Smaller logo text */
  }

  .navbar a {
    padding: 6px 15px;
    font-size: 0.9rem;
  }

  /* Hero Section */
  #hero {
    height: auto;
    min-height: 70vh;
    padding: 60px 0;
    margin-top: 60px;
  }

  #hero .container {
    padding: 0 20px;
  }

  #hero .hero-img {
    margin-top: 40px;
  }

  #hero .hero-img img {
    width: 80%;
    max-width: 100%;
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 1.5;
  }

  /* Pricing Section */
  .pricing-box {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .pricing h1 {
    font-size: 2rem;
  }

  .pricing p {
    font-size: 1.1rem;
  }

  .price h4 {
    font-size: 2rem;
  }

  .price h5 {
    font-size: 0.9rem;
  }

  .pricing-features li {
    padding: 6px 0 6px 25px;
    font-size: 0.9rem;
  }

  .pricing-features li i {
    top: 12px;
    font-size: 0.9rem;
  }

  /* FAQ Section */
  .faq .faq-list .question {
    font-size: 16px;
    padding-left: 25px;
  }

  .faq .faq-list p {
    font-size: 15px;
    padding: 10px 0 0 25px;
  }

  /* Sections General */
  section {
    padding: 40px 0;
  }

  .section-title p {
    font-size: 24px;
  }

  /* Navigation Menu */
  .navbar {
    position: fixed;
    top: auto;
    bottom: 20px;
    right: 20px;
    transform: none;
    border-radius: 30px;
    padding: 10px;
  }

  .navbar ul {
    flex-direction: row;
    gap: 10px;
  }

  .navbar a {
    padding: 8px;
  }

  .navbar a span {
    display: none;
  }

  /* Adjust scroll offset for mobile */
  section[id] {
    scroll-margin-top: 80px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .pricing-box {
    padding: 15px 10px;
  }

  .btn-buy {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .price h4 {
    font-size: 2.2rem;
  }
}

/* Container adjustment */
.container {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1400px;
}

/* Adjust container width for different screen sizes */
@media (min-width: 1200px) {
    .container {
        max-width: none;
        padding-right: 60px;
    }
}

/* Modern Contact Section */
.contact {
    padding: 60px 0 20px 0;
    position: relative;
    margin-top: auto;
}

/* Push content to bottom */
#main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact .section-title {
    margin-bottom: 30px;
    padding-bottom: 0;
}

.contact .section-title p {
    font-size: 28px;
    margin-bottom: 0;
}

/* Footer adjustments */
#footer {
    margin-top: 0;
    padding-top: 0;
}

.footer-top {
    padding: 0;
}

.container.py-4 {
    padding: 10px 0 !important;
}

/* Adjust scroll behavior */
#contact {
    scroll-margin-top: 0;  /* Remove scroll margin */
}

/* Residential Section */
.residential {
    padding: 40px 0;
    background: var(--background-light);
    overflow: hidden;  /* Contain the scrolling */
}

.residential-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    animation: scroll 20s linear infinite;
}

.residential-carousel:hover {
    animation-play-state: paused;
}

.residential .client-item {
    flex: 0 0 300px;  /* Fixed width for each item */
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.residential .client-item:hover {
    transform: translateY(-5px);
}

.residential .client-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 3));  /* Scroll through 3 items */
    }
}

/* Make sure we duplicate items for smooth infinite scroll */
.residential-carousel {
    display: flex;
    width: calc(300px * 12);  /* 6 items * 2 (duplicate) */
}

.residential-carousel .client-item {
    animation: swap 40s linear infinite;
}

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

/* Pricing Page Hero Section */
.pricing-hero {
    position: relative;
    z-index: 1;
    min-height: 200px;  /* Minimum height */
    padding: 60px 0;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    /* Pricing Page Hero Section Mobile */
    #hero.pricing-hero {
        height: auto;
        min-height: 150px;
        padding: 40px 0;
        margin-top: 60px !important;  /* Override inline style */
        margin-bottom: 0 !important;  /* Override inline style */
        position: relative;
        z-index: 1;
        background-position: center !important;
        background-size: cover !important;
    }

    /* Pricing Section Mobile Adjustments */
    .pricing {
        padding-top: 40px;
        position: relative;
        z-index: 2;
        background: var(--background-light);
    }

    .pricing h1 {
        margin-top: 20px;
    }
}

/* Swiper Navigation and Pagination */
.clients .swiper-button-next,
.clients .swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
}

.clients .swiper-button-next:after,
.clients .swiper-button-prev:after {
    font-size: 20px;
}

.clients .swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
}

.clients .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Adjust spacing */
.clients .clients-slider {
    padding: 0 40px;  /* Make room for navigation arrows */
    margin-bottom: 40px;  /* Make room for pagination */
}

/* Logo styles */
#header .logo h1 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 0;
}

/* Mobile logo adjustments */
@media (max-width: 991px) {
    #header .logo h1 {
        font-size: 20px;
        text-align: left;
    }
    
    #header .logo h1 span {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }
}

/* Quick Navigation Buttons */
.quick-nav {
    display: flex;
    gap: 10px;
    margin: 0 30px;
}

.quick-btn {
    padding: 8px 20px;
    border-radius: 4px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Mobile Adjustments */
@media (max-width: 991px) {
    .quick-nav {
        gap: 6px;
    }

    .quick-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    #header .container {
        padding: 0 15px;
    }
    
    .navbar a {
        padding: 8px 0 8px 20px;
        font-size: 0.85rem;
    }
}

/* Remove ALL conflicting mobile styles */
@media (max-width: 768px) {
    /* Remove any navbar styles from here */
    .navbar {
        position: fixed !important;
        padding: 10px !important;
    }
}

@media (max-width: 480px) {
    .quick-nav {
        right: 10px;
        gap: 5px;
    }
    
    .quick-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--background-light);
    padding: 70px 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 65px 0 5px;
    }
    
    .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* Blog Styles */
.blog-section {
    padding: 120px 0 60px;
}

.blog-post {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Service Areas Section */
.service-areas {
    padding: 60px 0;
    background: var(--background-light);
}

.service-areas ul {
    list-style: none;
    padding: 0;
}

.service-areas li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 20px;
}

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

/* Business Info */
.business-info {
    background: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Service Box Styles */
.icon-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.icon-box .icon {
    margin-bottom: 20px;
}

.icon-box .icon i {
    color: var(--primary-color);
    font-size: 32px;
    line-height: 1;
}

.icon-box .title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.icon-box .description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

/* Plan highlight link style */
.icon-box .plan-highlight {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
    background: var(--primary-color);
    padding: 4px 15px;
    border-radius: 50px;
    transition: transform 0.3s ease;
    line-height: 1.2;
}

.icon-box .plan-highlight:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: white;
}

/* For the featured box */
.pricing-box.featured .plan-highlight {
    background: white;
    color: var(--primary-color);
}

.pricing-box.featured .plan-highlight:hover {
    color: var(--primary-color);
}

/* Remove all Edge-specific fixes */
}

/* Discount Notice Styles */
.discount-notice {
    margin: 20px auto;
    padding: 15px;
    max-width: 800px;
    color: #4e4039;
    line-height: 1.6;
    text-align: center;
}

.discount-notice i {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: inline-block;
    margin: 0 8px;
}

/* Mobile adjustments for discount notice */
@media (max-width: 768px) {
    .discount-notice {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: scale(0.8, 1);  /* Compress horizontally only */
        width: 125%;  /* Compensate for scale */
        margin-left: -12.5%;  /* Center the wider element */
    }
    
    .heart-wrap {
        display: block;
        margin: 8px 0;
        font-size: 1.2rem;
        transform: scale(1);  /* Reset transform for hearts */
    }
    
    .text-wrap {
        display: block;
        margin: 8px 0;
        white-space: nowrap;
        font-size: 0.9rem;  /* Larger font size */
        width: 100%;
        padding: 0;
    }
}

/* Best Value Badge */
.best-value-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    top: -5px;
}

/* Best Value Badge Emoji */
.value-emoji {
    font-size: 2.5rem;
    vertical-align: middle;
    display: inline-block;
    margin: -8px 4px 0;
    line-height: 1;
}

/* Keep the shadow effect adjusted for new size */
.best-value-badge:after {
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(235, 93, 30, 0.3);
}

/* White checkmarks for Guardian (featured) plan */
.pricing-box.featured .pricing-features li i {
    color: white;  /* Make checkmarks white */
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Ensure text is also white in featured plan */
.pricing-box.featured .pricing-features li {
    color: white;
}

/* Best Value Button */
.pricing-box:last-child .btn-buy {
    background: var(--primary-color);
    padding: 8px 25px;
    font-size: 0.9rem;
}

.pricing-box:last-child .btn-buy .value-emoji {
    font-size: 1.5rem;  /* Slightly smaller than the badge emojis */
    margin: -4px 2px 0;
}

.pricing-box:last-child .btn-buy:hover {
    background: var(--primary-hover-color);
    transform: scale(1.05);
}

/* Mobile Priority Notice */
.mobile-priority-notice {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .mobile-priority-notice br {
        display: block;
        margin: 10px 0;
    }
}

/* Priority Container Styles */
.priority-container {
    display: inline;
}

.priority-heart, .priority-text {
    display: inline;
}

@media (max-width: 768px) {
    .priority-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 15px 0;
    }

    .priority-heart {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 8px 0;
    }

    .priority-text {
        display: block;
        text-align: center;
        padding: 8px 0;
        width: 100%;
    }
}

.heart-wrap, .text-wrap {
    display: inline;
}

@media (max-width: 768px) {
    .discount-notice {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: scale(0.8, 1);  /* Compress horizontally only */
        width: 125%;  /* Compensate for scale */
        margin-left: -12.5%;  /* Center the wider element */
    }
    
    .heart-wrap {
        display: block;
        margin: 8px 0;
        font-size: 1.2rem;
        transform: scale(1);  /* Reset transform for hearts */
    }
    
    .text-wrap {
        display: block;
        margin: 8px 0;
        white-space: nowrap;
        font-size: 0.9rem;  /* Larger font size */
        width: 100%;
        padding: 0;
    }
}