:root {
    --secondarycolor: #e03939;
    --color-1: #2b2b2b;
    --text-color: #eceff1;
    --accent-color: hsla(165, 82%, 51%, 0.301);
}

body {
    font-family: "League Spartan", system-ui, sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
    background-color: #212121;
    color: #ddd;
    margin: 0;
    margin-top: 3%;
    padding: 0;
}

header {
    background: #00000009;
    color: #eceff1;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 400ms ease, box-shadow 400ms ease, transform 200ms ease;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
}

.header-container {
    background: #2b2b2b;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: calc(100% - 40px);
    margin: 10px;
}



.logo img {
    height: 50px;
    width: auto;
}

#hamburger-menu {
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

#hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 2px;
}


.nav-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex: 1;
}

.nav-links a {
    color: #eceff1;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a.active {
    font-weight: bold;
}

.nav-links a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.cta-link {
    background-color: var(--secondarycolor);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 15px 2px var(--accent-color);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    width: 80%;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/pics/Both\ clients.jpg') no-repeat center;
    background-size: cover;
    background-position: center 40%; /* Moved down from center middle to 40% down */
    border-radius: 16px;
    position: relative;
    z-index: 1;
    color: white;
    margin: 0 auto;
    filter: blur(0.5px);
}

.hero * {
    /* Make sure the text inside hero isn't blurred */
    filter: blur(0px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    border-radius: 16px;
}

.hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 20px;
    margin: 20px 0;
    color: #dddddd;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero a {
    color: #fff;
    background-color: var(--secondarycolor);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 400ms ease, transform 200ms ease;
    position: relative;
    z-index: 2;
}

.hero a:hover {
    transform: scale(1.1);
    background-color: var(--accent-color);
    box-shadow: 0 0 15px 2px var(--accent-color);
}

.sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 35%));
    gap: 70px;
    padding: 20px;
    justify-content: center;
}

.section {
    background-color: #2b2b2b;
    border: 2px solid;
    border-radius: 15px;
    padding: 20px;
    transition: background 400ms ease, box-shadow 400ms ease, transform 200ms ease;
    width: 100%;
    justify-self: center;
    position: relative;
    overflow: hidden;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.section p {
    font-size: 18px;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cards {
    position: relative;
}

.cards__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Card structure for consistent button positioning */
.card {
    flex: 1 1 30%;
    padding: 20px;
    background-color: #2b2b2b;
    border: 1px solid #eceff133;
    border-radius: 15px;
    transition: background 400ms ease, box-shadow 400ms ease, transform 200ms ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* This ensures content is spread out with button at bottom */
}

.card-content {
    flex: 1; /* Takes up available space */
}

/* Button alignment at bottom of card */
.card .cta {
    margin-top: auto; /* Pushes the button to the bottom */
    width: calc(100% - 20px); /* Full width minus padding */
    box-sizing: border-box;
}

.card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.card ul li {
    margin-bottom: 10px;
    color: #dddddd;
}

.card__heading {
    color: #59df9c;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card__price {
    color: rgba(255, 255, 255, 0.486);
    font-weight: 700;
    margin-bottom: 40px;
}

.original-price {
    text-decoration: line-through;
    color: #e43f3fab;
    margin-right: 10px;
}

.discounted-price {
    color: rgb(255, 255, 255);
    font-size: 1.5em;
    font-weight: bold;
}

.cta {
    display: block;
    text-align: center;
    background-color: var(--secondarycolor);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease, box-shadow 400ms ease, transform 200ms ease;
}

.cta:hover {
    background-color: var(--accent-color);
    box-shadow: 0 0 15px 2px var(--accent-color);
    transform: scale(1.05);
}

.testimonials {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 50px 20px;
    margin: 20px;
    color: white;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.hover-effect {
    position: relative;
    z-index: 1;
    background-color: #2b2b2b;
    border-radius: 15px;
    padding: 20px;
    transition: background 400ms ease, box-shadow 400ms ease, transform 200ms ease;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(45deg, #ff6ec4, #7873f5, #4fba6f, #ff6ec4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 5s ease infinite;
}

.overlay-effect {
    position: absolute;
    inset: 0;
    pointer-events: none;
    user-select: none;
    opacity: 0.2;
    transition: 400ms ease-in-out;
    border-radius: inherit;
}

.section:nth-child(1):hover {
    background: transparent;
    box-shadow: 0 0 15px 2px var(--accent-color);
    transform: scale(1.05);
}

.section:nth-child(1):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), var(--accent-color, 0.2), transparent 50%);
}

.section:nth-child(2):hover {
    background: transparent;
    box-shadow: 0 0 15px 2px hsl(291.34, 95.9%, 61.76%);
    transform: scale(1.05);
}

.section:nth-child(2):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), hsl(291.34, 95.9%, 61.76%, 0.2), transparent 50%);
}

.section:nth-child(3):hover {
    background: transparent;
    box-shadow: 0 0 15px 2px hsl(338.69, 100%, 48.04%);
    transform: scale(1.05);
}

