/*
Theme Name: Empowered by Movement
Author: M. Schouten Internet Services
Author URI: https://www.ms-is.nl
Description: Empowered by Movement Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ebm
Tags:

*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #101828;
  background-color: #fff;
  line-height: 1.6;
}

/* Variables */
:root {
  --primary-color: #af2055;
  --dark-color: #333;
  --light-gray: #f2e8e4;
  --text-gray: #4a5565;
  --text-light: #99a1af;
  --white: #fff;
  --border-color: #e5e7eb;
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Navigation Bar */
.navbar {
  background-color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: #101828;
  letter-spacing: -0.96px;
}

.nav-logo a {
  text-decoration: none;
  color: inherit;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #101828;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.08px;
  transition: color 0.3s ease;
}

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

.nav-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.nav-button:hover {
  background-color: #931a45;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background-color: #101828;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.15)),
    url("assets/images/ebm-hero-image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 2rem;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.09) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.02) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.1996px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 0.123px;
}

.hero-description {
  font-size: 1.25rem;
  color: #ededed;
  line-height: 1.6;
  margin-bottom: 2rem;
  letter-spacing: -0.4492px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow);
  padding: 0.75rem 2rem;
}

.btn-primary:hover {
  background-color: #931a45;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 0.75rem 2rem !important;
  font-size: 1rem;
}

/* .scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
  margin-top: 2rem;
} */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);

  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Services Section */
.services {
  padding: 10rem 2rem;
  background-color: #fff;
}

.section-container {
  max-width: 1440px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.1996px;
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #101828;
  letter-spacing: 0.3516px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin: 0 auto 4rem;
  line-height: 1.6;
  letter-spacing: -0.4492px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.service-image img {
  width: 100%;
  display: block;
}

.service-icon {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 10;
}

.service-content {
  padding: 2rem 2rem 2rem 2rem;
  position: relative;
  margin-top: 1.75rem;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #101828;
  letter-spacing: 0.0703px;
}

.service-content p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  letter-spacing: -0.3125px;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #931a45;
}

/* Services Text Section */
.services-text {
  padding: 4rem 2rem;
  background-color: #fff;
}

.text-content {
  margin: 0 auto;
}

.text-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #101828;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3125px;
}

.text-content p {
  font-size: 1.125rem;
  color: #364153;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3125px;
}

.text-content p:last-child {
  margin-bottom: 0;
}

/* Service Tabs Navigation */
.service-tabs-wrapper {
  padding: 2rem;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.service-tabs {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.tab-link {
  padding: 0.875rem 1.5rem;
  background-color: #f2e8e4;
  color: #364153;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tab-link:hover {
  background-color: #eadadd;
  color: #101828;
}

.tab-link.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Personal Trainer Section */
.personal-trainer-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f2e8e4 0%, #fff 100%);
}

.pt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pt-text {
  max-width: 600px;
}

.pt-description {
  font-size: 1.125rem;
  color: #364153;
  line-height: 1.8;
  margin-bottom: 2rem;
  letter-spacing: -0.3125px;
}

.pt-features {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.pt-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pt-feature a {
  color: #af2055;
}

.pt-feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: var(--light-gray);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 25px;
}

.pt-feature h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #101828;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3125px;
}

.pt-feature p {
  font-size: 1rem;
  color: #364153;
  line-height: 1.6;
  letter-spacing: -0.3125px;
}

.pt-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pt-info {
  font-size: 0.95rem;
  color: #99a1af;
  text-align: center;
  letter-spacing: -0.3125px;
}

.pt-info a {
  color: #99a1af;
}

.pt-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

/* About Section */
.about {
  padding: 10rem 2rem;
  background-color: #fff;
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-logo {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  padding-top: 1rem;
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px 0px rgba(0, 0, 0, 0.25);
  z-index: 10;
  background-color: #f2e8e4;
}

.floating-logo img {
  width: 250px;
}

/* .logo-text {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
  letter-spacing: 2px;
  text-align: center;
} */

.about-content {
  padding: 2rem;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  letter-spacing: -0.4395px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
}

.feature-text h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #101828;
  margin-bottom: 0.5rem;
  letter-spacing: -0.4492px;
}

.feature-text p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.3125px;
}

/* Team Section */
.team {
  padding: 5rem 2rem;
  background-color: #fff;
}

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

.team-member {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.member-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 2rem;
  aspect-ratio: 1 / 1.25;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.member-image:hover img {
  transform: scale(1.05);
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: rgba(175, 32, 85, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: left;
}

.social-link {
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  background-color: var(--light-gray);
}

.member-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #101828;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3125px;
}

.member-role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.member-bio {
  font-size: 1rem;
  color: #364153;
  line-height: 1.6;
  letter-spacing: -0.3125px;
}

/* Testimonials Section */
.testimonials {
  padding: 10rem 2rem;
}

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

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--primary-color);
  font-size: 1.25rem;
  letter-spacing: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #364153;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3125px;
  min-height: 100px;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.author-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 999px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-name {
  font-weight: 500;
  color: #101828;
  font-size: 1rem;
  letter-spacing: -0.3125px;
}

.testimonials-stats {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 2rem;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  text-align: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: 0.3691px;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.3125px;
}

