/* ==========================================================================
   FINAL CTA & CONTACT/COMMUNITY SECTION STYLES — AURALIX MEDIA (LIGHT THEME)
   ========================================================================== */

.contact-section {
  padding: 6rem 0;
  background-color: #FAF4ED; /* Warm biscuit cream background */
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(17, 19, 24, 0.04);
}

/* Background Mountains & Signboard Decorations */
.contact-bg-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.contact-bg-mountains svg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.contact-signboard {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.32;
  transition: all 0.3s ease;
}

.contact-signboard.signboard-left {
  top: 15%;
  left: 4%;
  transform: rotate(-6deg);
}

.contact-signboard.signboard-right {
  bottom: 25%;
  right: 4%;
  transform: rotate(5deg);
}

.signboard-pole {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(212, 58, 47, 0.25), rgba(212, 58, 47, 0.02));
}

.signboard-plate {
  background: #ffffff;
  border: 1.5px solid rgba(212, 58, 47, 0.18);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--brand-red, #D43A2F);
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(17, 19, 24, 0.02);
}

/* Soft background ambient glow (dim light) */
.contact-bg-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 58, 47, 0.03) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   MINIMALIST LIGHT-THEME CTA BANNER
   ========================================================================== */

.cta-banner {
  background: #ffffff; /* Solid white card backdrop */
  border: 1px solid rgba(17, 19, 24, 0.06); /* Sophisticated subtle border */
  border-radius: 24px;
  padding: 5.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(17, 19, 24, 0.025); 
  z-index: 2;
}

/* Very faint grid dots */
.cta-banner-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 19, 24, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

/* Muted corner ambient glows - dim light */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 58, 47, 0.04) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 58, 47, 0.02) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  margin: 0 auto;
}

.cta-headline-bold {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: #111318; /* Dark headline */
}

.cta-description-text {
  font-size: 1.05rem;
  color: #555864; /* Gray description text */
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Buttons container and styling */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: var(--brand-red, #D43A2F);
  border: 1px solid var(--brand-red, #D43A2F);
  color: #ffffff;
  padding: 1.05rem 2.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(212, 58, 47, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-banner .btn-primary:hover {
  background: #ff4530;
  border-color: #ff4530;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 28px rgba(255, 69, 48, 0.35);
}

.cta-banner .btn-secondary {
  background: rgba(17, 19, 24, 0.03); /* Light grey secondary button background */
  color: #111318; /* Dark text */
  border: 1px solid rgba(17, 19, 24, 0.08);
  padding: 1.05rem 2.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.cta-banner .btn-secondary:hover {
  background: rgba(17, 19, 24, 0.07);
  border-color: rgba(17, 19, 24, 0.18);
  transform: translateY(-3px);
}

/* ==========================================================================
   CENTERED FOLLOW US AREA
   ========================================================================== */

.follow-us-container {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(17, 19, 24, 0.08); /* Light separator line */
  width: 100%;
}

.follow-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--brand-red, #D43A2F);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.follow-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #111318; /* Dark title */
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

/* 5 Social Buttons Row */
.social-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.social-icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff; /* White background circles */
  border: 1px solid rgba(17, 19, 24, 0.08);
  color: #111318; /* Dark icons */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(17, 19, 24, 0.01);
}

.social-icon-btn:hover {
  background: var(--brand-red, #D43A2F);
  border-color: var(--brand-red, #D43A2F);
  color: #ffffff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 18px rgba(212, 58, 47, 0.25);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .contact-section .contact-signboard {
    display: none; /* Hide background signboards on stack views */
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }

  .cta-banner {
    padding: 4rem 2rem;
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .cta-banner {
    padding: 3rem 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .cta-banner .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .follow-us-container {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
  }

  .social-icons-row {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .social-icon-btn {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
}
