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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* YOGA STUDIO STYLES */
.yoga-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.yoga-header {
  min-height: 100vh;
  position: relative;
}

.yoga-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #667eea;
}

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

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.floating-element {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
}

.classes-section {
  padding: 5rem 0;
  background: white;
}

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

.class-card {
  background: #f8f9ff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e0e7ff;
}

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

.class-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.class-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #667eea;
}

.class-time {
  margin-top: 1rem;
  font-weight: 600;
  color: #764ba2;
}

.instructors-section {
  padding: 5rem 0;
  background: #f8f9ff;
}

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

.instructor-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instructor-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}

.instructor-title {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-section {
  padding: 5rem 0;
  background: white;
}

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

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #e0e7ff;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #667eea;
  transform: scale(1.05);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
  margin: 1rem 0;
}

.btn-outline {
  padding: 0.8rem 1.5rem;
  border: 2px solid #667eea;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
}

.yoga-footer {
  background: #333;
  color: white;
  padding: 3rem 0;
}

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

/* TECH COMPANY STYLES */
.tech-page {
  background: #0a0a0a;
  color: white;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tech-container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #111;
  border-right: 1px solid #333;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-content {
  padding: 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tech-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #888;
  transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active {
  background: #1a1a1a;
  color: #00d4ff;
}

.nav-icon {
  font-size: 1.2rem;
}

.main-content {
  margin-left: 280px;
  flex: 1;
  padding: 2rem;
}

.hero-tech {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  margin-bottom: 5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-tech-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tech-description {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #00d4ff;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.code-block {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  width: 100%;
  max-width: 400px;
}

.code-header {
  background: #2a2a2a;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.code-dots {
  display: flex;
  gap: 0.5rem;
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #666;
}

.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #28ca42; }

.code-content {
  padding: 1.5rem;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 0.9rem;
}

.code-line {
  margin-bottom: 0.5rem;
}

.keyword { color: #ff79c6; }
.variable { color: #8be9fd; }
.string { color: #f1fa8c; }
.function { color: #50fa7b; }

.section-title-tech {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

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

.service-card-tech {
  background: #111;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.service-card-tech:hover {
  border-color: #00d4ff;
  transform: translateY(-5px);
}

.service-icon-tech {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card-tech h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.tech-stack {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

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

.portfolio-item {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
}

.portfolio-image {
  height: 200px;
  background: linear-gradient(135deg, #333, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #888;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

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

.team-member {
  background: #111;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #333;
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.member-role {
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-tech {
  background: #111;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #333;
}

.contact-tech h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  font-size: 1.2rem;
}

/* LANDSCAPE DESIGN STYLES */
.landscape-page {
  font-family: 'Georgia', serif;
}

.landscape-wrapper {
  background: #f8f6f0;
}

.landscape-header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('https://images.pexels.com/photos/1105019/pexels-photo-1105019.jpeg') center/cover;
  min-height: 100vh;
  position: relative;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.8), rgba(107, 142, 35, 0.6));
}

.landscape-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: relative;
  z-index: 10;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-icon {
  font-size: 2rem;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #90EE90;
}

.contact-btn {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-landscape {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  position: relative;
  z-index: 5;
  padding: 0 2rem;
}

.hero-landscape-content {
  max-width: 800px;
}

.hero-landscape-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-highlight {
  color: #90EE90;
  position: relative;
}

.hero-landscape-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  background: #228B22;
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

.cta-button:hover {
  background: #32CD32;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 139, 34, 0.4);
}

.services-landscape {
  padding: 6rem 0;
  background: white;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2F4F2F;
  margin-bottom: 1rem;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #666;
}

.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-feature.reverse {
  direction: rtl;
}

.service-feature.reverse > * {
  direction: ltr;
}

.service-image-placeholder {
  height: 300px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
}

.garden-design {
  background: linear-gradient(135deg, #228B22, #32CD32);
}

.hardscape {
  background: linear-gradient(135deg, #8B4513, #A0522D);
}

.maintenance {
  background: linear-gradient(135deg, #6B8E23, #9ACD32);
}

.service-content h3 {
  font-size: 2rem;
  color: #2F4F2F;
  margin-bottom: 1rem;
}

.service-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.service-list li:before {
  content: '🌿';
  position: absolute;
  left: 0;
}

.gallery-landscape {
  padding: 6rem 0;
  background: #f8f6f0;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #2F4F2F;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  position: relative;
}

.gallery-item.large .gallery-image {
  height: 100%;
  min-height: 400px;
}

.modern-garden {
  background: linear-gradient(135deg, #4682B4, #87CEEB);
}

.cottage-garden {
  background: linear-gradient(135deg, #DDA0DD, #DA70D6);
}

.rooftop-garden {
  background: linear-gradient(135deg, #708090, #2F4F4F);
}

.family-yard {
  background: linear-gradient(135deg, #FFB6C1, #FFA07A);
}

.drought-resistant {
  background: linear-gradient(135deg, #D2691E, #CD853F);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.process-landscape {
  padding: 6rem 0;
  background: white;
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #2F4F2F;
  margin-bottom: 4rem;
}

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

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #228B22;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  font-size: 1.3rem;
  color: #2F4F2F;
  margin-bottom: 1rem;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

.landscape-footer {
  background: #2F4F2F;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #90EE90;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.detail-icon {
  font-size: 1.2rem;
}

.service-areas {
  list-style: none;
  padding: 0;
}

.service-areas li {
  padding: 0.3rem 0;
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* MUSIC STUDIO STYLES */
.music-page {
  background: #1a0a2e;
  color: white;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
}

.vinyl-container {
  position: fixed;
  top: -150px;
  right: -150px;
  z-index: 1;
  opacity: 0.1;
}

.vinyl-record {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #333 30%, #111 70%);
  border-radius: 50%;
  position: relative;
  animation: spin 20s linear infinite;
}

.vinyl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #ff6b35;
  border-radius: 50%;
}

.vinyl-grooves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.music-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  position: relative;
  z-index: 100;
  background: rgba(26, 10, 46, 0.9);
  backdrop-filter: blur(10px);
}

.nav-vinyl {
  font-size: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

.nav-beat {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-beat:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

.music-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
}

.sound-waves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  animation: wave-move 3s ease-in-out infinite;
}

.wave-1 { top: 20%; animation-delay: 0s; }
.wave-2 { top: 40%; animation-delay: 0.5s; }
.wave-3 { top: 60%; animation-delay: 1s; }
.wave-4 { top: 80%; animation-delay: 1.5s; }

@keyframes wave-move {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-music-content {
  text-align: center;
  z-index: 10;
  position: relative;
}

.studio-logo {
  margin-bottom: 2rem;
}

.logo-circle {
  width: 150px;
  height: 150px;
  border: 3px solid #ff6b35;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
}

.logo-subtext {
  font-size: 0.7rem;
  color: #ccc;
}

.music-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-glow {
  color: #ff6b35;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.music-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.music-controls {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.play-btn, .record-btn {
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn {
  background: #ff6b35;
  color: white;
}

.play-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.record-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.record-btn:hover {
  background: white;
  color: #1a0a2e;
}

.studio-section {
  padding: 6rem 0;
  background: #16213e;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}

.section-music-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ff6b35;
}

.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.equipment-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.eq-icon {
  font-size: 2rem;
  min-width: 50px;
}

.eq-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.eq-details p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.mixing-board {
  background: #0f1419;
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid #333;
}

.board-header {
  text-align: center;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.faders {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.fader-group {
  display: flex;
  gap: 1rem;
  align-items: end;
}

.fader {
  width: 20px;
  background: linear-gradient(to top, #ff6b35, #333);
  border-radius: 10px;
  transition: height 0.3s ease;
}

.board-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.knob {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #666, #333);
  border-radius: 50%;
  border: 2px solid #ff6b35;
}

.services-music {
  padding: 6rem 0;
  background: #1a0a2e;
}

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

.services-header-music h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.frequency-bars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: end;
}

.freq-bar {
  width: 8px;
  background: #ff6b35;
  border-radius: 4px;
  animation: frequency 1.5s ease-in-out infinite;
}

.freq-bar:nth-child(odd) {
  animation-delay: 0.2s;
}

@keyframes frequency {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.services-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.service-album {
  background: #16213e;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.service-album:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
}

.album-cover {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.recording { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.mixing { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.mastering { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.production { background: linear-gradient(135deg, #667eea, #764ba2); }

.album-info {
  padding: 1.5rem;
}

.album-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ff6b35;
}

.album-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.artists-section {
  padding: 6rem 0;
  background: #0f3460;
}

.artists-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
}

.artists-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.artist-frame {
  background: #1a0a2e;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #333;
  transition: all 0.3s ease;
}

.artist-frame:hover {
  border-color: #ff6b35;
  transform: scale(1.05);
}

.artist-photo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  color: white;
}

.artist-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.artist-genre {
  color: #ff6b35;
  font-size: 0.9rem;
}

.music-footer {
  background: #0a0a0a;
  padding: 4rem 0 2rem;
}

.booking-console {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.console-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6b35;
}

.console-left p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.studio-hours h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.studio-hours p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-mixer {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #333;
}

.mixer-channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

.mixer-channel:last-child {
  border-bottom: none;
}

.channel-label {
  font-size: 0.9rem;
  color: #ff6b35;
  font-weight: 600;
}

.channel-value {
  color: white;
  font-weight: 500;
}

/* LEGAL FIRM STYLES */
.legal-page {
  background: #f8f9fa;
  color: #2c3e50;
  font-family: 'Times New Roman', serif;
}

.legal-framework {
  display: flex;
  min-height: 100vh;
}

.legal-sidebar {
  width: 320px;
  background: #1e3a8a;
  color: white;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  padding: 2rem;
}

.law-emblem {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.scales-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.firm-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.apex {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.legal {
  font-size: 1.2rem;
  font-weight: 400;
  color: #93c5fd;
}

.partners {
  font-size: 1rem;
  font-weight: 300;
  color: #ddd;
}

.legal-navigation {
  margin-bottom: 3rem;
}

.nav-section {
  margin-bottom: 2rem;
}

.nav-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.8rem 0;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: all 0.3s ease;
}

.legal-link:hover {
  border-left-color: #fbbf24;
  background: rgba(255, 255, 255, 0.1);
  color: #fbbf24;
}

.sidebar-footer {
  margin-top: auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.established {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fbbf24;
}

.tagline {
  font-size: 0.9rem;
  color: #ddd;
  font-style: italic;
}

.legal-main {
  margin-left: 320px;
  flex: 1;
}

.legal-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 3rem;
  background: white;
  min-height: 80vh;
}

.legal-badge {
  display: inline-block;
  background: #1e3a8a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.legal-headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1e3a8a;
}

.headline-emphasis {
  color: #fbbf24;
}

.legal-description {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.legal-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.metric-item {
  text-align: center;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
}

.metric-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.legal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-legal-btn, .secondary-legal-btn {
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-legal-btn {
  background: #1e3a8a;
  color: white;
}

.primary-legal-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.secondary-legal-btn {
  background: transparent;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}

.secondary-legal-btn:hover {
  background: #1e3a8a;
  color: white;
}

.legal-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.courthouse-silhouette {
  position: relative;
  width: 300px;
  height: 200px;
}

.pillar {
  position: absolute;
  bottom: 20px;
  width: 30px;
  height: 120px;
  background: #1e3a8a;
  border-radius: 4px 4px 0 0;
}

.pillar-1 { left: 40px; }
.pillar-2 { left: 90px; }
.pillar-3 { left: 140px; }
.pillar-4 { left: 190px; }

.courthouse-roof {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 40px;
  background: #fbbf24;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.courthouse-steps {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: #64748b;
}

.practice-areas {
  padding: 5rem 3rem;
  background: #f8f9fa;
}

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

.section-header-legal h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.legal-divider {
  width: 100px;
  height: 4px;
  background: #fbbf24;
  margin: 0 auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.practice-card {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #1e3a8a;
}

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

.practice-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.practice-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.practice-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.practice-list {
  list-style: none;
  padding: 0;
}

.practice-list li {
  padding: 0.3rem 0;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.practice-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: bold;
}

.attorneys-section {
  padding: 5rem 3rem;
  background: white;
}

.attorneys-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 4rem;
}

.attorneys-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.attorney-profile.featured {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.attorney-image {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto;
}

.attorney-details h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.attorney-title {
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.attorney-education {
  color: #64748b;
  font-style: italic;
  margin-bottom: 1rem;
}

.attorney-details p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.attorney-specialties {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.specialty {
  background: #1e3a8a;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.attorney-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.attorney-card .attorney-image {
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.attorney-card h3 {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.attorney-focus {
  color: #fbbf24;
  font-size: 0.9rem;
  font-weight: 500;
}

.experience-section {
  padding: 5rem 3rem;
  background: #f8f9fa;
}

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

.experience-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.experience-header p {
  font-size: 1.2rem;
  color: #64748b;
}

.case-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.case-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fbbf24;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-year {
  width: 80px;
  height: 80px;
  background: #1e3a8a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #64748b;
  line-height: 1.6;
}

.legal-footer {
  background: #1e3a8a;
  color: white;
  padding: 4rem 3rem 2rem;
}

.footer-legal-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.method-icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.method-label {
  font-size: 0.9rem;
  color: #93c5fd;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.method-value {
  color: white;
  font-weight: 500;
  line-height: 1.4;
}

.footer-legal-info {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.disclaimer {
  margin-bottom: 1rem;
}

.disclaimer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ADVENTURE COMPANY STYLES */
.adventure-page {
  background: #0f172a;
  color: white;
  font-family: 'Arial', sans-serif;
  position: relative;
}

.mountain-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.peak {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, #1e293b, #475569);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.peak-1 {
  left: -10%;
  width: 40%;
  height: 300px;
  z-index: 4;
}

.peak-2 {
  left: 20%;
  width: 35%;
  height: 400px;
  z-index: 3;
  background: linear-gradient(to top, #334155, #64748b);
}

.peak-3 {
  left: 45%;
  width: 40%;
  height: 350px;
  z-index: 2;
  background: linear-gradient(to top, #475569, #94a3b8);
}

.peak-4 {
  right: -10%;
  width: 35%;
  height: 280px;
  z-index: 1;
  background: linear-gradient(to top, #64748b, #cbd5e1);
}

.clouds {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  animation: cloud-drift 20s linear infinite;
}

.cloud-1 {
  top: 20%;
  left: -100px;
  width: 150px;
  height: 50px;
  animation-duration: 25s;
}

.cloud-2 {
  top: 40%;
  left: -120px;
  width: 200px;
  height: 60px;
  animation-duration: 30s;
}

.cloud-3 {
  top: 60%;
  left: -80px;
  width: 120px;
  height: 40px;
  animation-duration: 35s;
}

@keyframes cloud-drift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 200px)); }
}

.adventure-header {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.mountain-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

.compass-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.compass-outer {
  width: 60px;
  height: 60px;
  border: 3px solid #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: compass-spin 10s linear infinite;
}

.compass-inner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compass-needle {
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  border-radius: 1px;
}

@keyframes compass-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
}

.nav-trail {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.trail-marker {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.trail-marker:hover {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.summit-btn {
  background: #f59e0b;
  color: #0f172a;
}

.summit-btn:hover {
  background: #d97706;
  color: #0f172a;
  transform: translateY(-2px);
}

.hero-adventure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.altitude-indicator {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(15, 23, 42, 0.8);
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #f59e0b;
  text-align: center;
}

.altitude-reading {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  justify-content: center;
}

.altitude-number {
  font-size: 2rem;
  font-weight: 700;
  color: #f59e0b;
}

.altitude-unit {
  font-size: 1rem;
  color: #94a3b8;
}

.altitude-label {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.adventure-content {
  max-width: 800px;
}

.mountain-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-peak {
  color: #f59e0b;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.adventure-tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.adventure-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.8);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
}

.stat-desc {
  font-size: 0.9rem;
  color: #94a3b8;
}

.cta-cluster {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-adventure-btn, .secondary-adventure-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-adventure-btn {
  background: #f59e0b;
  color: #0f172a;
}

.primary-adventure-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.secondary-adventure-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-adventure-btn:hover {
  background: white;
  color: #0f172a;
}

.weather-widget {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(15, 23, 42, 0.8);
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  min-width: 200px;
}

.weather-header {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.weather-temp {
  font-size: 2rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.weather-desc {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 0.5rem;
}

.weather-wind {
  font-size: 0.8rem;
  color: #94a3b8;
}

.expeditions-section {
  padding: 6rem 0;
  background: rgba(15, 23, 42, 0.95);
  position: relative;
  z-index: 10;
}

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

.section-title-adventure {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.difficulty-legend {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.difficulty {
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.easy { background: #10b981; color: white; }
.moderate { background: #f59e0b; color: white; }
.hard { background: #ef4444; color: white; }
.extreme { background: #7c3aed; color: white; }

.expeditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expedition-card {
  background: rgba(30, 41, 59, 0.9);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.expedition-card:hover {
  transform: translateY(-10px);
  border-color: #f59e0b;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.expedition-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.expedition-image {
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.expedition-card.featured .expedition-image {
  height: 100%;
  min-height: 300px;
}

.everest { background: linear-gradient(135deg, #1e293b, #475569); }
.denali { background: linear-gradient(135deg, #0f172a, #1e293b); }
.kilimanjaro { background: linear-gradient(135deg, #dc2626, #f59e0b); }
.whitney { background: linear-gradient(135deg, #059669, #10b981); }

.difficulty-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

.expedition-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  font-size: 0.8rem;
  color: white;
}

.expedition-details {
  padding: 2rem;
}

.expedition-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f59e0b;
}

.expedition-elevation {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  font-weight: 600;
}

.expedition-details p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.expedition-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.feature {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
}

.expedition-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.guides-section {
  padding: 6rem 0;
  background: rgba(30, 41, 59, 0.95);
  position: relative;
  z-index: 10;
}

.guides-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: white;
}

.guides-roster {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.guide-profile.lead {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border: 2px solid #f59e0b;
}

.guide-avatar {
  position: relative;
  text-align: center;
}

.avatar-image {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}

.guide-certification {
  background: #10b981;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.guide-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.guide-title {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.guide-experience {
  color: #94a3b8;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.guide-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.guide-specialties {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.specialty {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.guide-card {
  background: rgba(15, 23, 42, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.guide-card:hover {
  border-color: #f59e0b;
  transform: translateY(-5px);
}

.guide-card .avatar-image {
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
}

.guide-card h3 {
  font-size: 1.2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.guide-specialty {
  color: white;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.guide-peaks {
  color: #94a3b8;
  font-size: 0.9rem;
}

.gear-section {
  padding: 6rem 0;
  background: rgba(15, 23, 42, 0.95);
  position: relative;
  z-index: 10;
}

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

.gear-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.gear-header p {
  font-size: 1.2rem;
  color: #94a3b8;
}

.gear-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gear-category {
  background: rgba(30, 41, 59, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.gear-category:hover {
  border-color: #f59e0b;
  transform: translateY(-5px);
}

.gear-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gear-category h3 {
  font-size: 1.3rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.gear-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.gear-list li {
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 1.5rem;
}

.gear-list li:before {
  content: '⛰️';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.adventure-footer {
  background: rgba(15, 23, 42, 0.98);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 10;
}

.booking-basecamp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.basecamp-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.basecamp-left p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.info-icon {
  font-size: 1.2rem;
  color: #f59e0b;
}

.info-label {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 600;
}

.info-value {
  color: white;
  font-weight: 500;
}

.contact-tent {
  background: rgba(30, 41, 59, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #f59e0b;
}

.contact-tent h3 {
  font-size: 1.5rem;
  color: #f59e0b;
  margin-bottom: 1.5rem;
}

.contact-details-adventure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item-adventure {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
}

.contact-icon-adventure {
  font-size: 1.2rem;
  color: #f59e0b;
}

.emergency-contact {
  background: rgba(239, 68, 68, 0.2);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ef4444;
  text-align: center;
}

.emergency-label {
  font-size: 0.8rem;
  color: #fca5a5;
  margin-bottom: 0.5rem;
}

.emergency-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ef4444;
}

.footer-adventure-bottom {
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-adventure-bottom p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .tech-container {
    flex-direction: column;
  }
  
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .hero-tech {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-tech-title {
    font-size: 2.5rem;
  }
  
  .hero-landscape-title {
    font-size: 2.5rem;
  }
  
  .service-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .legal-framework {
    flex-direction: column;
  }
  
  .legal-sidebar {
    position: relative;
    width: 100%;
    height: auto;
  }
  
  .legal-main {
    margin-left: 0;
  }
  
  .legal-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .legal-headline {
    font-size: 2.5rem;
  }
  
  .attorney-profile.featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .mountain-title {
    font-size: 3rem;
  }
  
  .expedition-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .guide-profile.lead {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .booking-basecamp {
    grid-template-columns: 1fr;
  }
  
  .altitude-indicator,
  .weather-widget {
    position: relative;
    margin: 1rem auto;
  }
  
  .music-title {
    font-size: 2.5rem;
  }
  
  .studio-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-console {
    grid-template-columns: 1fr;
  }
}