* {
    margin: 0;
    padding: 0;
}

body{
    background-color: #1F1F1F;
}

a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    color: inherit;
}

button {
    outline: none;
    background-color: inherit;
    border: none;
    cursor: pointer;
}

#header {
    background-color: #1F1F1F;
    padding: 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.menu ul {
    display: flex;
    text-decoration: none;
    list-style: none;
    gap: 20px;
    color: #fff;
}

#contact,
#learn-more {
    background-color: #83BE53;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: #fff;
}

#hero {
    background-image: url('./assets/planetgym-hero.png');
    background-size: cover;
    background-position: center;
    background-color: #1f1f1f;
    height: 860px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 1200px;
    padding-top: 13rem;
    margin: auto;
}

.hero-content h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 5rem;
    width: 55%;
}

.hero-content p{
    width: 50%;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ffffffa8;
}

#about{
    background-color: #1F1F1F;
    padding: 8rem 0;
}

.about-content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 50px;
}

.right h1{
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
}

.right p{
    font-size: 1.2rem;
    color: #ffffffa8;
    margin: 1rem 0 3rem 0;
}

.right-boxes{
    display: flex;
    gap: 20px;
}

.box{
    background-color: #262626;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.box h2{
    color: #83BE53;
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 2rem;
}

.box h5{
    color: #ffffffa8;
}

#our-gym {
    background-color: #1F1F1F;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.our-gym-overlay {
    background-image: url('/assets/planetgym-our-gym.svg');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;  /* Adjust this value to control the overlay intensity */
}

.our-gym-content {
    max-width: 1200px;
    margin: auto;
    position: relative;  /* This ensures the content stays above the overlay */
    z-index: 1;
}

.our-gym-content h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 5rem;
    color: #fff;
    text-align: center;
}

.our-gym-content img{
    filter: grayscale(1)
}

#additionalservices{
    background-color: #1F1F1F;
}

.addser-content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 8rem 0;
    color: #fff;
}

.addser-content h1{
    font-family: 'Oxanium', 'Helvetica Neue', Helvetica, Arial;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.addser-content p{
    font-size: 1.2rem;
    color: #ffffffa8;
}

.top,
.bottom{
    display: flex;
    gap: 30px;
}

.pill{
    background-color: #83be531f;
    padding: 1rem;
    border-radius: 8px;
    color: #83BE53;
}

.pill h4{
    font-family: 'Oxanium', 'Helvetica Neue', Helvetica, Arial;
}

/* Add these styles to your styles.css file */
#pricing {
    background-color: #1F1F1F;
    padding: 8rem 0;
}

.pricing-content {
    max-width: 1200px;
    margin: auto;
    color: #fff;
}

.pricing-content h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    text-align: center;
}

.pricing-content h3 {
    text-align: center;
    color: #ffffffa8;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 4rem;
}

.pricing-card {
    background-color: #262626;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #83BE53;
}

.featured-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #83BE53;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pricing-card h2 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
}

.price .amount {
    font-size: 2.5rem;
    color: #83BE53;
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
}

.price .period {
    color: #ffffffa8;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-card ul li {
    color: #ffffffa8;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card ul li:before {
    content: "•";
    color: #83BE53;
    position: absolute;
    left: 0;
}

.note {
    font-size: 0.9rem;
    color: #ffffffa8;
    border-top: 1px solid #ffffff3d;
    padding-top: 1rem;
}

.visitor-passes {
    text-align: center;
}

.visitor-passes h2 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    margin-bottom: 2rem;
}

.passes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pass-card {
    background-color: #262626;
    padding: 1.5rem;
    border-radius: 10px;
}

.pass-card h3 {
    color: #ffffffa8;
    margin-bottom: 0.5rem;
}

.pass-card .price {
    color: #83BE53;
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin: 0;
}

#cta{
    background-color: #1F1F1F;
    margin-top: -15rem;
}

.cta-content{
    max-width: 1200px;
    margin: auto;
    position: relative;
    color: #fff;
}

img{
    box-sizing: border-box;
    min-width: 100%;
}

.cta-content .right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-0%, -50%);
}

#footer {
    background-color: #1F1F1F;
    margin-top: -10rem;
    padding: 0rem 0 2rem 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ffffffa8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3,
.footer-hours h3 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li,
.footer-hours ul li {
    margin-bottom: 1rem;
    color: #ffffffa8;
}

