/* ===== MAIN WEBSITE SECTION ===== */
/* 
.main-website {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.main-website::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.website-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.website-text h2 {
    color: white;
    text-align: left;
    margin-bottom: 40px;
}

.website-text h2::after {
    left: 0;
    transform: none;
}

.website-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.website-features {
    display: grid;
    gap: 24px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-20px);
    opacity: 0;
}

.feature-item.visible {
    transform: translateX(0);
    opacity: 1;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(158, 39, 36, 0.5);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-content strong {
    color: #9E2724;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

.website-cta {
    text-align: left;
}

.website-btn {
    background: linear-gradient(135deg, #B42A25, #9E2724);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(180, 42, 37, 0.3);
    margin-bottom: 20px;
    display: inline-block;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
    text-decoration: none;
}

.website-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9E2724, #8B2021);
    transition: left 0.4s ease;
    z-index: -1;
}

.website-btn:hover::before {
    left: 0;
}

.website-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(180, 42, 37, 0.4);
}

.website-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.website-preview {
    position: relative;
}

.preview-mockup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.preview-mockup.visible {
    transform: translateY(0);
    opacity: 1;
}

.preview-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(248, 250, 252, 0.9);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:last-child {
    background: #10b981;
}

.mockup-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.5);
    font-weight: 500;
}

.mockup-content {
    padding: 30px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #1e293b;
}

.preview-hero {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.preview-hero h3 {
    font-size: 1.3rem;
    color: #B42A25;
    margin-bottom: 8px;
    font-weight: 700;
}

.preview-hero p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-item {
    padding: 12px 16px;
    background: linear-gradient(135deg, #B42A25, #9E2724);
    color: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(180, 42, 37, 0.3);
    transition: all 0.3s ease;
}

.preview-mockup:hover .product-item {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 42, 37, 0.4);
} */

/* ===== RESPONSIVE DESIGN FOR MAIN WEBSITE SECTION ===== */
/* 
@media (max-width: 968px) {
  .website-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .website-text {
    order: 2;
    text-align: center;
  }

  .website-preview {
    order: 1;
  }

  .preview-mockup {
    transform: none;
    max-width: 400px;
    margin: 0 auto;
  }

  .preview-mockup:hover {
    transform: scale(1.02);
  }

  .preview-mockup.visible {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .website-content {
    gap: 40px;
  }

  .website-description {
    font-size: 1.1rem;
  }

  .feature-item {
    padding: 20px;
    gap: 16px;
  }

  .feature-icon {
    font-size: 1.8rem;
    min-width: 45px;
  }

  .preview-mockup {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .website-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
  }

  .mockup-content {
    padding: 24px;
  }

  .feature-item {
    padding: 18px;
  }
}
 */

/* ===== MAIN WEBSITE SECTION ===== */
.main-website {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.main-website::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path fill="%23ffffff" d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1047.22,5.3,1000,0Z"></path></svg>')
    repeat-x;
  background-size: 1000px 100px;
  z-index: 1;
}

.website-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.website-header {
  margin-bottom: 60px;
}

.website-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(
    135deg,
    rgba(180, 42, 37, 0.1),
    rgba(158, 39, 36, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(180, 42, 37, 0.15);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.website-header h2 {
  color: #2d3748;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}

.website-header h2::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #9e2724, #b42a25);
  border-radius: 2px;
}

.website-description {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.website-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(30px);
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 42, 37, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.highlight-item:hover::before {
  left: 100%;
}

.highlight-item.visible {
  transform: translateY(0);
  opacity: 1;
}

.highlight-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(180, 42, 37, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(180, 42, 37, 0.2);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    rgba(180, 42, 37, 0.1),
    rgba(158, 39, 36, 0.05)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(180, 42, 37, 0.1);
}

.highlight-item:hover .highlight-icon {
  background: linear-gradient(135deg, #b42a25, #9e2724);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(180, 42, 37, 0.3);
}

.highlight-item:hover .highlight-icon svg path {
  fill: white;
}

.highlight-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2d3748;
  display: block;
  line-height: 1.4;
}

.website-cta {
  text-align: center;
}

.website-btn {
  background: linear-gradient(135deg, #b42a25, #9e2724);
  padding: 20px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 10px 35px rgba(180, 42, 37, 0.3);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: white;
  text-decoration: none;
}

.website-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9e2724, #8b2021);
  transition: left 0.4s ease;
  z-index: -1;
}

.website-btn:hover::before {
  left: 0;
}

.website-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(180, 42, 37, 0.4);
}

.website-btn svg {
  transition: transform 0.3s ease;
}

.website-btn:hover svg {
  transform: translateX(3px);
}

.website-note {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Ripple animation for button clicks */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== RESPONSIVE DESIGN FOR MAIN WEBSITE SECTION ===== */
@media (max-width: 968px) {
  .website-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .highlight-item {
    padding: 28px 20px;
  }

  .website-btn {
    padding: 18px 40px;
    font-size: 1rem;
  }

  .website-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .website-header {
    margin-bottom: 50px;
  }

  .website-description {
    font-size: 1.1rem;
  }

  .website-highlights {
    margin-bottom: 40px;
  }

  .highlight-icon {
    width: 48px;
    height: 48px;
  }

  .highlight-item {
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .website-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-item {
    padding: 24px 18px;
  }

  .website-btn {
    padding: 16px 32px;
    font-size: 0.95rem;
    gap: 8px;
  }

  .website-icon {
    width: 60px;
    height: 60px;
  }

  .website-content {
    padding: 0 16px;
  }
}
