/*
 * Pauzudo19cm - Men's Health & Fitness
 * Modern Wellness & Enhancement Website
 * Created: 2025-09-23
 */

/* ========== CSS Variables ========== */
:root {
  /* Color Palette - Bold & Energetic */
  --color-primary: #0066cc;      /* Bold Blue */
  --color-secondary: #ff7700;    /* Vibrant Orange */
  --color-accent: #27ae60;       /* Green */
  --color-dark: #1a2333;         /* Dark Navy Blue */
  --color-light: #ffffff;        /* White */
  --color-gray-100: #f8f9fa;     /* Lightest Gray */
  --color-gray-200: #e9ecef;     /* Light Gray */
  --color-gray-300: #dee2e6;     /* Medium Light Gray */
  --color-gray-400: #ced4da;     /* Medium Gray */
  --color-gray-500: #adb5bd;     /* Gray */
  --color-gray-600: #6c757d;     /* Dark Gray */
  --color-gray-700: #495057;     /* Darker Gray */
  --color-gray-800: #343a40;     /* Very Dark Gray */
  --color-gray-900: #212529;     /* Almost Black */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004f9f 100%);
  --gradient-secondary: linear-gradient(135deg, #ff7700 0%, #ff9933 100%);
  --gradient-accent: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  --gradient-dark: linear-gradient(135deg, #1a2333 0%, #2c3e50 100%);
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-subheading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing */
  --space-xxs: 0.25rem;   /* 4px */
  --space-xs: 0.5rem;     /* 8px */
  --space-sm: 1rem;       /* 16px */
  --space-md: 2rem;       /* 32px */
  --space-lg: 3rem;       /* 48px */
  --space-xl: 5rem;       /* 80px */
  --space-xxl: 8rem;      /* 128px */
  
  /* Borders & Radius */
  --border-thin: 1px solid var(--color-gray-200);
  --border-regular: 2px solid var(--color-primary);
  --border-thick: 4px solid var(--color-primary);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-circle: 50%;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.15);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Container Width */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;
}

/* ========== Base Styles ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-800);
  background-color: var(--color-gray-100);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button, .btn {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ========== Layout ========== */
.container {
  width: 100%;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  margin-left: auto;
  margin-right: auto;
}

.container-fluid {
  width: 100%;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}

@media (min-width: 992px) {
  .container {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--container-xl);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container-xxl);
  }
}

/* Section Styles */
.section {
  padding: var(--space-lg) 0;
}

.section-lg {
  padding: var(--space-xl) 0;
}

.section-xl {
  padding: var(--space-xxl) 0;
}

.section-sm {
  padding: var(--space-md) 0;
}

.section-title {
  position: relative;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-pill);
}

.section-subtitle {
  color: var(--color-primary);
  text-transform: uppercase;
  font-family: var(--font-subheading);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  text-align: center;
}

/* Row & Columns */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

/* Column widths */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Responsive columns */
@media (min-width: 576px) {
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}
/* ========== Components ========== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  font-size: 1rem;
  line-height: 1.5;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #005bb8;
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #ff6600;
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-light);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: #219653;
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--color-primary);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-secondary {
  background-color: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background-color: var(--color-secondary);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Cards */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--color-gray-700);
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-gray-800);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-700);
  background-color: var(--color-light);
  background-clip: padding-box;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  color: var(--color-gray-700);
  background-color: var(--color-light);
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-control::placeholder {
  color: var(--color-gray-500);
  opacity: 1;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--radius-pill);
}

.badge-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.badge-secondary {
  background-color: var(--color-secondary);
  color: var(--color-light);
}

.badge-accent {
  background-color: var(--color-accent);
  color: var(--color-light);
}

