/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #374151;
  background: linear-gradient(135deg, #c7cefe 0%, #d1f6fa 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  gap: 0.5rem;
}

.btn-primary {
  background: #0199ff;
  color: white;
}

.btn-primary:hover {
  background: #015aff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 85, 150, 0.3);
}

.btn-outline {
  background: transparent;
  color: #0199ff;
  border: 2px solid #0199ff;
}

.btn-outline:hover {
  background: #015aff;
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #0199ff;
}

.btn-white:hover {
  background: #f9fafb;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  border: 2px solid #0199ff;
  color: #015aff;
}

.btn-icon:hover {
  background: #c7cefe;
}

/* Text Colors */
.text-green {
  color: #0199ff;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(58, 57, 57, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #c7cefe;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #111827;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-image
{
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #fefefe;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #01FFFF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn {
  background: none;
  border: none;
  color: #fefefe;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.2s;
}

.search-btn:hover {
  color: #01FFFF;
}

.contact-btn {
  background: #fefefe;
  color: black;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #01FFFF;
  color: #fefefe;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fefefe;
  padding: 0.5rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: rgba(58, 57, 57, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #c7cefe;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 40;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    width: 100%;
    text-align: center;
    display: block;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg,#d1f6fa 0%, #c7cefe 80%);
  border-radius: 1.5rem;
  margin: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #bbd3f7;
  color: #0199ff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #c7cefe;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #111827;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Products Preview Section */
.products-preview {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #059669;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-info {
  padding: 1.5rem;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #059669;
}

.product-description {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
}

.section-cta {
  text-align: center;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
}

.stats-card {
  background: linear-gradient(135deg,#c7cefe 0%, #d1f6fa 80%);
  border-radius: 1.5rem;
  padding: 3rem;
  color: white;
  box-shadow: 10px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #bbf7d0;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-choose-text h2 {
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-item i {
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-choose-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.why-image-1 {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-image-2 {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  color: #9ca3af;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: #059669;
  color: white;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #10b981;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item i {
  color: #10b981;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item span {
  color: #9ca3af;
  font-size: 0.875rem;
}

.newsletter {
  margin-top: 1.5rem;
}

.newsletter h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 0.375rem;
  background: #374151;
  color: white;
}

.newsletter-form input::placeholder {
  color: #9ca3af;
}

.newsletter-form button {
  background: #059669;
  border: none;
  color: white;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Products Page */
.products-page {
  min-height: 100vh;
  padding: 2rem 0;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}

.filters-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 24rem;
}

.search-box i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.search-box input:focus {
  outline: none;
  border-color: #059669;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-controls select {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  background: white;
  font-size: 1rem;
  min-width: 12rem;
}

.view-toggle {
  display: flex;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.view-btn {
  background: white;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.view-btn.active {
  background: #059669;
  color: white;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.products-container.list-view {
  grid-template-columns: 1fr;
}

.products-container.list-view .product-card {
  display: flex;
  flex-direction: row;
}

.products-container.list-view .product-image {
  width: 33.333%;
  flex-shrink: 0;
}

.products-container.list-view .product-info {
  flex: 1;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #6b7280;
  font-size: 1.125rem;
}

/* Product Detail Page */
.product-detail-page {
  min-height: 100vh;
  padding: 2rem 0;
}

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.main-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.thumbnail-images {
  display: flex;
  justify-content: space-evenly;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.thumbnail {
  flex-shrink: 0;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.thumbnail.active {
  border-color: #059669;
}

.thumbnail img {
  width: 5rem;
  height: 4rem;
  object-fit: cover;
  display: block;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-detail-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

.product-detail-info .product-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 1.5rem;
}

.key-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-item i {
  color: #059669;
  flex-shrink: 0;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.primary-actions {
  display: flex;
  gap: 0.75rem;
}

.primary-actions .btn {
  flex: 1;
}

.secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.trust-badge i {
  font-size: 2rem;
  color: #059669;
}

.badge-title {
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
}

.badge-subtitle {
  color: #6b7280;
  font-size: 0.75rem;
}

/* Product Tabs */
.product-tabs {
  margin-top: 4rem;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.25rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tab-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: #374151;
}

.spec-value {
  color: #111827;
}

.sustainability-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sustainability-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-label {
  color: #374151;
}

.stat-value {
  font-weight: 600;
  color: #059669;
}

.sustainability-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sustainability-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sustainability-benefits i {
  color: #059669;
}

.installation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-number {
  width: 1.5rem;
  height: 1.5rem;
  background: #059669;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.maintenance-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.maintenance-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.maintenance-info i {
  color: #059669;
}

/* Contact Page */
.contact-page {
  min-height: 100vh;
  padding: 2rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.form-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-card h2 {
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #059669;
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card,
.social-card,
.quick-contact-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card h3,
.social-card h3 {
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  width: 3rem;
  height: 3rem;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  flex-shrink: 0;
}

.detail-content h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.detail-content p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* Neumorphic Social Buttons */
.neumorphic-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.neumorphic-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: none;
  border-radius: 1rem;
  background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
  box-shadow: 8px 8px 16px #d1d5db, -8px -8px 16px #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6b7280;
  font-weight: 600;
  gap: 0.5rem;
}

.neumorphic-btn:hover {
  transform: translateY(-2px);
  box-shadow: 12px 12px 20px #d1d5db, -12px -12px 20px #ffffff;
}

.neumorphic-btn:active {
  transform: translateY(0);
  box-shadow: inset 4px 4px 8px #d1d5db, inset -4px -4px 8px #ffffff;
}

.neumorphic-btn.facebook:hover {
  color: #1877f2;
}

.neumorphic-btn.twitter:hover {
  color: #1da1f2;
}

.neumorphic-btn.instagram:hover {
  color: #e4405f;
}

.neumorphic-btn.linkedin:hover {
  color: #0077b5;
}

.neumorphic-btn i {
  font-size: 2rem;
}

.neumorphic-btn span {
  font-size: 0.875rem;
}

.quick-contact-card {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  text-align: center;
}

.quick-contact-card h3 {
  color: white;
  margin-bottom: 1rem;
}

.quick-contact-card p {
  color: #bbf7d0;
  margin-bottom: 1.5rem;
}

.map-section {
  margin-top: 4rem;
}

.map-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
  height: 24rem;
  background: linear-gradient(135deg, #d1fae5 0%, #bbf7d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
}

.map-content i {
  font-size: 4rem;
  color: #059669;
  margin-bottom: 1rem;
}

.map-content h3 {
  margin-bottom: 0.5rem;
}

.map-content p {
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Companies Page Styles */
.companies-page {
  min-height: 100vh;
  padding: 2rem 0;
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: #6b7280;
  font-weight: 500;
}

.client-showcase {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.client-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.client-image {
  position: relative;
  overflow: hidden;
}

.client-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.client-card:hover .client-image img {
  transform: scale(1.05);
}

.client-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.client-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.client-badge.municipio {
  background: #059669;
}

.client-badge.empresa {
  background: #dc2626;
}

.client-badge.institucion {
  background: #7c3aed;
}

.client-badge.year {
  background: rgba(0, 0, 0, 0.7);
}

.client-info {
  padding: 1.5rem;
}

.client-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.client-header i {
  color: #059669;
}

.client-header h3 {
  font-size: 1.125rem;
  margin: 0;
}

.client-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.client-location i {
  color: #9ca3af;
}

.client-info h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.client-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
}

.client-info blockquote {
  font-style: italic;
  color: #6b7280;
  border-left: 4px solid #d1fae5;
  padding-left: 1rem;
  margin: 0;
  font-size: 0.875rem;
}

.company-services {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #059669;
  font-size: 2rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #111827;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}

.work-process {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: center;
}

.process-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: #059669;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h3 {
  margin-bottom: 1rem;
  color: #111827;
}

.step-card p {
  color: #6b7280;
  line-height: 1.6;
}

.step-arrow {
  color: #10b981;
  font-size: 2rem;
  display: none;
}

.companies-cta {
  padding: 4rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-card h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.cta-card p {
  color: #bbf7d0;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Page Styles */
.about-page {
  min-height: 100vh;
}

.about-hero {
  padding: 4rem 0;
}

.about-hero-content {
  text-align: center;
  margin-bottom: 3rem;
}

.about-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #bbf7d0;
  color: #065f46;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero-content p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-text p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.story-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-stats {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.about-stats .stat-item {
  padding: 2rem;
}

.about-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.5rem;
}

.about-stats .stat-label {
  color: #6b7280;
  font-weight: 500;
}

.company-values {
  padding: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #059669;
  font-size: 2rem;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: #111827;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

.mission-vision {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vision-card {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.card-header i {
  font-size: 2rem;
}

.card-header h3 {
  color: white;
  margin: 0;
}

.mission-card p,
.vision-card p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}

.mission-card p {
  color: #bbf7d0;
}

.vision-card p {
  color: #fed7aa;
}

.team-section {
  padding: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
  position: relative;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h3 {
  margin-bottom: 0.5rem;
  color: #111827;
}

.member-position {
  color: #059669;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.member-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.certifications {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.certification-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  width: 4rem;
  height: 4rem;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #059669;
  font-size: 2rem;
}

.certification-card h3 {
  margin-bottom: 0.5rem;
  color: #111827;
}

.certification-card p {
  color: #6b7280;
  margin: 0;
}

.about-cta {
  padding: 4rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
  }

  .product-detail-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filters-section {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    max-width: none;
  }

  .filter-controls {
    justify-content: space-between;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .key-features {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    grid-template-columns: 1fr;
  }

  .specifications-grid,
  .sustainability-content,
  .installation-content {
    grid-template-columns: 1fr;
  }

  .neumorphic-social {
    grid-template-columns: 1fr;
  }

  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .cta-card h2 {
    font-size: 1.75rem;
  }

  .cta-card p {
    font-size: 1.125rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .story-buttons {
    justify-content: center;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    margin: 0.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .product-detail-info h1 {
    font-size: 1.5rem;
  }

  .product-detail-info .product-price {
    font-size: 2rem;
  }

  .primary-actions {
    flex-direction: column;
  }

  .secondary-actions {
    grid-template-columns: 1fr;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .client-stats {
    grid-template-columns: 1fr;
  }

  .story-buttons {
    flex-direction: column;
  }
}

/* Desktop specific styles for process arrows */
@media (min-width: 1025px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-step:not(:last-child) .step-arrow {
    display: block;
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.line-clamp-2 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
