/* ============================================
   HOTLINE TEMPLATE - Custom Styles
   Call Center / Hosting Theme
   ============================================ */

:root {
  --color-primary: #FF4D4D;
  --color-primary-hover: #E64444;
  --color-secondary: #2D1B4E;
  --color-secondary-dark: #1A0F2E;
  --color-bg-light: #F8F9FA;
  --color-text: #1A1A1A;
  --color-text-muted: #666666;
  --color-border: #E5E5E5;
  --color-white: #FFFFFF;
  --gradient-hero: linear-gradient(135deg, #2D1B4E 0%, #1A0F2E 50%, #3D2B5E 100%);
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: transparent;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  border: 2px solid var(--color-primary);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: var(--color-white);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-white:hover {
  background-color: var(--color-bg-light);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.font-logo {
  font-family: 'Pacifico', cursive;
}

.text-primary {
  color: #FF4D4D !important;
}

.bg-primary {
  background-color: #FF4D4D !important;
}

/* Hero Slider Dots */
.hero-dot {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.hero-dot.active {
  background-color: #FF4D4D;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-gradient {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,77,77,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================
   LOGOS SECTION
   ============================================ */

.logo-item {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: 0.75rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

/* ============================================
   TEAM CARDS
   ============================================ */

.team-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--color-bg-light);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--color-white);
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: #FFB800;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  background: var(--color-white);
  color: var(--color-text);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.newsletter-input::placeholder {
  color: #999;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}

/* ============================================
   CTA CAREERS
   ============================================ */

.cta-careers-bg {
  background: var(--color-bg-light);
  position: relative;
}

.cta-welcome-text {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-link {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-link i {
  width: 0.375rem;
  height: 0.375rem;
  color: var(--color-primary);
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: 0.375rem;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 50;
  padding: 2rem;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.open {
  transform: rotate(180deg);
}

/* ============================================
   INSIGHT FEATURES
   ============================================ */

.insight-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (min-width: 1024px) {
  .hero-image-col {
    display: flex !important;
  }
}

/* ============================================
   PARTNER / LOGOS SECTION
   ============================================ */

.partner-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

.partner-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.partner-section-box {
  border-radius: 20px;
  box-shadow: 0 0 100px rgba(226, 228, 231, 1);
  padding: 94px 35px 101px;
  text-align: center;
}

.partner-section-box h3 {
  font-size: 30px;
  font-weight: 400;
  color: #606480;
  margin-bottom: 55px;
  line-height: 35px;
  font-family: 'Abril Fatface', cursive;
}

.partner-listing {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.partner-listing li {
  display: inline-block;
  padding-right: 36px;
  margin-bottom: 10px;
}

.partner-listing li:last-child {
  padding-right: 0;
}

.partner-listing li img {
  height: 44px;
  width: auto;
  max-width: 127px;
  object-fit: contain;
}

.partner-name {
  font-size: 14px;
  color: #9CA3AF;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }

  .hero-gradient::before,
  .hero-gradient::after {
    display: none;
  }

  .partner-section {
    padding-top: 60px;
  }

  .partner-section-box {
    padding: 50px 20px;
  }

  .partner-section-box h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .partner-listing li {
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