.footer-links ul li a {
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #83BE53;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ffffff1a;
}

.footer-bottom p {
    color: #ffffffa8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-content {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-hours {
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 1rem auto;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Adding animations to elements */
.hero-content h1, 
.hero-content p,
.hero-content button {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-content p {
    animation-delay: 0.2s;
}

.hero-content button {
    animation-delay: 0.4s;
}

.about-content, 
.our-gym-content,
.pricing-card,
.addser-content {
    animation: scaleIn 0.6s ease-out;
}

/* Hover Animations */
.menu ul li a {
    position: relative;
    transition: color 0.3s ease;
}

.menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #83BE53;
    transition: width 0.3s ease;
}

.menu ul li a:hover::after {
    width: 100%;
}

#contact:hover,
#learn-more:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Media Queries */
/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .header-content,
    .hero-content,
    .about-content,
    .our-gym-content,
    .addser-content,
    .pricing-content {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 4rem;
        width: 70%;
    }

    .hero-content p {
        width: 65%;
    }

    .pricing-grid {
        gap: 20px;
    }
}

/* Mobile Large (480px - 768px) */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .menu ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        width: 100%;
    }

    .hero-content p {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .right-boxes {
        justify-content: center;
    }

    .addser-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .passes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-content .right {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        text-align: center;
        padding: 2rem;
    }
}

/* Mobile Small (320px - 480px) */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .right h1 {
        font-size: 2.5rem;
    }

    .box {
        padding: 15px 25px;
    }

    .box h2 {
        font-size: 1.5rem;
    }

    .top,
    .bottom {
        flex-direction: column;
        gap: 15px;
    }

    .pill {
        text-align: center;
    }

    #hero {
        height: 600px;
    }

    .hero-content {
        padding-top: 8rem;
    }
}

/* Additional Helper Classes for Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in {
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
}

.scale-in {
    opacity: 0;
    animation: scaleIn 0.8s ease-out forwards;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 190, 83, 0.3);
}

.button:active {
    transform: translateY(0);
}


/* Existing header styles */
#header {
    background-color: #1F1F1F;
    padding: 1rem;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Add these new styles for mobile menu */
.menu {
    transition: all 0.3s ease;
}

.menu ul {
    display: flex;
    text-decoration: none;
    list-style: none;
    gap: 20px;
    color: #fff;
}


/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: row; /* Keep row direction */
        padding: 0 1rem;
    }

    /* Hide the menu on mobile */
    .menu {
        display: none;
    }

    /* Adjust logo size for mobile */
    .logo img {
        width: 120px;
        height: auto;
    }

    /* Keep the contact button visible */
    .contact {
        margin-left: auto; /* Push to the right */
    }
}

@media screen and (max-width: 480px) {
    .header-content {
        padding: 0 1.5rem;
    }

    /* Further reduce logo size for smaller screens */
    .logo img {
        width: 250px;
    }

    /* Adjust contact button size */
    #contact {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Hero section base styles */
#hero {
    background-image: url('./assets/planetgym-hero.png');
    background-size: cover;
    background-position: center;
    background-color: #1f1f1f;
    height: 100vh; /* Changed from fixed height to viewport height */
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-content {
    max-width: 1200px;
    padding: 7rem 2rem 0; /* Added horizontal padding */
    margin: auto;
}

.hero-content h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 5rem;
    width: 55%;
    color: #fff;
    line-height: 1;
}

.hero-content p {
    width: 50%;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ffffffa8;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
        width: 70%;
    }

    .hero-content p {
        width: 65%;
        font-size: 1.2rem;
    }

    .hero-content {
        padding-top: 10rem;
    }
}

@media screen and (max-width: 768px) {
    #hero {
        height: 90vh;
        background-position: 70% center; /* Adjust background position for better focus */
    }

    .hero-content {
        padding-top: 8rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        width: 100%;
    }

    .hero-content p {
        width: 100%;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    #hero {
        height: 80vh;
        background-position: 70% center;
    }

    .hero-content {
        padding-top: 10rem;
        width: 80%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.4rem;
        line-height: 1.5;
        color: #fff;
        width: 80%;
    }
}

/* Additional optimization for very small screens */
@media screen and (max-width: 320px) {
    #hero {
        height: 70vh;
    }

    .hero-content {
        padding-top: 4rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Additional optimization for landscape mode */
@media screen and (max-height: 600px) and (orientation: landscape) {
    #hero {
        height: 120vh;
    }

    .hero-content {
        padding-top: 4rem;
    }
}

