/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    font-size: 24px;
    color: #ff6600;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ff6600;
}

.btn-login {
    background: #ff6600;
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

.btn-login:hover {
    background: #cc5500;
}

/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x900/?gym,fitness') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.btn {
    background: #ff6600;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #cc5500;
}

/* Sections */
.section {
    padding: 60px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: #ff6600;
}

.section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* Showcase Section */
.showcase-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.showcase-grid img {
    width: 30%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.showcase-grid img:hover {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-card {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

/* Download Section */
#download {
    text-align: center;
    padding: 60px 0;
}

#download .btn {
    margin-top: 20px;
    display: inline-block;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 20px auto;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

.contact-form textarea {
    height: 100px;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
footer {
    background-color: #ff6600;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pricing-card {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #ff6600;
}

.pricing-card p {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin-top: 15px;
    display: inline-block;
}

/* Highlight Featured Plan */
.featured {
    background-color: #ff6600;
    color: white;
    transform: scale(1.05);
}

.featured h3 {
    color: white;
}

.featured ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.featured .btn {
    background: white;
    color: #ff6600;
}

.featured .btn:hover {
    background: #f0f0f0;
}