/* Pricing Section */
.pricing {
  padding: 10rem 2rem;
  background-color: #fff;
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table thead {
  background-color: var(--primary-color);
  color: white;
}

.pricing-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.3125px;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1rem;
  color: #364153;
  letter-spacing: -0.3125px;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.pricing-table tbody tr.highlight {
  background-color: #f2e8e4;
}

.pricing-table tbody tr.highlight:hover {
  background-color: #eadadd;
}

.pricing-table .price {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
  padding: 10rem 2rem;
  background-color: var(--light-gray);
}

.cta-section-w {
  padding: 10rem 2rem;
  background-color: #fff;
}

/* Locations Section */
.locations {
  padding: 5rem 2rem;
  background-color: #fff;
}

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

.location-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.location-header {
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 1rem;
}

.location-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #101828;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3125px;
}

.location-badge {
  display: inline-block;
  background-color: #f2e8e4;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.3125px;
}

.location-details {
  margin-bottom: 2rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.location-item:last-child {
  margin-bottom: 0;
}

.location-icon {
  font-size: 1.5rem;
  min-width: 1.5rem;
  text-align: center;
}

.location-info {
  flex: 1;
}

.location-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.location-value {
  font-size: 1rem;
  color: #364153;
  line-height: 1.6;
  letter-spacing: -0.3125px;
}

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

.location-value a:hover {
  color: #931a45;
  text-decoration: underline;
}

.btn-small {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
}

/* Contact Section */
.contact {
  padding: 10rem 2rem;
  background-color: var(--light-gray);
}

.contact-w {
  padding: 10rem 2rem;
  background-color: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card,
.hours-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

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

.info-card h3,
.hours-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.0703px;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 0.625rem;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.hours-card .info-icon {
  background-color: transparent;
}

.info-label {
  font-weight: 500;
  color: #101828;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.3125px;
}

.info-value {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.3125px;
}

.hours-card .info-value {
  color: white;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 1rem;
  letter-spacing: -0.3125px;
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #101828;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.3125px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.625rem;
  background-color: #f9fafb;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  letter-spacing: -0.3125px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: white;
}

.form-group textarea {
  resize: vertical;
}

.form-group button {
  margin-top: 1rem;
  width: 100%;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 2rem 0;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.96px;
}

.footer-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  letter-spacing: -0.3125px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 999px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.social-icon:hover {
  background-color: #931a45;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.4395px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: -0.3125px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e2939;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-size: 0.875rem;
  letter-spacing: -0.1504px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .floating-logo {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  /* .logo-text {
    font-size: 2rem;
  } */

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .pt-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .text-content h3 {
    font-size: 1.75rem;
  }

  .text-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .service-tabs {
    gap: 0.75rem;
  }

  .tab-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

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

  .pt-description {
    font-size: 1rem;
  }

  .pt-feature-icon {
    width: 50px;
    height: 50px;
  }

  .floating-logo {
    bottom: 1rem;
    right: 1rem;
  }

  /* .logo-text {
    font-size: 1.5rem;
  } */

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .pricing-table .price {
    font-size: 1.125rem;
  }

  .location-name {
    font-size: 1.25rem;
  }

  .location-card {
    padding: 1.5rem;
  }

  .member-name {
    font-size: 1.25rem;
  }

  .member-role {
    font-size: 0.95rem;
  }

  .service-tabs-wrapper {
    padding: 1rem;
  }

  .service-tabs {
    gap: 0.5rem;
  }

  .tab-link {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
  }
  .services-text {
    padding: 2rem 1.5rem;
  }

  .text-content h3 {
    font-size: 1.15rem;
  }

  .text-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    gap: 1rem;
    padding: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  .nav-button {
    margin: 0 2rem;
    width: calc(100% - 4rem);
  }

  .hero {
    padding: 3rem 1rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .floating-logo {
    bottom: 0.75rem;
    right: 0.75rem;
  }
	
  .floating-logo img {
    width: 150px;
  }	

  /* .logo-text {
    font-size: 1.25rem;
  } */

  .services {
    padding: 2rem 1rem;
  }

  .about-content {
    padding: 1rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .pricing-table th {
    display: none;
  }

  .pricing-table td {
    display: block;
    padding: 0.75rem 1rem;
    text-align: right;
    border-bottom: none;
    border-top: 1px solid #e5e7eb;
  }

  .pricing-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
  }

  .pricing-table td.price::before {
    color: #364153;
    font-weight: 500;
  }

  .pricing-table tbody tr {
    display: block;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 1rem;
    padding-top: 1rem;
  }

  .pricing-table tbody tr:last-child {
    border-bottom: 2px solid #e5e7eb;
  }

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

  .location-card {
    padding: 1.25rem;
  }

  .location-name {
    font-size: 1.125rem;
  }

  .location-item {
    margin-bottom: 1.25rem;
  }

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

  .member-image {
    margin-bottom: 1.5rem;
  }

  .member-name {
    font-size: 1.25rem;
  }

  .member-role {
    font-size: 0.875rem;
  }

  .member-bio {
    font-size: 0.95rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .pt-content {
    grid-template-columns: 1fr;
  }

  .pt-description {
    font-size: 0.95rem;
  }

  .pt-features {
    gap: 1.5rem;
  }

  .pt-feature {
    gap: 1rem;
  }

  .pt-feature-icon {
    width: 48px;
    height: 48px;
  }

  .pt-feature h4 {
    font-size: 1rem;
  }

  .pt-feature p {
    font-size: 0.9rem;
  }
}