/* Alerts */
.alert {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-secondary {
  color: #a04800;
  background-color: #ffe5cc;
  border-color: #ffd9b3;
}

.alert-accent {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

/* Progress */
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  background-color: var(--color-gray-200);
  border-radius: var(--radius-pill);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-light);
  text-align: center;
  white-space: nowrap;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.navbar-brand img, .navbar-brand svg {
  height: 40px;
  margin-right: 0.5rem;
}

.navbar-toggler {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-gray-800);
  font-size: 1.5rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--color-gray-700);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.navbar-btn {
  margin-left: 1.5rem;
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 72px);
    background-color: var(--color-light);
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .navbar-collapse.show {
    right: 0;
  }
  
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
  }
  
  .navbar-btn {
    margin: 1rem 0 0;
    width: 100%;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  background-color: var(--color-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70%;
  height: 120%;
  background-color: var(--color-primary);
  opacity: 0.05;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.hero-title span {
  color: var(--color-primary);
}

.hero-text {
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}
/* Features Section */
.features {
  position: relative;
  background-color: var(--color-gray-100);
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-box {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.2) 100%);
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  font-size: 2rem;
}

.feature-icon.secondary {
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.1) 0%, rgba(255, 119, 0, 0.2) 100%);
  color: var(--color-secondary);
}

.feature-icon.accent {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.2) 100%);
  color: var(--color-accent);
}

.feature-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-text {
  color: var(--color-gray-700);
  margin-bottom: 1.5rem;
}

.feature-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
}

.feature-link i {
  margin-left: 0.25rem;
  transition: transform var(--transition-fast);
}

.feature-link:hover i {
  transform: translateX(3px);
}

/* About Section */
.about {
  position: relative;
}

.about-content {
  margin-bottom: 2rem;
}

.about-title {
  margin-bottom: 1rem;
}

.about-subtitle {
  color: var(--color-primary);
  font-family: var(--font-subheading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.about-text {
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.about-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.about-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 350px;
  background-color: var(--color-gray-200);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--color-gray-100);
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  background-color: var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--color-gray-600);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--color-gray-600);
  font-size: 0.875rem;
}

.testimonial-rating {
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

/* Stats Section */
.stats {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 4rem 0;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Entertainment Module Section */
.entertainment {
  position: relative;
  background-color: var(--color-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 3rem 0;
}

.entertainment-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.entertainment-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.entertainment-category {
  background-color: var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.entertainment-category h3 {
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  font-size: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-secondary);
}

.entertainment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.entertainment-list li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.entertainment-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.entertainment-list a {
  display: block;
  color: var(--color-gray-700);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 1.5rem;
}

.entertainment-list a::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-secondary);
  transition: transform var(--transition-fast);
}

.entertainment-list a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.entertainment-list a:hover::before {
  transform: translate(3px, -50%);
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-form {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info {
  background-color: var(--color-primary);
  color: var(--color-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info h3 {
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.25rem;
  margin-right: 1rem;
  color: var(--color-light);
  opacity: 0.9;
  min-width: 20px;
}

.contact-text {
  flex: 1;
}

.contact-social {
  margin-top: 2rem;
}

.contact-social h4 {
  color: var(--color-light);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  transition: all var(--transition-normal);
}

.social-link:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px);
  color: var(--color-light);
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-gray-400);
  padding: 5rem 0 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img, .footer-logo svg {
  height: 40px;
  margin-right: 0.5rem;
}

.footer-logo span {
  color: var(--color-light);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-text {
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-heading {
  color: var(--color-light);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-gray-400);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-light);
  padding-left: 0.5rem;
}

.footer-newsletter {
  margin-bottom: 1.5rem;
}

.footer-newsletter form {
  display: flex;
  margin-top: 1rem;
}

.footer-newsletter input {
  flex: 1;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.footer-newsletter input:focus {
  outline: none;
}

.footer-newsletter button {
  background-color: var(--color-secondary);
  color: var(--color-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.footer-newsletter button:hover {
  background-color: #ff6600;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  margin-bottom: 1rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--color-gray-400);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--color-light);
}

/* Utility Classes */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-dark { color: var(--color-dark); }
.text-light { color: var(--color-light); }
.text-gray { color: var(--color-gray-600); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-dark { background-color: var(--color-dark); }
.bg-light { background-color: var(--color-light); }
.bg-gray { background-color: var(--color-gray-100); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }

.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.mx-auto { margin-left: auto; margin-right: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 1rem; }
.ml-4 { margin-left: 1.5rem; }
.ml-5 { margin-left: 3rem; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 1rem; }
.mr-4 { margin-right: 1.5rem; }
.mr-5 { margin-right: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Responsive Utilities */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-lg {
    padding: 4rem 0;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .entertainment-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .entertainment {
    padding: 2rem;
  }
}