/* About section base styles */
#about {
    background-color: #1F1F1F;
    padding: 6rem 0;
    overflow: hidden;
}

.about-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 0 2rem;
    color: #fff;
}

/* Left side with image */
.about-content .left {
    flex: 1;
    position: relative;
}

.left img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.left img:hover {
    transform: scale(1.02);
}

/* Right side with content */
.about-content .right {
    flex: 1;
}

.right h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.right p {
    font-size: 1.1rem;
    color: #ffffffa8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Stats boxes */
.right-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.box {
    background-color: #262626;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    background-color: #2d2d2d;
}

.box h2 {
    color: #83BE53;
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.box h5 {
    color: #ffffffa8;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .right h1 {
        font-size: 3rem;
    }

    .box {
        padding: 1.5rem;
    }

    .box h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
    }

    .about-content .left,
    .about-content .right {
        width: 100%;
    }

    .right h1 {
        font-size: 2.5rem;
    }

    .right p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .right-boxes {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .box {
        padding: 1.2rem;
    }

    .box h2 {
        font-size: 1.8rem;
    }

    .box h5 {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    #about {
        padding: 4rem 0;
    }

    .about-content {
        padding: 0 1rem;
        gap: 2rem;
    }

    .right h1 {
        font-size: 2rem;
    }

    .right-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .box {
        padding: 1.5rem;
    }

    .box h2 {
        font-size: 2rem;
    }

    .box h5 {
        font-size: 1rem;
    }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content .left,
.about-content .right {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.about-content .right {
    animation-delay: 0.2s;
}

.box {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.box:nth-child(1) { animation-delay: 0.3s; }
.box:nth-child(2) { animation-delay: 0.4s; }
.box:nth-child(3) { animation-delay: 0.5s; }

/* Our Gym section base styles */
#our-gym {
    background-color: #1F1F1F;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.our-gym-overlay {
    background-image: url('/assets/planetgym-our-gym.svg');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    animation: fadeIn 1s ease-out;
}

.our-gym-content {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.our-gym-content h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: #fff;
    text-align: center;
    position: relative;
}

/* Decorative line under heading */
.our-gym-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #83BE53;
}

/* Image grid container */
.gym-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.gym-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 16/9;
}

.gym-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gym-image:hover img {
    transform: scale(1.05);
}

/* Image overlay with text */
.gym-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gym-image:hover .gym-image-overlay {
    transform: translateY(0);
}

.gym-image-overlay h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gym-image-overlay p {
    color: #ffffffcc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .our-gym-content h1 {
        font-size: 3rem;
    }

    .gym-images-grid {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    #our-gym {
        padding: 4rem 0;
    }

    .our-gym-content h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .gym-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .our-gym-content {
        padding: 0 1rem;
    }

    .our-gym-content h1 {
        font-size: 2rem;
    }

    .gym-images-grid {
        grid-template-columns: 1fr;
    }

    .gym-image-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gym-image {
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

/* Stagger animation for grid items */
.gym-image:nth-child(1) { animation-delay: 0.2s; }
.gym-image:nth-child(2) { animation-delay: 0.3s; }
.gym-image:nth-child(3) { animation-delay: 0.4s; }
.gym-image:nth-child(4) { animation-delay: 0.5s; }
.gym-image:nth-child(5) { animation-delay: 0.6s; }
.gym-image:nth-child(6) { animation-delay: 0.7s; }

/* Loading state */
.gym-image.loading {
    background: linear-gradient(90deg, #262626 0%, #2d2d2d 50%, #262626 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

#our-gym {
    background-color: #1F1F1F;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.our-gym-overlay {
    background-image: url('/assets/planetgym-our-gym.svg');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    animation: fadeIn 1s ease-out;
}

.our-gym-content {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.our-gym-content h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: #fff;
    text-align: center;
    position: relative;
}

.our-gym-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .our-gym-content h1 {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 768px) {
    #our-gym {
        padding: 4rem 0;
    }

    .our-gym-content {
        padding: 0 1.5rem;
    }

    .our-gym-content h1 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    #our-gym {
        padding: 3rem 0;
    }

    .our-gym-content {
        padding: 0 1rem;
    }

    .our-gym-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.1; }
}

