:root {
  --primary-color: #ff5722; /* Orange CTA */
  --secondary-color: #673ab7; /* Purple */
  --accent-color: #03a9f4; /* Light Blue */
  --text-color: #333;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --font-main: "Outfit", sans-serif;
  --spacing-unit: 1rem;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

/* Header */
.site-header {
  background-color: var(--white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  color: var(--white);
  padding: 4rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}

/* Utilities */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: #e64a19;
}

.text-center {
  text-align: center;
}
.section-padding {
    padding: 4rem 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); /* Fallback/Placeholder */
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* User might want to replace with actual image later */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1rem 3rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: transform 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

/* Section Common */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #222;
}

.section-title span {
    color: var(--primary-color);
}

/* How It Works */
.how-it-works {
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.step-card {
    padding: 2rem;
}

.step-card img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.step-card h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Services */
.services-section {
    background-color: #fff8e1; /* Light yellow bg from design sort of */
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    display: flex; /* Side by side image and text? Or just stacking. Design shows distinct cards */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-content {
    padding: 2rem;
    flex: 1;
}

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    background: #f1f1f1;
    color: #333;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

/* Alternating service layout simulation for "Web Design" feel if wanted, 
   but grid is safer. Let's make them look like the design cards (wide pills). */
@media (min-width: 768px) {
    .service-card {
        flex-direction: row;
    }
    .service-card:nth-child(even) {
        flex-direction: row-reverse;
    }
}

/* Benefits */
.benefits-section {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Work With Us */
.work-with-us {
    background-color: #000;
    color: white;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.work-content {
    padding: 4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-image {
    flex: 1;
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Gym/Fitness placeholder */
    background-size: cover;
    background-position: center;
}