.section:nth-child(3):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), hsl(338.69, 100%, 48.04%, 0.2), transparent 50%);
}

.section:nth-child(4):hover {
    background: transparent;
    box-shadow: 0 0 15px 2px hsl(48, 100%, 67%);
    transform: scale(1.05);
}

.section:nth-child(4):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), hsl(48, 100%, 67%, 0.2), transparent 50%);
}

.card:nth-child(1):hover {
    box-shadow: 0 0 15px 2px hsl(338.69, 100%, 48.04%);
    transform: scale(1.05);
}

.card:nth-child(2):hover {
    box-shadow: 0 0 15px 2px hsl(338.69, 100%, 48.04%);
    transform: scale(1.05);
}

.card:nth-child(3):hover {
    box-shadow: 0 0 15px 2px hsl(165, 82.26%, 51.37%);
    transform: scale(1.05);
}

.card:nth-child(1):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), hsl(338.69, 100%, 48.04%, 0.2), transparent 50%);
}

.card:nth-child(2):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), hsl(338.69, 100%, 48.04%, 0.2), transparent 50%);
}

.card:nth-child(3):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), hsl(165, 82.26%, 51.37%, 0.2), transparent 50%);
}

/* Add spacing to prevent title overlap with popular tag */
.card .popular-tag + .card-content .card__heading {
    margin-top: 40px; /* Increase spacing to push the heading lower */
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .sections {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 60%;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        width: 90%;
    }

    .card {
        flex: 1 1 100%;
    }

    .profile {
        margin: 0px;
    }

    .profile-container {
        gap: 10px;
    }

    .profile img {
        width: 100px;
        height: 100px;
    }

    .profile h3 {
        font-size: 16px;
     
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta,
    .cta-link {
        padding: 8px 16px;
        font-size: 14px;
    }

    .card__heading {
        font-size: 28px;
    }

    .card__price {
        font-size: 24px;
    }

    .sections {
        padding: 10px;
    }

    .profile-container {
        gap: 25px;
   
    }

    .profile img {
        width: 70px;
        height: 70px;
    }

    .profile h3 {
        font-size: 14px;
 
    }
}

@media (max-width: 360px) {
    .profile-container {
        gap: 10px;

    }

    .profile img {
        width: 50px;
        height: 50px;
    }

    .profile h3 {
        font-size: 12px;

    }
}


#sidebar-active {
    display: none;
}

.links-container {
    flex-direction: row;
}

#hamburger-menu,
.close-sidebar-button {
    display: none;
}

@media (max-width: 768px) {
    .header-container {

            padding: 10px 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 15px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            width: calc(100% - 40px);
            margin-left: 5px;
        }
    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background-color: var(--color-1);
        box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
        transition: right 0.75s ease-out;
        z-index: 10;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #hamburger-menu {
        display: flex;
    }

    #sidebar-active:checked~.nav-links {
        right: 0;
    }

    #sidebar-active:checked~#overlay {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        background: rgba(0, 0, 0, 0.5);
    }

    .close-sidebar-button {
        display: block;
        padding: 20px;
    }
}

#contact, #feedback {
    padding: 20px;
    background-color: #3f3f3f;
    border-radius: 10px;
    max-width: 30%;
    margin: 0 auto;
}

#contact h2, #feedback h2 {
    text-align: center;
    margin-bottom: 20px;
}

#feedback p {
    text-align: center;
    margin-bottom: 20px;
}

#feedback .cta {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    #contact, #feedback {
        max-width: 80%;
    }
}

.about-intro {
    background-color: #2b2b2b;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #59df9c;
}

.about-intro p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-color);
}

.powerlifting-cards {
    justify-content: center;
}

.powerlifting-cards .card {
    max-width: 45%;
}

@media (max-width: 768px) {
    .powerlifting-cards .card {
        max-width: 100%;
    }
}

.pricing-cta {
    background-color: #2b2b2b;
    border: 2px solid var(--secondarycolor);
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondarycolor);
}

.pricing-cta p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
}

.pricing-cta .cta {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .pricing-cta {
        margin: 30px 20px;
        padding: 30px 20px;
    }
}

/* Adjust hover effect for the pricing highlight contact button */
.pricing-highlight .cta:hover {
    background-color: var(--accent-color);
    box-shadow: 0 0 15px 2px var(--accent-color);
    transform: scale(1.02); /* Reduced scale from the default 1.05 */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.premium-gold-text {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 6s ease infinite;
    font-weight: bold;
}

/* Updated Popular Tag - Move to top left */
.popular-tag {
    position: absolute;
    top: 10px;
    left: 15px;
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    animation: gradient-animation 6s ease infinite;
    color: #000;
    padding: 5px 15px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 2;
    height: 32px;
    display: flex;
    align-items: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #2b2b2b;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
}

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

.form-submit-btn {
    background-color: var(--secondarycolor);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    display: block;
    margin: 20px auto 0;
}

.form-submit-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(89, 223, 156, 0.5);
}

