:root {
  --color-bg: #f9fafb;
  --color-nav: rgba(255, 255, 255, 0.85);
  --color-primary: #194868;
  --color-accent: #FFE405;
  --color-text: #1a202c;
  --color-shadow: #e5e7eb;
  --color-glass: rgba(255, 255, 255, 0.25);
  --color-glass-border: rgba(255, 255, 255, 0.18);
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #f0f4f8 0%, #d6e8f5 30%, #b8d4f0 70%, #9ac1eb 100%);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23194868" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23194868" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23194868" opacity="0.08"/><circle cx="20" cy="80" r="0.5" fill="%23194868" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.logo {
  width: 120px;
  display: block;
  margin: 24px auto 0 auto;
  filter: drop-shadow(0 4px 12px rgba(25, 72, 104, 0.3));
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

header {
  position: relative;
}

header::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  z-index: 10;
}

.hero {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--color-primary);
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
  font-size: 2.5rem;
  font-weight: 700;
}

.hero p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(25, 72, 104, 0.1);
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  color: #000;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(255, 228, 5, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 228, 5, 0.5);
}

.improvements {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.improvement-card {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(25, 72, 104, 0.1);
  border-radius: 32px;
  margin: 0 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 380px;
  transition: all 0.3s ease;
}

.improvement-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(25, 72, 104, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

.improvement-card h2 {
  color: var(--color-primary);
  text-shadow: 0 1px 2px rgba(25, 72, 104, 0.1);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.improvement-card p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.improvement-card img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  margin: 0 0 1rem 0;
  border-radius: 24px;
  filter: drop-shadow(0 6px 16px rgba(25, 72, 104, 0.3));
  border: 3px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.improvement-card:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(25, 72, 104, 0.4));
}

.carousel {
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
  z-index: 2;
}

.carousel h2 {
  color: var(--color-primary);
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-wrapper img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(25, 72, 104, 0.25);
  transition: all 0.4s ease;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.carousel-wrapper img:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.35);
}

/* Interactive Problem Solver */
.problem-solver {
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.problem-solver h2 {
  color: var(--color-primary);
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.problem-solver > p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.problem-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.problem-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.problem-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.problem-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.problem-item:nth-child(4) { grid-column: 4; grid-row: 1; }

.problem-item:nth-child(6) { grid-column: 2; grid-row: 3; }
.problem-item:nth-child(7) { grid-column: 3; grid-row: 3; }

.problem-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(25, 72, 104, 0.1);
  position: relative;
  overflow: hidden;
}

.problem-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 228, 5, 0.2), transparent);
  transition: left 0.6s ease;
}

.problem-item:hover::before {
  left: 100%;
}

.problem-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 228, 5, 0.3);
}

