/* Header Section */
.main-content-area {
  padding: 40px 0;
}

.hero-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.hero-image {
  flex: 0 0 400px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-content {
  flex: 1;
}

.page-header h1 {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.page-header p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.stars {
  color: #ffc107;
}

.rating-text {
  color: #007bff;
  font-weight: 600;
}

.service-description {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 4px solid #007bff;
}

/* Main Layout */
.main-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

/* Service Cards - Updated */
.services-section {
  margin-bottom: 40px;
}

.service-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.service-card1 {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card-header {
  padding: 20px;
  color: white;
  font-weight: 600;
}

.service-card-header {
  background: linear-gradient(
      95deg,
      var(--color-primary) 15%,
      var(--color-tertiary) 45%,
      var(--color-pink) 75%,
      var(--color-secondary) 100%
    )
    95%/200% 100%;
}

.service-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-features {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4a5568;
  line-height: 1.5;
}

.service-features li::before {
  content: "✓";
  color: #48bb78;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.add-btn {
  width: 100%;
  padding: 12px;
  background: white;
  color: rgb(49 134 22 / 1);
  border: 1px solid #318616;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  font-size: 1rem;
}

.add-btn:hover {
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-cards-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .service-cards-container {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.sidebar {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.cart-section {
  padding: 25px;
  border-bottom: 1px solid #e9ecef;
}

.cart-header h3 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.cart-items {
  min-height: 60px;
}

.empty-cart {
  text-align: center;
  color: #666;
  padding: 20px 0;
}

.cart-item {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f1;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  flex: 0 0 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.cart-item-name {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 2px;
}

.cart-item-type {
  color: #666;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.quantity-badge {
  background: #007bff;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: bold;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quantity-btn {
  background: #f8f9fa;
  border: 1px solid #ddd;
  color: #333;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.quantity-display {
  font-weight: 500;
  color: #2c3e50;
  min-width: 20px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 0 5px;
  align-self: flex-start;
}

/* Contact Form */
.contact-form-section {
  padding: 25px;
}

.contact-form-section h3 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.phone-input {
  display: flex;
  gap: 0;
}

.country-code {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 8px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 6px 0 0 6px;
  background: #f8f9fa;
}

.phone-number {
  flex: 1;
  border-radius: 0 6px 6px 0;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #22c55e;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  background: #22c55e;
  color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.notification.show {
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .main-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    flex-direction: column;
    min-height: auto;
  }

  .service-card-image {
    flex: none;
    height: 200px;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-image {
    flex: none;
    width: 100%;
  }

  .service-card-image {
    height: 150px;
  }
}

/* Service Section Styles */
.service-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  text-align: justify;
  margin-bottom: 40px;
  /* max-width: 900px; */
  margin-left: auto;
  margin-right: auto;
}

.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.pros-cons-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.pros-cons-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantages-card {
  border-top-color: #22c55e;
}

.disadvantages-card {
  border-top-color: #ef4444;
}

.card-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantages-card .card-title {
  color: #22c55e;
}

.disadvantages-card .card-title {
  color: #ef4444;
}

.card-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 14px;
}

.advantages-card .card-icon {
  background: #22c55e;
}

.disadvantages-card .card-icon {
  background: #ef4444;
}

.feature-list {
  list-style: none;
}

.feature-item {
  margin-bottom: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.advantages-card .feature-item {
  border-left-color: #22c55e;
}

.disadvantages-card .feature-item {
  border-left-color: #ef4444;
}

.feature-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.feature-description {
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-section {
    padding: 30px 20px;
  }

  .service-title {
    font-size: 2rem;
  }

  .service-description {
    font-size: 1rem;
  }

  .pros-cons-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pros-cons-card {
    padding: 25px 20px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .feature-item {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .service-section {
    padding: 25px 15px;
  }

  .service-title {
    font-size: 1.8rem;
  }

  .service-description {
    font-size: 0.95rem;
  }

  .pros-cons-card {
    padding: 20px 15px;
  }

  .feature-item {
    padding: 10px;
  }

  .feature-title {
    font-size: 0.95rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

/* Animation for scroll reveal */
.service-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-section:nth-child(2) {
  animation-delay: 0.2s;
}

.service-section:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service Section Styles */
.services-container {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.services-container::before {
  content: "";
  position: absolute;
  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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  margin-bottom: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.service-header {
  padding: 40px 40px 20px;
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
  z-index: 1;
  position: relative;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
  line-height: 1.3;
}

.service-description {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 0;
}

.service-features {
  padding: 10px 10px 0px;
  background: #f8fafc;
}

.features-title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-title::before {
  content: "✨";
  font-size: 1.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #3b82f6;
  position: relative;
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left-color: #667eea;
}

.feature-item::before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 8px;
  top: 20px;
}

.feature-text {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  margin-left: 10px;
  line-height: 1.5;
}

.cta-section {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  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"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>')
    repeat;
  opacity: 0.3;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-button {
  background: white;
  color: #667eea;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #667eea;
  text-decoration: none;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #1e293b;
  font-size: 1.1rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: #f8fafc;
}

.comparison-table .criteria {
  font-weight: 600;
  color: #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
  .services-container {
    padding: 60px 0;
  }

  .service-header {
    padding: 30px 25px 15px;
  }

  .service-features {
    padding: 25px 25px 30px;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 40px 25px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}

/* Animation */
.service-card {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