.form-button-container {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
}

.form-button-container .cta {
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0 0 0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

/* Formspree Form Styling */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap");

.fs-form {
  display: grid;
  row-gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  background-color: #2b2b2b;
  padding: 25px;
  border-radius: 15px;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-label {
  color: var(--text-color);
  display: block;
  font-family: "Poppins", var(--font-family-body);
  font-size: 1rem;
  line-height: 1.25rem;
}

.fs-description {
  color: #aaa;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-button {
  background-color: var(--secondarycolor);
  border-radius: 9999px;
  color: white;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0.75rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button:hover {
  background-color: var(--accent-color);
  box-shadow: 0 0 15px 2px var(--accent-color);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 9999px;
  border-width: 0;
  box-shadow: #4a4a4a 0 0 0 1px inset;
  color: var(--text-color);
  font-size: 1rem;
  height: 3rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #333;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--secondarycolor) 0 0 0 1px inset;
}

.fs-input::placeholder {
  color: #aaa;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.75rem;
  border-width: 0;
  box-shadow: #4a4a4a 0 0 0 1px inset;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
  background-color: #333;
  min-height: 120px;
}

.fs-textarea:focus-visible {
  box-shadow: var(--secondarycolor) 0 0 0 1px inset;
}

.fs-textarea::placeholder {
  color: #aaa;
}

/* Updated Formspree Form Styling */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Form styling variables - adapted to site theme */
:root {
  --fs-color-background: #2b2b2b;
  --fs-color-background-alt: #3f3f3f;
  --fs-color-border-active: var(--secondarycolor);
  --fs-color-border-default: #4a4a4a;
  --fs-color-highlight: var(--accent-color);
  --fs-color-primary: var(--secondarycolor);
  --fs-color-primary-active: #c03030;
  --fs-color-text-default: var(--text-color);
  --fs-color-text-muted: #aaa;
  
  --fs-font-family-body: "Inter", "League Spartan", system-ui, sans-serif;
}

.fs-form {
  display: grid;
  row-gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  background-color: #2b2b2b;
  padding: 25px;
  border-radius: 15px;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
}

.fs-label {
  color: var(--fs-color-text-default);
  display: block;
  font-family: var(--fs-font-family-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-button {
  background-color: var(--fs-color-primary);
  border-radius: 0.375rem;
  color: white;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  padding: 1rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button:hover {
  background-color: var(--accent-color);
  box-shadow: 0 0 15px 2px var(--accent-color);
}

.fs-input {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--fs-color-border-default) 0 0 0 1px inset;
  color: var(--fs-color-text-default);
  font-size: 1rem;
  height: 2.5rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-color: #333;
}

.fs-input:focus-visible {
  box-shadow: var(--fs-color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--fs-color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.375rem;
  border-width: 0;
  box-shadow: var(--fs-color-border-default) 0 0 0 1px inset;
  color: var (--fs-color-text-default);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
  background-color: #333;
  min-height: 100px;
}

.fs-textarea:focus-visible {
  box-shadow: var(--fs-color-border-active) 0 0 0 1.5px inset;
  outline: 3px solid var(--fs-color-highlight);
  outline-offset: 0;
}

.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.coming-soon {
    background-color: #2b2b2b;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.coming-soon h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondarycolor);
}

.coming-soon p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Discount Tag Styles */
.discount-tag {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 4;
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    animation: gradient-animation 6s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #000;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    text-align: center;
    width: 110px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-tag .percentage {
    font-size: 19px;
    font-weight: 700;
    margin-left: 3px;
}

/* Remove individual color classes as we're using the gold gradient for all */
.discount-5, .discount-10, .discount-20 {
    color: #000; /* Keep text color consistent */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Remove the old position adjustment for popular tag + discount tag */
.card .popular-tag + .discount-tag {
    top: 10px; /* Keep at same top position */
    right: 20px;
}

/* Add hover effects for cards 4 and 5 (6-month and 12-month) */
.card:nth-child(4):hover {
    box-shadow: 0 0 15px 2px hsl(195, 100%, 50%, 0.7);
    transform: scale(1.05);
}

.card:nth-child(5):hover {
    box-shadow: 0 0 15px 2px hsl(271, 100%, 50%, 0.7);
    transform: scale(1.05);
}

.card:nth-child(4):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), hsl(195, 100%, 50%, 0.2), transparent 50%);
}

.card:nth-child(5):hover .overlay-effect {
    opacity: 1;
    background: radial-gradient(circle at var(--x) var(--y), hsl(271, 100%, 50%, 0.2), transparent 50%);
}

/* Social media links */
.social-link {
    display: inline-block;
    color: var(--secondarycolor);
    text-decoration: none;
    margin-top: 8px;
    padding: 6px 12px;
    border: 1px solid var(--secondarycolor);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background-color: var(--secondarycolor);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(224, 57, 57, 0.3);
}