/*
Theme Name: Customer-Star
Theme URI: https://customer-star.com
Author: Customer-Star Team
Author URI: https://customer-star.com
Description: A modern help center and support theme with Tailwind CSS
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: customer-star
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #fff; }

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #134e4a;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(245, 158, 11, 0.4);
  border-radius: inherit;
  animation: pulse-ring 2s ease-out infinite;
}

.header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.header__nav-link:hover {
  color: #0f766e;
  background: #f0fdfa;
}

.header__btn-primary {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}

.header__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

.lang-select {
  appearance: none;
  background: #f1f5f9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  padding: 8px 28px 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-select:hover {
  border-color: #cbd5e1;
  background-color: #f8fafc;
}

.lang-select:focus {
  outline: none;
  border-color: #14b8a6;
}

.header__mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__mobile-menu.open {
  transform: translateX(0);
}

.header__menu-overlay {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.header__menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__title {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #134e4a;
}

.hero__subtitle {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 400;
  color: #475569;
  line-height: 1.5;
}

.search-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(15, 118, 110, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255,255,255,0.8);
}

.search-input {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
  color: #1e293b;
  font-weight: 500;
}

.search-input:focus {
  outline: none;
  border-color: none !important;
  box-shadow: none !important;
}

.search-btn {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  padding: 18px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13, 148, 136, 0.4);
}

.floating-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  position: absolute;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.features-section {
  padding: 120px 0;
  background: #fff;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #14b8a6;
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.15);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

.promise-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.trust-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.trust-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-section {
  padding: 120px 0;
  background: #fff;
}

.testimonial-card {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
  border-radius: 32px;
  padding: 60px;
  border: 2px solid #99f6e4;
  box-shadow: 0 20px 60px rgba(45, 212, 191, 0.1);
}

.support-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
}

.support-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.support-card:hover {
  transform: translateY(-8px);
  border-color: #14b8a6;
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.15);
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #134e4a 0%, #0f766e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-btn {
  background: #fff;
  color: #0f766e;
  padding: 18px 40px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 0 40px;
}

.footer-link {
  color: #94a3b8;
  transition: all 0.2s ease;
  font-size: 14px;
}

.footer-link:hover {
  color: #14b8a6;
  transform: translateX(4px);
}

.footer-title {
  color: #f1f5f9;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  margin-top: 60px;
}

.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #0f766e;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #0d9488;
  padding: 12px 24px;
  background: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.hero__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.hero__floating-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  position: absolute;
  animation: float 3s ease-in-out infinite;
}

.hero__floating-card--1 {
  top: 25%;
  right: 13%;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  bottom: 30%;
  right: 17%;
  animation-delay: 2s;
}

.hero__floating-card--3 {
  top: 40%;
  left: 9%;
  animation-delay: 1s;
}

.hero__order-box {
  background: #fff;
  border: 2px solid #e0f2fe;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.hero__order-box:focus-within {
  border-color: #5eead4;
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.1);
}

.hero__order-input {
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px 20px;
  width: 100%;
  color: #334155;
  background: transparent;
}

.hero__order-input::placeholder {
  color: #94a3b8;
}

.hero__order-btn {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 14px;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.hero__order-btn:hover {
  opacity: 0.9;
}

.hero__rating-box {
  background: #fff;
  border: 1px solid #e0f2fe;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.hero__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  justify-content: center;
}

.features__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d9488;
  background: #f0fdfa;
  padding: 8px 16px;
  border-radius: 100px;
}

.features__title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #134e4a;
}

.features__card {
  background: #fff;
  border: 2px solid #e0f2fe;
  border-radius: 24px;
  padding: 28px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.features__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.features__card:hover {
  border-color: #99f6e4;
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(13, 148, 136, 0.1);
}

.features__card:hover::before {
  transform: scaleX(1);
}

.features__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.features__card:hover .features__icon {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.features__card:hover .features__icon svg {
  color: white;
}

.features__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #134e4a;
  margin-bottom: 10px;
}

.features__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

.features__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0d9488;
  margin-top: 16px;
  transition: gap 0.2s ease;
}

.features__card:hover .features__link {
  gap: 10px;
}

.features__promise {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.trust__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d9488;
  background: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #ccfbf1;
}

.trust__title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #134e4a;
}

.trust__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
  border-radius: 16px;
  border: 1px solid #e0f2fe;
  transition: all 0.3s ease;
}

.trust__item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.08);
  border-color: #99f6e4;
}

@media (min-width: 768px) {
  .trust__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .trust__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
  }
  
  .trust__item:hover {
    transform: translateY(-8px);
  }
  
  .trust__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
  }
  
  .trust__item-title {
    font-size: 18px;
  }
}

.trust__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.trust__item:hover .trust__icon {
  transform: scale(1.05);
}

.trust__item-content {
  flex: 1;
}

.trust__item-title {
  font-size: 17px;
  font-weight: 600;
  color: #134e4a;
  margin-bottom: 6px;
}

.trust__item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

.trust__testimonial {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-radius: 28px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trust__testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 120px;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}

.trust__testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.trust__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.trust__avatar {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.trust__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.support__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d9488;
  background: #f0fdfa;
  padding: 8px 16px;
  border-radius: 100px;
}

.support__title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #134e4a;
}

.support__card {
  background: #fff;
  border: 2px solid #e0f2fe;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.support__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,148,136,0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.support__card:hover {
  border-color: #5eead4;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.12);
}

.support__card:hover::after {
  opacity: 1;
}

.support__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.support__card:hover .support__icon {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  transform: scale(1.05);
}

.support__card:hover .support__icon svg {
  color: white;
}

.support__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #134e4a;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.support__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  position: relative;
  z-index: 1;
}

.cta {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.cta__content {
  padding: 48px 32px;
}

.cta__btn {
  background: #fff;
  color: #0f766e;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  text-decoration: none;
}

.cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.footer {
  background: #134e4a;
  color: #fff;
}

.footer__link {
  font-size: 14px;
  color: #99f6e4;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer__link:hover {
  color: #fff;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 13px;
  color: #99f6e4;
}

.footer__contact-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 1024px) {
  .hero__floating-card { 
    display: none; 
  }
}

@media (max-width: 640px) {
  .hero__rating-box {
    padding: 16px 20px;
  }
  
  .hero__stars svg {
    width: 18px;
    height: 18px;
  }
  
  .features__card {
    padding: 24px 20px;
  }
  
  .cta__content {
    padding: 32px 24px;
  }
  
  .cta__btn {
    font-size: 15px;
    padding: 14px 28px;
  }
}