.problem-item.active {
  background: linear-gradient(135deg, rgba(255, 228, 5, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: var(--color-accent);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 60px rgba(25, 72, 104, 0.25);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(25, 72, 104, 0.2));
}

.problem-item h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.problem-item p {
  color: rgba(25, 72, 104, 0.7);
  font-size: 1rem;
  margin: 0;
}

.solution-preview {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 40px rgba(25, 72, 104, 0.15);
  min-height: 200px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 10px 0;
}

.solution-preview.visible {
  display: flex;
}

.solution-preview h3 {
  color: var(--color-primary);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.solution-content {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

.solution-content ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.solution-content li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.solution-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.solution-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  color: #000 !important;
  border-radius: 50px;
  padding: 0.875rem 2rem;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(255, 228, 5, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.solution-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 228, 5, 0.4);
  color: #000 !important;
  text-decoration: none !important;
}

/* Interactive Map Styles */
.service-map {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  z-index: 1;
}

.service-map h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-map > p {
  color: var(--color-text);
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

.interactive-map {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(25, 72, 104, 0.3);
  backdrop-filter: blur(10px);
}

.real-map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Map interaction overlay */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(0.5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.map-overlay:hover {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
}

.map-overlay-content {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 228, 5, 0.4);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(25, 72, 104, 0.25);
  transition: all 0.3s ease;
}

.map-overlay:hover .map-overlay-content {
  transform: scale(1.05);
  border-color: rgba(255, 228, 5, 0.6);
  box-shadow: 0 12px 40px rgba(25, 72, 104, 0.35);
  background: rgba(255, 255, 255, 0.95);
}

.map-overlay-content h4 {
  color: var(--color-primary);
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.map-overlay-content p {
  color: rgba(25, 72, 104, 0.8);
  margin: 0;
  font-size: 0.85rem;
}

.map-overlay.hidden {
  display: none;
}

/* Custom Leaflet popup styles */
.leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 228, 5, 0.3);
}

.leaflet-popup-content {
  margin: 15px 20px;
  line-height: 1.6;
}

.leaflet-popup-tip {
  background: rgba(255, 255, 255, 0.98);
}

.custom-marker {
  background: var(--color-primary);
  color: white;
  border: 3px solid white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(25, 72, 104, 0.3);
}

/* Project Slideshow Styles */
.project-slideshow {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  text-align: left;
}

.slide-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.slide-info p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #333;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.slide-nav:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-nav.prev {
  left: 2rem;
}

.slide-nav.next {
  right: 2rem;
}

.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
  transform: scale(1.2);
}

