/* Sanal Ofis Page Styles */

/* Features Section */
.features {
  background: #f8fafc;
  padding: 4rem 0;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #2563EB;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  stroke: white;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0F172A;
  margin-bottom: 1rem;
}

.feature-description {
  color: #64748b;
  line-height: 1.6;
}

/* Locations Section */
.locations {
  padding: 4rem 0;
}

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

.location-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.location-card:hover {
  border-color: #2563EB;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location-image {
  height: 12rem;
  background: linear-gradient(135deg, #2563EB, #60A5FA);
  position: relative;
}

.location-icon-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  background: linear-gradient(135deg, #2563EB, #60A5FA);
}

.location-icon-header svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: #fff;
}

.location-info {
  padding: 1.5rem;
}

.location-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.location-address {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.location-price {
  color: #2563EB;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.location-btn {
  background: #2563EB;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.location-btn:hover {
  background: #1E40AF;
}

/* Services Section */
.services {
  background: #f8fafc;
  padding: 4rem 0;
}

.services-section {
  padding: 4rem 0;
}

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

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  border-color: #2563EB;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: scale(1.05);
  border-color: #2563EB;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0F172A;
}

.service-item p {
  color: #64748b;
}

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

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #64748b;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 4rem 0;
}

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

.pricing-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border-color: #2563EB;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2563EB;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.package-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0F172A;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0F172A;
  margin-bottom: 1rem;
}

.period {
  font-size: 1rem;
  color: #64748b;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.package-features li {
  color: #475569;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.package-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2563EB;
  font-weight: bold;
}

.package-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: #2563EB;
  color: white;
}

.package-btn:hover {
  background: #1E40AF;
}

/* CTA Section */
.cta {
  background: #f8fafc;
  padding: 4rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid,
  .services-grid,
  .locations-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