#additionalservices {
    background-color: #1F1F1F;
    padding: 6rem 0;
}

.addser-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 0 2rem;
    color: #fff;
}

/* Left content styling */
.addser-content .left {
    flex: 1;
}

.addser-content h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.addser-content p {
    font-size: 1.1rem;
    color: #ffffffa8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Pills styling */
.pills {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.top, .bottom {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pill {
    background-color: rgba(131, 190, 83, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #83BE53;
    transition: all 0.3s ease;
}

.pill:hover {
    background-color: rgba(131, 190, 83, 0.2);
    transform: translateY(-3px);
}

.pill h4 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    white-space: nowrap;
}

/* Right content styling */
.addser-content .right {
    flex: 1;
}

.right img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.right img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .addser-content h1 {
        font-size: 3rem;
    }

    .addser-content p {
        font-size: 1rem;
    }

    .pill {
        padding: 0.8rem 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    #additionalservices {
        padding: 4rem 0;
    }

    .addser-content {
        flex-direction: column;
        gap: 3rem;
    }

    .addser-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .addser-content p {
        text-align: center;
        margin: 1rem auto 2rem auto;
    }

    .pills {
        align-items: center;
    }

    .top, .bottom {
        justify-content: center;
    }

    .right {
        order: -1; /* Move image to top on mobile */
    }
}

@media screen and (max-width: 480px) {
    #additionalservices {
        padding: 3rem 0;
    }

    .addser-content {
        padding: 0 1rem;
        gap: 2rem;
    }

    .addser-content h1 {
        font-size: 2rem;
    }

    .addser-content p {
        font-size: 0.95rem;
    }

    .pills {
        gap: 1rem;
    }

    .top, .bottom {
        flex-direction: column;
        width: 100%;
    }

    .pill {
        text-align: center;
        width: 100%;
        padding: 1rem;
    }

    .pill h4 {
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.addser-content .left, 
.addser-content .right {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.addser-content .right {
    animation-delay: 0.2s;
}

.pill {
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
}

.pill:nth-child(1) { animation-delay: 0.3s; }
.pill:nth-child(2) { animation-delay: 0.4s; }
.pill:nth-child(3) { animation-delay: 0.5s; }
.pill:nth-child(4) { animation-delay: 0.6s; }
.pill:nth-child(5) { animation-delay: 0.7s; }

#cta {
    background-color: #1F1F1F;
    margin-top: -7rem;
    padding: 0 2rem;
    position: relative;
}

.cta-content {
    max-width: 1200px;
    margin: auto;
    position: relative;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.cta-content img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.cta-content .right {
    position: absolute;
    top: 220px;
    right: 5%;
    max-width: 450px;
    background: rgba(31, 31, 31, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-content .right h1 {
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content .right p {
    color: #ffffffa8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-content .right .button {
    display: inline-block;
    background-color: #83BE53;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-content .right .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(131, 190, 83, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .cta-content {
        min-height: 500px;
    }

    .cta-content .right {
        padding: 2.5rem;
    }

    .cta-content .right h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    #cta {
        padding: 4rem 0;
    }

    .cta-content {
        min-height: auto;
        flex-direction: column;
    }

    .cta-content .right {
        position: relative;
        right: auto;
        max-width: 100%;
        margin-top: 100px;
        text-align: center;
        padding: 4rem 2rem;
    }

    .cta-content .right h1 {
        font-size: 2rem;
    }

    .cta-content .right p {
        font-size: 1rem;
    }

    .cta-content img{
        display: none;
    }
}

@media screen and (max-width: 480px) {
    #cta {
        margin-top: -5rem;
        padding: 4rem 1rem;
    }

    .cta-content .right {
        margin-top: -50px;
        padding: 1.5rem;
    }

    .cta-content .right h1 {
        font-size: 1.8rem;
    }

    .cta-content .right p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-content .right .button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-content .right {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Animations section fix */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; /* Changed from lower opacity to full opacity */
        transform: translateY(0); 
    }
}

/* Hero content animations */
.hero-content h1, 
.hero-content p,
.hero-content button {
    animation: fadeIn 0.8s ease-out forwards; /* Will now fade to full opacity */
}

.hero-content p {
    animation-delay: 0.2s;
}

.hero-content button {
    animation-delay: 0.4s;
}

@media screen and (max-width: 480px) {
    #contact {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        white-space: nowrap; /* Prevents text wrapping */
        min-width: 120px; /* Ensures minimum width for the button */
        text-align: center; /* Centers the text */
    }
}

/* Optional: Add this if you want to adjust the button for slightly larger mobile screens */
@media screen and (max-width: 768px) {
    #contact {
        padding: 0.8rem 1.8rem;
        white-space: nowrap;
        min-width: 130px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    #contact {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
        display: inline-block;
    }

    .contact {
        margin-left: auto;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .header-content {
        padding: 0 0.8rem;
    }

    #contact {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .logo img {
        width: 120px; /* Reduce logo size on mobile */
    }
}

@media screen and (max-width: 768px) {
    .pricing-content h1 {
        font-size: 3rem; /* Reduced from 4rem */
    }
}

@media screen and (max-width: 480px) {
    .pricing-content h1 {
        font-size: 2.2rem; /* Further reduced for smaller screens */
        padding: 0 1rem; /* Add some padding on the sides */
        line-height: 1.2; /* Improve readability */
    }
}

.motto {
    margin: 2rem 0;
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
}

.motto-line {
    color: #ffffffa8;
    font-size: 1.1rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.motto-line:hover {
    color: #83BE53;
}

/* Responsive styles for motto */
@media screen and (max-width: 768px) {
    .motto-line {
        font-size: 1rem;
    }
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba56;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Mobile CTA and Footer fixes */
@media screen and (max-width: 768px) {
    #cta {
        margin-top: 0;
        padding-bottom: 0;
        background: #1F1F1F;
    }

    .cta-content {
        min-height: auto;
    }

    .cta-content .right {
        position: relative;
        right: auto;
        margin: 0;
        padding: 2rem;
        background: #1F1F1F;
        backdrop-filter: none;
    }

    #footer {
        margin-top: 0;
        background: #1F1F1F;
    }
}

@media screen and (max-width: 480px) {
    #cta {
        margin-top: 0;
        padding: 2rem 1rem 0 1rem;
    }
    
    .cta-content .right {
        margin: 0;
        padding: 1.5rem;
    }

    #footer {
        padding-top: 2rem;
    }
}