/* Services Info Section */
.services-info {
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.services-info h2 {
  color: var(--color-primary);
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(25, 72, 104, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(25, 72, 104, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Work CTA Section */
.work-cta {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 32px;
  margin: 2rem 1rem;
  box-shadow: 0 8px 32px rgba(25, 72, 104, 0.1);
}

.work-cta h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
}

.work-cta p {
  color: rgba(25, 72, 104, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Mobile Responsiveness for Slideshow */
@media (max-width: 768px) {
  .project-slideshow {
    padding: 1rem;
  }
  
  .slide {
    height: 300px;
  }
  
  .slide-info {
    padding: 1rem;
  }
  
  .slide-info h3 {
    font-size: 1.3rem;
  }
  
  .slide-info p {
    font-size: 0.9rem;
  }
  
  .slide-nav {
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
  }
  
  .slide-nav.prev {
    left: 1rem;
  }
  
  .slide-nav.next {
    right: 1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .slide {
    height: 250px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .work-cta {
    padding: 30px 15px;
  }
  
  .work-cta h2 {
    font-size: 1.5em;
  }
}

/* Revolutionary Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background-color: var(--color-nav);
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 10px var(--color-shadow);
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 12px 8px;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 20px;
  text-align: center;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 70px;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  border-radius: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-btn.active::before {
  opacity: 1;
}

.nav-btn.active {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 228, 5, 0.4);
}

.nav-btn:hover:not(.active) {
  background: rgba(25, 72, 104, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(25, 72, 104, 0.1);
}

.nav-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.nav-btn:hover .nav-icon {
  transform: scale(1.1);
}

.nav-btn.active .nav-icon {
  transform: scale(1.15);
}

.nav-text {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 2px;
}

.more-btn {
  position: relative;
  z-index: 100;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: inherit;
}

.more-btn .nav-icon {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.more-btn:hover .nav-icon {
  transform: scale(1.2) rotate(180deg);
}

.more-btn .nav-text {
  pointer-events: none;
}

.more-menu {
  position: fixed;
  bottom: 110px;
  right: 50%;
  transform: translateX(50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.2);
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 24px 32px;
  min-width: 240px;
  z-index: 1500;
  animation: menuSlideIn 0.3s ease-out;
}

@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateX(50%) translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(50%) translateY(0) scale(1);
  }
}

.more-menu > a {
  color: var(--color-primary);
  font-size: 1.1rem;
  text-decoration: none;
  margin: 8px 0;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: block;
}

.more-menu > a:hover {
  background: rgba(255, 228, 5, 0.2);
  color: var(--color-primary);
  transform: translateX(8px);
}

.divider {
  border-bottom: 2px solid rgba(25, 72, 104, 0.2);
  margin: 16px 0;
}

/* Made By Section */
.more-menu .made-by {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(25, 72, 104, 0.2);
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.more-menu .made-by p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--color-primary);
  line-height: 1.4;
  font-weight: 500;
}

.more-menu .made-by p:first-child {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.more-menu .made-by a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: inherit;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: none;
  display: inline;
}

.more-menu .made-by a:hover {
  color: var(--color-accent);
  text-decoration: underline;
  transform: none;
  background: none;
}

.close-more-btn {
  margin-top: 16px;
  border: none;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 24px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 228, 5, 0.4);
}

@media (max-width: 700px) {
  .improvements {
    flex-direction: column;
    align-items: center;
  }
  
  .improvement-card {
    width: 90%;
    max-width: 380px;
    margin: 0;
  }
  
  .bottom-nav {
    bottom: 10px !important;
    left: 10px !important;
    right: 10px !important;
    transform: none !important;
    border-radius: 25px !important;
    justify-content: space-between !important;
    padding: 8px 12px !important;
    gap: 4px !important;
    width: auto !important;
    animation: none !important;
  }
  
  .nav-btn {
    min-width: 50px !important;
    padding: 8px 4px !important;
    border-radius: 20px !important;
    gap: 2px !important;
  }
  
  .nav-text {
    font-size: 0.65rem !important;
    margin-top: 1px !important;
  }
  
  .nav-icon {
    width: 20px !important;
    height: 20px !important;
  }
  
  .more-menu {
    bottom: 80px !important;
    left: 10px !important;
    right: 10px !important;
    transform: none !important;
    min-width: auto !important;
    padding: 16px 20px !important;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .bottom-nav {
    padding: 6px 8px !important;
    gap: 2px !important;
  }
  
  .nav-btn {
    min-width: 40px !important;
    padding: 6px 2px !important;
  }
  
  .nav-text {
    font-size: 0.55rem !important;
  }
  
  .nav-icon {
    width: 16px !important;
    height: 16px !important;
  }
  
  .logo {
    width: 100px;
    padding: 12px;
  }
  
  .hero {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Content Pages Styles */
.content-section {
  padding: 2rem 1rem 8rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-content, .legal-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.15);
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro, .mission, .values {
  text-align: center;
  margin-bottom: 3rem;
}

.about-intro h2, .mission h2, .values h2 {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
  font-weight: 600;
}

.about-intro p, .mission p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.value-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(25, 72, 104, 0.1);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(25, 72, 104, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.value-item h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-item p {
  color: rgba(25, 72, 104, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
}

.cta-section p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-accent, .btn-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  color: #000 !important;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(255, 228, 5, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.cta-section .btn-accent:hover, .btn-accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 228, 5, 0.5);
  color: #000 !important;
  text-decoration: none !important;
}

/* Legal Pages */
.legal-content h2 {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
}

.legal-content h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem 0;
}

.legal-content p, .legal-content li {
  color: rgba(25, 72, 104, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content .last-updated {
  font-style: italic;
  color: rgba(25, 72, 104, 0.6);
  font-size: 0.9rem;
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .content-section {
    padding: 1rem 0.5rem 8rem 0.5rem;
  }
  
  .about-content, .legal-content {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }
  
  .about-intro h2, .mission h2, .values h2 {
    font-size: 1.8rem;
  }

  .about-intro p, .mission p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .value-item {
    margin: 0 auto;
    max-width: 350px;
    padding: 1.5rem;
  }

  .value-item h3 {
    font-size: 1.2rem;
  }

  .cta-section {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .about-content, .legal-content {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }

  .about-intro h2, .mission h2, .values h2 {
    font-size: 1.6rem;
  }

  .value-item {
    padding: 1.5rem 1rem;
    max-width: 300px;
  }

  .cta-section {
    padding: 2rem 1rem;
  }
}

/* Contact Page Styles */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

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

.contact-card {
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(25, 72, 104, 0.1);
  border-radius: 24px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: left;
}

.contact-card.primary {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--color-accent);
}

.contact-card h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.contact-card p {
  line-height: 1.6;
}

.email-btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.email-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(255, 228, 5, 0.4);
}

.phone-display {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-primary);
}

.note {
  font-size: 0.9rem;
  color: rgba(25, 72, 104, 0.7);
  margin-top: 1rem;
}

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

.service-areas li {
  margin-bottom: 0.5rem;
}

.what-to-expect {
  text-align: center;
  margin-bottom: 3rem;
}

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

.step {
  background: var(--color-glass);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(25, 72, 104, 0.05);
  text-align: center;
}

.step-number {
  background-color: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
}

.step h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-cta {
  text-align: center;
  background: var(--color-glass);
  padding: 3rem 1rem;
  border-radius: 24px;
}

.final-note {
  margin-top: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
}

/* Testimonials Page Styles */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-content {
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author h4 {
  color: #2c3e50;
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Coming Soon Section */
.coming-soon-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 3rem 0;
  text-align: center;
}

.coming-soon-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-section > p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.help-us-grow {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.help-us-grow h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.help-us-grow > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.contact-option {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.contact-option h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-option p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.email-btn, .phone-display {
  display: inline-block;
  background: #fff;
  color: #667eea;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.email-btn:hover, .phone-display:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #5a67d8;
}

.testimonial-benefits {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.testimonial-benefits h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
}

.testimonial-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonial-benefits li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.testimonial-benefits li:before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .coming-soon-section {
    padding: 2rem 1rem;
  }
  
  .coming-soon-section h2 {
    font-size: 2rem;
  }
  
  .help-us-grow {
    padding: 1.5rem;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .coming-soon-section h2 {
    font-size: 1.8rem;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
}

/* Project Gallery Styles */
.project-gallery {
  padding: 60px 20px 120px 20px;
  text-align: center;
  background: var(--color-bg);
  position: relative;
  z-index: 2;
}

.project-gallery h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
}

.project-gallery > p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.project-item {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
}

.project-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 64px rgba(25, 72, 104, 0.2);
}

.project-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-item:hover img {
  transform: scale(1.1);
}

.project-info {
  padding: 30px 25px;
  text-align: left;
  flex-grow: 1;
}

.project-info h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.project-info p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.work-cta {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  padding: 50px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.1);
}

.work-cta h3 {
  color: var(--color-primary);
  font-size: 2rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.work-cta p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.work-cta .btn-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  color: #000;
  border-radius: 50px;
  padding: 18px 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(255, 228, 5, 0.3);
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.work-cta .btn-accent:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 228, 5, 0.5);
}

/* Responsive Design for Project Gallery */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
    justify-items: center;
  }
  
  .project-item {
    width: 90%;
    max-width: 380px;
  }
  
  .project-item img {
    height: 200px;
  }
  
  .project-info {
    padding: 20px 15px;
  }
  
  .work-cta {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .work-cta .btn-accent {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}

/* Chat Page Styles */
.chat-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.15);
  max-width: 800px;
  margin: 0 auto;
  height: 70vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a5a7a 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 2px 8px rgba(25, 72, 104, 0.2);
}

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

.assistant-avatar {
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.assistant-details h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.status {
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFE405;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chat-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(25, 72, 104, 0.3);
  border-radius: 3px;
}

.message {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-message {
  flex-direction: row-reverse;
}

.message-avatar {
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.user-message .message-avatar {
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  color: #000;
}

.message-content {
  max-width: 70%;
  background: white;
  border-radius: 20px 20px 20px 4px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 12px rgba(25, 72, 104, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.user-message .message-content {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a5a7a 100%);
  color: white;
  border-radius: 20px 20px 4px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-content p {
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
  font-size: 1rem;
}

.message-content p:last-of-type {
  margin-bottom: 0;
}

.message-time {
  font-size: 0.75rem;
  opacity: 0.7;
  display: block;
  margin-top: 0.5rem;
}

.typing-indicator {
  margin-bottom: 1rem;
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 0.5rem 0;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(25, 72, 104, 0.6);
  animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingDot {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-input-container {
  padding: 1.5rem 2rem 2rem 2rem;
  background: white;
  border-radius: 0 0 32px 32px;
  border-top: 1px solid rgba(25, 72, 104, 0.1);
}

.chat-input-form {
  display: flex;
  gap: 1rem;
  align-items: center;
}

#chatInput {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(25, 72, 104, 0.2);
  border-radius: 25px;
  font-size: 1rem;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  outline: none;
}

#chatInput:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 228, 5, 0.2);
  background: white;
}

#sendButton {
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 228, 5, 0.3);
  color: #000;
}

#sendButton:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 228, 5, 0.4);
}

#sendButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Chat Mobile Responsiveness */
@media (max-width: 768px) {
  .chat-container {
    margin: 0 0.5rem;
    height: 65vh;
    min-height: 450px;
    border-radius: 24px;
  }
  
  .chat-header {
    padding: 1rem 1.5rem;
    border-radius: 24px 24px 0 0;
  }
  
  .assistant-avatar {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .assistant-details h3 {
    font-size: 1.2rem;
  }
  
  .chat-messages {
    padding: 1rem;
  }
  
  .message-content {
    max-width: 85%;
    padding: 0.875rem 1rem;
  }
  
  .chat-input-container {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-radius: 0 0 24px 24px;
  }
  
  .chat-input-form {
    gap: 0.75rem;
  }
  
  #chatInput {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  #sendButton {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .chat-container {
    height: 60vh;
    min-height: 400px;
    border-radius: 20px;
  }
  
  .chat-header {
    padding: 0.875rem 1rem;
    border-radius: 20px 20px 0 0;
  }
  
  .assistant-info {
    gap: 0.75rem;
  }
  
  .assistant-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
  
  .assistant-details h3 {
    font-size: 1.1rem;
  }
  
  .status {
    font-size: 0.8rem;
  }
  
  .chat-messages {
    padding: 0.75rem;
  }
  
  .message {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .message-avatar {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
  
  .message-content {
    max-width: 90%;
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .chat-input-container {
    padding: 0.875rem 1rem 1.25rem 1rem;
    border-radius: 0 0 20px 20px;
  }
  
  #chatInput {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }
  
  #sendButton {
    width: 40px;
    height: 40px;
  }
}

/* Main content spacing */
main {
  padding-bottom: 120px;
}

/* Map CTA Section */
.map-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(25, 72, 104, 0.1);
}

.map-cta p {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.map-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  color: #000 !important;
  border-radius: 50px;
  padding: 0.875rem 2rem;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(255, 228, 5, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.map-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 228, 5, 0.4);
  color: #000 !important;
  text-decoration: none !important;
}

/* Share Story Page Styles */
.story-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.15);
  max-width: 900px;
  margin: 0 auto;
}

.story-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.story-intro h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
  font-weight: 700;
}

.story-intro p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.story-form-container {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(25, 72, 104, 0.1);
}

.story-form {
  max-width: 100%;
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(25, 72, 104, 0.1);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  display: block;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(25, 72, 104, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 228, 5, 0.2);
  background: white;
}

.form-group input[readonly] {
  background: rgba(248, 250, 252, 0.8);
  color: rgba(25, 72, 104, 0.7);
  cursor: not-allowed;
}

.form-group small {
  display: block;
  color: rgba(25, 72, 104, 0.6);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  font-style: italic;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23194868"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5rem;
  padding-right: 3rem;
}

/* Star Rating Styles */
.rating-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.3;
  transform: scale(1);
}

.star:hover,
.star.active {
  opacity: 1;
  transform: scale(1.1);
}

.star.active {
  filter: drop-shadow(0 2px 4px rgba(255, 228, 5, 0.5));
}

.rating-text {
  color: rgba(25, 72, 104, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.submit-btn {
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE405 100%);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 228, 5, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 228, 5, 0.5);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn .btn-icon {
  font-size: 1rem;
}

.form-note {
  color: rgba(25, 72, 104, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  font-style: italic;
}

/* Success Message */
.success-message {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid var(--color-accent);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.2);
  animation: successSlideIn 0.5s ease-out;
}

@keyframes successSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-content h3 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.success-content p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Mobile Responsiveness for Share Story */
@media (max-width: 768px) {
  .story-content {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }
  
  .story-intro h2 {
    font-size: 2rem;
  }
  
  .story-intro p {
    font-size: 1rem;
  }
  
  .story-form-container {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .form-section h3 {
    font-size: 1.2rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .rating-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .star {
    font-size: 1.25rem;
  }
  
  .submit-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .success-message {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }
  
  .success-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .story-content {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }
  
  .story-intro h2 {
    font-size: 1.8rem;
  }
  
  .story-form-container {
    padding: 1rem;
    border-radius: 16px;
  }
  
  .form-section h3 {
    font-size: 1.1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .success-message {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
}

/* Share Story Page Styles */
.dev-notice {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 1rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(238, 90, 82, 0.3);
  border-radius: 0 0 16px 16px;
}

.dev-notice-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.dev-notice h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dev-notice p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

.story-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow: 0 16px 48px rgba(25, 72, 104, 0.15);
  max-width: 900px;
  margin: 0 auto;
}

.story-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.story-intro h2 {
}

/* Mobile Responsiveness for Share Story */
@media (max-width: 768px) {
  .dev-notice-content {
    padding: 0 1.5rem;
  }
  
  .dev-notice h3 {
    font-size: 1.2rem;
  }
  
  .dev-notice p {
    font-size: 0.9rem;
  }
  
  .story-content {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }
  
  .story-intro h2 {
    font-size: 2rem;
  }
  
  .story-intro p {
    font-size: 1rem;
  }
  
  .story-form-container {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .form-section h3 {
    font-size: 1.2rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .rating-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .star {
    font-size: 1.25rem;
  }
  
  .submit-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .success-message {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }
  
  .success-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .dev-notice-content {
    padding: 0 1rem;
  }
  
  .dev-notice h3 {
    font-size: 1.1rem;
  }
  
  .dev-notice p {
    font-size: 0.85rem;
  }
  
  .story-content {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }
  
  .story-intro h2 {
    font-size: 1.8rem;
  }
  
  .story-form-container {
    padding: 1rem;
    border-radius: 16px;
  }
  
  .form-section h3 {
    font-size: 1.1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .success-message {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
}

/* Slogan Section */
.slogan-section {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 12px 32px rgba(25, 72, 104, 0.15);
}

.slogan-section h2 {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(25, 72, 104, 0.1);
}

.slogan-section p {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Pages Styling */
.service-hero {
  text-align: center;
  padding: 2rem 0;
  background: linear-gradient(135deg, #194868 0%, #2a5a7a 100%);
  color: white;
  border-radius: 20px;
  margin-bottom: 3rem;
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.service-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

/* Service Sections */
.tech-services,
.home-services,
.coaching-services,
.business-services,
.creative-services,
.organization-services,
.cleaning-services,
.relationship-services,
.wellness-services,
.transition-services,
.professional-services,
.marketing-services,
.project-services,
.digital-services,
.additional-tech {
  margin-bottom: 4rem;
}

.service-content h2 {
  font-size: 2rem;
  color: #194868;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

/* Service Grids */
.services-grid,
.tech-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-item,
.tech-category,
.benefit-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(25, 72, 104, 0.1);
  border: 1px solid #e8f4f8;
  transition: all 0.3s ease;
}

.service-item:hover,
.tech-category:hover,
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(25, 72, 104, 0.15);
}

.service-item h3,
.tech-category h3 {
  color: #194868;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-item ul,
.tech-category ul {
  list-style: none;
  padding: 0;
}

.service-item li,
.tech-category li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.service-item li:before,
.tech-category li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.service-item li:last-child,
.tech-category li:last-child {
  border-bottom: none;
}

/* Benefits Grid */
.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-item h3 {
  color: #194868;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Why Choose Sections */
.why-choose-tech,
.why-choose-home,
.why-choose-coaching,
.why-choose-business,
.why-choose-creative {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
}

.why-choose-tech h2,
.why-choose-home h2,
.why-choose-coaching h2,
.why-choose-business h2,
.why-choose-creative h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* CTA Sections */
.tech-cta-section,
.home-cta-section,
.coaching-cta-section,
.business-cta-section,
.creative-cta-section {
  background: linear-gradient(135deg, #194868 0%, #2a5a7a 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
}

.tech-cta-section h2,
.home-cta-section h2,
.coaching-cta-section h2,
.business-cta-section h2,
.creative-cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.tech-cta-section p,
.home-cta-section p,
.coaching-cta-section p,
.business-cta-section p,
.creative-cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-btn.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn.large:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.secondary-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
}

.secondary-btn:hover {
  background: var(--color-primary);
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(25, 72, 104, 0.3);
}

.service-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Mobile Responsiveness for Service Pages */
@media (max-width: 768px) {
  .service-hero {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }
  
  .service-hero h1 {
    font-size: 2rem;
  }
  
  .service-tagline {
    font-size: 1rem;
  }
  
  .service-icon {
    font-size: 3rem;
  }
  
  .services-grid,
  .tech-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-item,
  .tech-category,
  .benefit-item {
    padding: 1.5rem;
  }
  
  .why-choose-tech,
  .why-choose-home,
  .why-choose-coaching,
  .why-choose-business,
  .why-choose-creative {
    padding: 2rem 1rem;
  }
  
  .tech-cta-section,
  .home-cta-section,
  .coaching-cta-section,
  .business-cta-section,
  .creative-cta-section {
    padding: 2rem 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn.large,
  .secondary-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 1.8rem;
  }
  
  .service-content h2 {
    font-size: 1.6rem;
  }
  
  .service-item h3,
  .tech-category h3,
  .benefit-item h3 {
    font-size: 1.2rem;
  }
  
  .services-grid,
  .tech-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-item,
  .tech-category,
  .benefit-item {
    padding: 1rem;
  }
}

/* Fictional Disclaimer */
.fictional-disclaimer {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.fictional-disclaimer h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.fictional-disclaimer p {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
  margin: 0;
}

/* Real Projects Section - Improved Layout */
.real-projects {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.real-projects h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-intro {
  color: rgba(25, 72, 104, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.project-showcase {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-showcase:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(25, 72, 104, 0.15);
}

.project-showcase h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.project-images.single-image {
  grid-template-columns: 1fr;
  max-width: 300px;
  margin: 0 auto 1.5rem auto;
}

.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

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

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

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.project-description {
  line-height: 1.6;
}

.project-description p {
  margin-bottom: 0.8rem;
}

.project-description strong {
  color: var(--primary-color);
}

.real-projects-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.real-projects-cta h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.real-projects-cta p {
  color: rgba(25, 72, 104, 0.8);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsive for Real Projects */
@media (max-width: 768px) {
  .real-projects {
    padding: 2rem 1rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .project-showcase {
    padding: 1.2rem;
  }

  .project-images {
    gap: 0.8rem;
  }

  .image-container img {
    height: 150px;
  }

  .project-description {
    font-size: 0.9rem;
  }

  .project-description p {
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 480px) {
  .real-projects {
    padding: 1.5rem 0.8rem;
  }

  .real-projects h2 {
    font-size: 1.8rem;
  }

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

  .projects-grid {
    gap: 1rem;
  }

  .project-showcase {
    padding: 1rem;
  }

  .project-showcase h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .project-images {
    gap: 0.6rem;
  }

  .image-container img {
    height: 120px;
  }

  .image-label {
    font-size: 0.8rem;
    padding: 0.4rem;
  }

  .project-description {
    font-size: 0.85rem;
  }

  .project-description p {
    margin-bottom: 0.5rem;
  }

  .real-projects-cta {
    padding: 1.5rem 1rem;
  }

  .real-projects-cta h3 {
    font-size: 1.2rem;
  }

  .real-projects-cta p {
    font-size: 0.9rem;
  }
}

/* Project Slideshow Images - Full height for slideshow */
.project-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Real Projects Images - Fixed height with proper scaling */
.real-projects .image-container img {
  width: 100%;
  height: 180px;
  object-fit: contain; /* Changed from cover to contain to show whole image */
  border-radius: 8px;
  transition: transform 0.3s ease;
  background-color: #f8f9fa; /* Light background to fill space */
}

.real-projects .image-container img:hover {
  transform: scale(1.05);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

#lightboxImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

#lightboxCaption {
  color: white;
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  max-width: 80%;
}

/* Mobile Responsiveness for Problem Solver */
@media (max-width: 768px) {
  .problem-grid-container {
    padding: 0 20px;
  }
  
  .problem-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  
  .problem-item {
    grid-column: unset !important;
    grid-row: unset !important;
    padding: 1.5rem 1rem;
    min-height: 120px;
  }
  
  .problem-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }
  
  .problem-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  
  .problem-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .solution-preview {
    order: 999;
    margin: 15px 0;
    padding: 1.5rem;
    min-height: 150px;
  }
  
  .solution-preview h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .solution-content {
    font-size: 1rem;
  }
  
  .solution-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .problem-solver {
    padding: 2rem 0.5rem;
  }
  
  .problem-solver h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .problem-solver > p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .problem-grid-container {
    padding: 0 10px;
  }
  
  .problem-grid {
    gap: 12px;
  }
  
  .problem-item {
    padding: 1.2rem 0.8rem;
    min-height: 100px;
    border-radius: 20px;
  }
  
  .problem-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  
  .problem-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .problem-item p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .solution-preview {
    padding: 1.2rem 1rem;
    min-height: 120px;
    border-radius: 20px;
  }
  
  .solution-preview h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .solution-content {
    font-size: 0.9rem;
  }
  
  .solution-content ul {
    padding-left: 0;
  }
  
  .solution-content li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
  }
  
  .solution-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 25px;
  }
}

/* Mobile Responsive for Main CTA Buttons */
@media (max-width: 768px) {
  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    margin-top: 1.25rem;
  }
  
  .cta-section .btn-accent, .btn-accent {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  
  .btn-secondary {
    padding: 0.875rem 2rem !important;
    font-size: 1.1rem !important;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-buttons .btn-accent,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  
  .cta-section .btn-accent, .btn-accent {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.3px;
    width: 100%;
    max-width: 250px;
  }
  
  .btn-secondary {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    width: 100%;
    max-width: 250px;
  }
  
  .cta-buttons {
    gap: 0.8rem;
  }
  
  .cta-buttons .btn-accent,
  .cta-buttons .btn-secondary {
    max-width: 250px;
  }
  
  .hero {
    text-align: center;
  }
}

/* Mobile Responsive for Real Projects Images */
@media (max-width: 768px) {
  .real-projects .image-container img {
    height: 140px !important;
  }
  
  .project-slideshow .slide {
    height: 280px;
  }
  
  .project-slideshow .slide img {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .real-projects .image-container img {
    height: 100px !important;
  }

  .real-projects .project-images.single-image {
    max-width: 250px;
  }
  
  .project-slideshow .slide {
    height: 220px;
  }
  
  .project-slideshow .slide img {
    height: 100%;
  }
  
  .lightbox-close {
    top: -30px;
    font-size: 28px;
    width: 35px;
    height: 35px;
  }
  
  #lightboxCaption {
    font-size: 14px;
    margin-top: 10px;
  }
}

/* Ensure all images in project showcase are properly constrained */
.project-showcase img {
  max-width: 100%;
  height: auto;
}

.project-showcase .image-container img {
  width: 100% !important;
  object-fit: contain !important;
  background-color: #f8f9fa !important;
}