/* ============================================================
   HHPOKER Club - Main Stylesheet
   Color: #6b21a8 + #fef3c7
   ============================================================ */

/* Custom Properties */
:root {
  --purple: #6b21a8;
  --purple-dark: #4c1d95;
  --purple-light: #8b5cf6;
  --purple-lighter: #a78bfa;
  --cream: #fef3c7;
  --cream-dark: #fde68a;
  --cream-darker: #fcd34d;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --shadow: 0 4px 20px rgba(107, 33, 168, 0.15);
  --shadow-lg: 0 10px 40px rgba(107, 33, 168, 0.2);
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  background: rgba(107, 33, 168, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(107, 33, 168, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--cream) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.navbar-brand i {
  font-size: 1.6rem;
}

.navbar-brand:hover {
  color: var(--cream-dark) !important;
  transform: scale(1.03);
}

.nav-link {
  color: rgba(254, 243, 199, 0.85) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream-dark) !important;
  background: rgba(254, 243, 199, 0.12);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--cream-dark);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-toggler {
  border: 2px solid rgba(254, 243, 199, 0.5) !important;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(254, 243, 199, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #4c1d95 0%, #6b21a8 40%, #7c3aed 70%, #8b5cf6 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(254, 243, 199, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 243, 199, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--purple);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254, 243, 199, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(254, 243, 199, 0); }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--cream-dark);
  text-shadow: 0 0 40px rgba(254, 243, 199, 0.3);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--cream-dark);
  color: var(--purple-dark);
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: var(--cream-darker);
  color: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254, 243, 199, 0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(254, 243, 199, 0.5);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(254, 243, 199, 0.1);
  border-color: var(--cream-dark);
  color: var(--cream-dark);
  transform: translateY(-3px);
}

/* Hero Carousel */
.hero-carousel-wrap {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(254, 243, 199, 0.15);
}

.hero-carousel-card {
  background: rgba(107, 33, 168, 0.4);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(254, 243, 199, 0.1);
  transition: all 0.4s ease;
}

.hero-carousel-card:hover {
  background: rgba(107, 33, 168, 0.6);
  border-color: rgba(254, 243, 199, 0.3);
  transform: translateY(-4px);
}

.hero-carousel-icon {
  font-size: 2.8rem;
  color: var(--cream-dark);
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite;
}

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

.hero-carousel-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.hero-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(254, 243, 199, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel-dots .dot.active {
  background: var(--cream-dark);
  width: 28px;
  border-radius: 6px;
}

/* ============================================================
   Features Section
   ============================================================ */
.features-section {
  background: var(--white);
  position: relative;
}

.section-label {
  display: inline-block;
  background: rgba(107, 33, 168, 0.1);
  color: var(--purple);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--purple-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(145deg, #fef3c7 0%, #fef9e7 100%);
  border-radius: 20px;
  padding: 36px 28px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b21a8, #8b5cf6, #a78bfa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(107, 33, 168, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(107, 33, 168, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6b21a8, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.feature-icon-wrap i {
  font-size: 1.8rem;
  color: var(--cream-dark);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrap {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.3);
}

.feature-card:hover .feature-icon-wrap i {
  animation: fa-spin 0.8s ease-in-out 1;
}

.feature-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-card-link {
  color: var(--purple);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.feature-card-link i {
  transition: transform 0.3s ease;
}

.feature-card-link:hover {
  color: var(--purple-dark);
}

.feature-card-link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(254, 243, 199, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(254, 243, 199, 0.06) 0%, transparent 50%);
}

.stat-card {
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.stat-icon {
  font-size: 2rem;
  color: var(--cream-dark);
  margin-bottom: 12px;
  opacity: 0.8;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cream-dark);
  margin-bottom: 6px;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(254, 243, 199, 0.2);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(254, 243, 199, 0.8);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(254, 243, 199, 0.15);
  margin: 0 auto;
}

/* ============================================================
   Testimonials Section
   ============================================================ */
.testimonials-section {
  background: #fef9e7;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(107, 33, 168, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: rgba(107, 33, 168, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(107, 33, 168, 0.12);
  border-color: rgba(107, 33, 168, 0.2);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b21a8, #8b5cf6);
  color: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.testimonial-stars {
  color: #fcd34d;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-name {
  font-weight: 700;
  color: var(--purple);
  font-size: 0.95rem;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
  background: var(--white);
}

.accordion-item {
  border: 1px solid rgba(107, 33, 168, 0.1);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(107, 33, 168, 0.25);
}

.accordion-button {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--purple-dark);
  background: #fef9e7;
  border-radius: 14px !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #6b21a8, #7c3aed);
  color: var(--white) !important;
  box-shadow: none;
  border-radius: 14px 14px 0 0 !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.2);
  border-color: var(--purple-light);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(15%) sepia(70%) saturate(3000%) hue-rotate(270deg);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(100%);
}

.faq-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  min-width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.faq-tag-1 { background: #fef3c7; color: #6b21a8; }
.faq-tag-2 { background: #e0e7ff; color: #4338ca; }
.faq-tag-3 { background: #d1fae5; color: #065f46; }
.faq-tag-4 { background: #fee2e2; color: #991b1b; }
.faq-tag-5 { background: #fce7f3; color: #9d174d; }
.faq-tag-6 { background: #e0f2fe; color: #0c4a6e; }

.accordion-body {
  padding: 18px 22px;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.8;
  background: #fef9e7;
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #6b21a8 0%, #4c1d95 50%, #3b0764 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(254, 243, 199, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(254, 243, 199, 0.85);
  margin-bottom: 28px;
}

.btn-cta {
  background: var(--cream-dark);
  color: var(--purple-dark);
  border: none;
  padding: 16px 40px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--cream-darker);
  color: var(--purple-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(254, 243, 199, 0.4);
}

/* ============================================================
   Footer
   ============================================================ */
.footer-section {
  background: #1a1025;
  color: rgba(255, 255, 255, 0.75);
}

.footer-section h5 {
  color: var(--cream-dark);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--cream-dark);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--cream-dark);
  margin-top: 3px;
  width: 16px;
}

.footer-divider {
  border-color: rgba(254, 243, 199, 0.1);
  margin: 32px 0 20px;
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   About Page
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, #4c1d95, #6b21a8, #7c3aed);
  padding: 80px 0 60px;
  text-align: center;
}

.page-header-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.page-header-sub {
  color: rgba(254, 243, 199, 0.85);
  font-size: 1.05rem;
}

.value-card {
  background: #fef9e7;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(107, 33, 168, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(107, 33, 168, 0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6b21a8, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon i {
  font-size: 1.4rem;
  color: var(--cream-dark);
}

.value-title {
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.value-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ============================================================
   Download Page
   ============================================================ */
.download-card {
  background: #fef9e7;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  border: 1px solid rgba(107, 33, 168, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(107, 33, 168, 0.12);
  border-color: rgba(107, 33, 168, 0.3);
}

.download-card-icon {
  font-size: 3rem;
  color: var(--purple);
  margin-bottom: 16px;
}

.download-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 8px;
}

.download-card-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.7;
}

.btn-download {
  background: linear-gradient(135deg, #6b21a8, #8b5cf6);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: linear-gradient(135deg, #4c1d95, #6b21a8);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.35);
}

.step-card {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b21a8, #8b5cf6);
  color: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}

.step-text {
  font-weight: 600;
  color: var(--purple-dark);
  font-size: 0.95rem;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-form-wrap {
  background: #fef9e7;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(107, 33, 168, 0.1);
}

.contact-form-wrap label {
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.contact-form-wrap .form-control {
  border: 1px solid rgba(107, 33, 168, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.contact-form-wrap .form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.contact-form-wrap textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, #6b21a8, #8b5cf6);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #4c1d95, #6b21a8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.3);
}

.contact-info-card {
  background: linear-gradient(135deg, #6b21a8, #4c1d95);
  border-radius: 20px;
  padding: 36px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h5 {
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: rgba(254, 243, 199, 0.9);
}

.contact-info-item i {
  color: var(--cream-dark);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

/* ============================================================
   Responsive Adjustments
   ============================================================ */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-section {
    min-height: auto;
  }

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

  .cta-title {
    font-size: 1.8rem;
  }

  .page-header-title {
    font-size: 2rem;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

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

  .feature-card {
    padding: 24px 18px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .testimonial-card {
    padding: 24px 16px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .page-header-title {
    font-size: 1.7rem;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .contact-info-card {
    padding: 24px;
  }

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

  .footer-contact-item {
    justify-content: center;
  }
}