/* Mobile CTA and Footer fixes */
@media screen and (max-width: 768px) {
    #cta {
        margin-top: -5rem;
        padding-bottom: 0;
        background: #1F1F1F;
    }

    .cta-content {
        min-height: auto;
    }

    .cta-content .right {
        position: relative;
        right: auto;
        margin: 0;
        padding: 2rem;
        padding-bottom: 15rem;
        background: #1F1F1F;
        backdrop-filter: none;
    }

    #footer {
        background: #1F1F1F;
    }
}

@media screen and (max-width: 480px) {
    #cta {
        margin-top: 0rem;
        margin-bottom: 15rem;
        padding: 2rem 1rem 0 1rem;
    }
    
    .cta-content .right {
        margin: 0;
        padding: 1.5rem;
    }

    #footer {
        padding-top: 2rem;
    }
}

.motto {
    margin: 2rem 0;
    font-family: 'Oxanium', Arial, Helvetica, sans-serif;
    text-align: left;
}

.motto-line {
    color: #ffffffa8;
    font-size: 1.1rem;
    line-height: 1.8;
    transition: color 0.3s ease;
    text-align: left;
    margin-bottom: 0.5rem;
}

.motto-line .highlight {
    color: #83BE53;
    font-weight: 700;
}

.motto-line:hover {
    color: #fff;
}

/* Responsive styles for motto */
@media screen and (max-width: 768px) {
    .motto {
        text-align: left;
        padding-left: 1rem;
    }
    
    .motto-line {
        font-size: 1rem;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .motto {
        margin: 1.5rem 0;
        padding-left: 0.5rem;
    }
}

/* Adjust base logo size */
.logo img {
    width: 400px; /* Increased from default size */
    height: auto;
}

/* Adjust logo size for tablets */
@media screen and (max-width: 1024px) {
    .logo img {
        width: 300px; /* Slightly smaller for tablets but still larger than original */
    }
}

/* Adjust logo size for mobile */
@media screen and (max-width: 768px) {
    .logo img {
        width: 250px; /* Adjusted for mobile but maintaining presence */
    }
}

/* Adjust logo size for smaller mobile devices */
@media screen and (max-width: 480px) {
    .logo img {
        width: 200px; /* Increased from 120px */
    }
}