/* 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;
}

/* 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;
  }
}