/* CHCreationsTech Landing Page Styles */

/* ====================
   Brand Colors
   ==================== */
:root {
  --brand-yellow: #FDB913;
  --brand-yellow-hover: #f0ad0a;
  --brand-yellow-light: #FFF8E1;
  --brand-black: #000000;
  --brand-gray-50: #f9fafb;
  --brand-gray-100: #f3f4f6;
  --brand-gray-200: #e5e7eb;
  --brand-gray-300: #d1d5db;
  --brand-gray-400: #9ca3af;
  --brand-gray-600: #4b5563;
  --brand-gray-700: #374151;
  --brand-gray-900: #111827;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #22c55e;
}

/* ====================
   Base Styles
   ==================== */
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  color: #1f2937;
}

.container {
  max-width: 1730px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ====================
   Top Contact Bar
   ==================== */
.top-bar {
  background-color: var(--brand-yellow);
  padding: 0.5rem 0;
  color: var(--brand-black);
}

.top-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--brand-black);
  transition: opacity 0.2s;
}

.top-bar-link:hover {
  opacity: 0.8;
}

/* ====================
   Header & Navigation
   ==================== */
.header {
  background-color: white;
  border-bottom: 1px solid var(--brand-gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--brand-gray-700);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--brand-gray-900);
}

.btn-contact {
  background-color: var(--brand-yellow);
  color: var(--brand-black);
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-contact:hover {
  background-color: var(--brand-yellow-hover);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

/* ====================
   Hero Section
   ==================== */
.hero {
  background-color: white;
  background-image: radial-gradient(circle, var(--brand-gray-300) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 4rem 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge-circles {
  display: flex;
  align-items: center;
}

.circle-black {
  width: 3rem;
  height: 3rem;
  background-color: var(--brand-black);
  border-radius: 50%;
}

.circle-gray {
  width: 3rem;
  height: 3rem;
  background-color: var(--brand-gray-300);
  border-radius: 50%;
  margin-left: -1rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  background-color: var(--brand-black);
  color: white;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
}

.hero-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 10px 0;
}




.slider-track {
    display: flex;
    gap: 20px;
    width: calc(220px * 12);
    animation: scrollSlider 25s linear infinite;
}

.slide {
    min-width: 350px;
    height: 350px; /* 1:1 square */
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #fff;
    transition: transform 0.3s ease;
}

.slide:hover {
    transform: translateY(-8px);
}

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

/* Auto animation */
@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1320px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .slide {
        min-width: 140px;
        height: 140px;
    }

    .slider-track {
        gap: 12px;
    }
}











/* ====================
   How We Work Section
   ==================== */
.how-we-work {
  background: linear-gradient(to bottom, white, var(--brand-gray-50));
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--brand-gray-600);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.work-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.process-card {
  border: 2px solid;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.process-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.process-card-content {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.process-icon {
  width: 3rem;
  height: 3rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.process-number {
  font-size: 1.5rem;
  font-weight: bold;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.process-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--brand-gray-900);
}

.process-description {
  font-size: 0.875rem;
  color: var(--brand-gray-700);
}

.ai-features {
  background: linear-gradient(to right, var(--brand-yellow), #F59E0B);
  border-radius: 1rem;
  padding: 3rem;
  color: var(--brand-black);
  text-align: center;
  margin-bottom: 3rem;
}

.ai-features-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ai-feature-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: background-color 0.2s;
  text-align: left;
}

.ai-feature-card:hover {
  background-color: white;
}

.ai-feature-icon {
  color: var(--brand-yellow);
  margin-bottom: 0.75rem;
}

.ai-feature-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.ai-feature-description {
  font-size: 0.875rem;
  color: var(--brand-gray-700);
}

/* ====================
   Services Section
   ==================== */
.services {
  background-color: white;
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--brand-gray-50);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  height: 16rem;
  background-color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content {
  padding: 1.5rem;
}

.service-badge {
  background-color: var(--brand-yellow);
  color: var(--brand-black);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--brand-gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  background-color: white;
  border: 1px solid var(--brand-gray-200);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

/* ====================
   Testimonials Section
   ==================== */
.testimonials {
  background-color: var(--brand-gray-50);
  padding: 4rem 0;
}

.testimonials-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background-color: var(--brand-gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--brand-gray-600);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.star-icon {
  color: var(--brand-yellow);
  fill: var(--brand-yellow);
}

.testimonial-time {
  font-size: 0.875rem;
  color: var(--brand-gray-600);
  margin-left: 0.5rem;
}

.testimonial-text {
  color: var(--brand-gray-700);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ====================
   Contact Form Section
   ==================== */
.contact-section {
  background-color: white;
  padding: 4rem 0;
}

.contact-container {
  max-width: 48rem;
  margin: 0 auto;
}

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

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--brand-gray-600);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--brand-gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(253, 185, 19, 0.1);
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

.form-submit-container {
  text-align: center;
}

.btn-submit {
  background-color: var(--brand-yellow);
  color: var(--brand-black);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: var(--brand-yellow-hover);
}

/* ====================
   Footer
   ==================== */
.footer {
  background-color: var(--brand-gray-900);
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--brand-gray-400);
  font-size: 0.875rem;
}

.footer-column-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--brand-gray-400);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--brand-gray-400);
}

.social-icons {
    
   color: var(--brand-gray-400);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}


/* ====================
   Responsive Styles
   ==================== */
@media (min-width: 640px) {
  .top-bar-content {
    flex-direction: row;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .logo-img {
    height: 3rem;
  }

  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 6rem 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .how-we-work,
  .services,
  .testimonials,
  .contact-section {
    padding: 6rem 0;
  }

  .section-title {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ====================
   Utility Classes
   ==================== */
.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

