/* ==========================================================================
   PLURON STUDIO - OFFICIAL STYLESHEET
   Owner: Plamedi
   Palette:
     Main Background: #e2e8f0 (Light Gray)
     Text & Elements:  #1a0a1f (Dark Purple - structural text/borders, never big bg fill)
     Accent Color:     #00f5ff (Cyan - CTAs, focus, live price highlight)
     Card Background:  #ffffff (White - subtle elevation against page background)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #e2e8f0;
  color: #1a0a1f;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  color: #1a0a1f;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: #1a0a1f;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   2. LAYOUT CONTAINERS & UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.section-title {
  font-size: 2.125rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #4a3b52;
}

/* Shared Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: #00f5ff;
  color: #1a0a1f;
  border-color: #00f5ff;
  box-shadow: 0 4px 12px rgba(0, 245, 255, 0.25);
}

.btn-primary:hover {
  background-color: #00e0ea;
  border-color: #00e0ea;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 245, 255, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   3. HEADER SECTION (BRAND PURPLE)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #1a0a1f;
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(26, 10, 31, 0.25);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name {
  color: #ffffff;
}

.brand-sub {
  font-weight: 400;
  font-size: 1.1rem;
  color: #00f5ff;
}

.site-nav .nav-link {
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 245, 255, 0.4);
  color: #ffffff;
}

.site-nav .nav-link:hover {
  background-color: #00f5ff;
  border-color: #00f5ff;
  color: #1a0a1f;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION (WITH PURPLE OVERLAY & BACKGROUND IMAGE)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 10, 31, 0.94) 0%, rgba(26, 10, 31, 0.82) 60%, rgba(26, 10, 31, 0.72) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 245, 255, 0.12);
  border: 1px solid rgba(0, 245, 255, 0.35);
  color: #00f5ff;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #00f5ff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00f5ff;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-cta {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

.btn-secondary-pill {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.btn-secondary-pill:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #00f5ff;
  color: #00f5ff;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 7.5rem;
  }
  .hero-title {
    font-size: 3.35rem;
  }
  .hero-subheadline {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   5. PORTFOLIO SECTION
   -------------------------------------------------------------------------- */
.portfolio-section {
  background-color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(26, 10, 31, 0.06);
  border-bottom: 1px solid rgba(26, 10, 31, 0.06);
}

.portfolio-coming-soon-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid rgba(26, 10, 31, 0.12);
  box-shadow: 0 8px 24px rgba(26, 10, 31, 0.06);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(26, 10, 31, 0.06);
  border: 1px solid rgba(26, 10, 31, 0.15);
  color: #1a0a1f;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coming-soon-title {
  font-size: 1.75rem;
  color: #1a0a1f;
  margin-bottom: 0.75rem;
}

.coming-soon-desc {
  font-size: 1.05rem;
  color: #4a3b52;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

/* --------------------------------------------------------------------------
   6. SERVICES & PRICING CALCULATOR SECTION
   -------------------------------------------------------------------------- */
.calculator-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(26, 10, 31, 0.12);
  box-shadow: 0 8px 24px rgba(26, 10, 31, 0.06);
  max-width: 840px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .calculator-card {
    padding: 3rem 2.5rem;
  }
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-group {
  margin-bottom: 1.75rem;
}

.calc-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a0a1f;
  margin-bottom: 0.85rem;
}

/* Package Options Grid (Toggle Cards) */
.package-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .package-options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  position: relative;
  cursor: pointer;
  border: 2px solid rgba(26, 10, 31, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  background-color: #f8fafc;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.package-card:hover {
  border-color: #1a0a1f;
  background-color: #ffffff;
}

.package-card.active {
  border-color: #1a0a1f;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.5), 0 6px 16px rgba(26, 10, 31, 0.08);
}

.package-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.package-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.package-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a0a1f;
}

.package-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a0a1f;
  margin-top: 0.25rem;
}

.package-sub {
  font-size: 0.8rem;
  color: #4a3b52;
  font-weight: 600;
}

/* Features Checklist Box */
.features-box {
  background-color: #f8fafc;
  border: 1px solid rgba(26, 10, 31, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
}

.features-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a0a1f;
  margin-bottom: 0.75rem;
}

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 600px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features-list li {
  font-size: 0.95rem;
  color: #1a0a1f;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  color: #1a0a1f;
  background-color: #00f5ff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Add-ons Section & Stepper */
.add-ons-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.add-on-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8fafc;
  border: 1px solid rgba(26, 10, 31, 0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.stepper-item {
  flex-direction: row;
  gap: 1rem;
}

.add-on-text {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

.stepper-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #ffffff;
  border: 1px solid #1a0a1f;
  border-radius: 8px;
  padding: 0.2rem;
}

.stepper-btn {
  width: 28px;
  height: 28px;
  background-color: #e2e8f0;
  color: #1a0a1f;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.stepper-btn:hover {
  background-color: #00f5ff;
}

.stepper-input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 800;
  color: #1a0a1f;
  outline: none;
  -moz-appearance: textfield;
}

.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Custom Checkbox Design */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  user-select: none;
}

.calc-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  border: 2px solid #1a0a1f;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}

.calc-checkbox:checked ~ .checkbox-custom {
  background-color: #1a0a1f;
  border-color: #1a0a1f;
}

.calc-checkbox:checked ~ .checkbox-custom::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #00f5ff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.calc-checkbox:focus ~ .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.5);
  border-color: #00f5ff;
}

.checkbox-label-text {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #1a0a1f;
}

.checkbox-subtext {
  font-size: 0.85rem;
  color: #4a3b52;
  margin-top: 0.15rem;
}

/* Mandatory Monthly Banner */
.mandatory-monthly-banner {
  background-color: rgba(26, 10, 31, 0.05);
  border: 1.5px dashed #1a0a1f;
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.mandatory-badge {
  background-color: #1a0a1f;
  color: #00f5ff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.mandatory-label {
  font-size: 0.95rem;
  color: #1a0a1f;
}

/* Pricing Result Display Box */
.calc-result-box {
  background-color: #ffffff;
  border: 2px solid #1a0a1f;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(26, 10, 31, 0.08);
}

.price-breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(26, 10, 31, 0.2);
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
}

.price-item-label {
  color: #1a0a1f;
}

.price-item-value.purple-text {
  color: #1a0a1f;
  font-size: 1.5rem;
  font-weight: 800;
}

.price-item-value.cyan-pill {
  background-color: #1a0a1f;
  color: #00f5ff;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.deposit-item {
  background-color: #f8fafc;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(26, 10, 31, 0.1);
}

.calc-note {
  font-size: 0.875rem;
  color: #4a3b52;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: center;
}

.calc-cta-wrapper {
  display: flex;
  justify-content: center;
}

/* Rounded Pill Shape Cyan Button */
.btn-pill-cyan {
  background-color: #00f5ff;
  color: #1a0a1f;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 9999px;
  border: 2px solid #00f5ff;
  box-shadow: 0 4px 14px rgba(0, 245, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-pill-cyan:hover {
  background-color: #00e0ea;
  border-color: #00e0ea;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 245, 255, 0.4);
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION & CIRCULAR PROFILE AVATAR
   -------------------------------------------------------------------------- */
.about-section {
  border-top: 1px solid rgba(26, 10, 31, 0.06);
}

.about-container {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 1.75rem;
  border: 1px solid rgba(26, 10, 31, 0.12);
  box-shadow: 0 10px 30px rgba(26, 10, 31, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 920px;
}

@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    text-align: left;
    padding: 3.5rem 3.5rem;
    gap: 3rem;
  }
}

.about-photo-card {
  flex-shrink: 0;
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #00f5ff 0%, #1a0a1f 100%);
  box-shadow: 0 10px 28px rgba(26, 10, 31, 0.15), 0 0 0 2px rgba(0, 245, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.about-photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26, 10, 31, 0.2), 0 0 20px rgba(0, 245, 255, 0.4);
}

.about-profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background-color: #1a0a1f;
  transition: transform 0.3s ease;
}

.about-photo-card:hover .about-profile-img {
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .about-photo-card {
    width: 240px;
    height: 240px;
  }
}

.about-content {
  flex-grow: 1;
}

.about-name {
  font-size: 1.85rem;
  margin-bottom: 0.25rem;
}

.about-role {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4a3b52;
  margin-bottom: 1rem;
}

.about-bio {
  font-size: 1.05rem;
  color: #1a0a1f;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   8. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(26, 10, 31, 0.12);
  box-shadow: 0 8px 24px rgba(26, 10, 31, 0.06);
  max-width: 680px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-card {
    padding: 3rem 2.5rem;
  }
}

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

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

.form-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a0a1f;
}

.required {
  color: #d97706;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a0a1f;
  background-color: #f8fafc;
  border: 2px solid rgba(26, 10, 31, 0.2);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Cyan Focus States for Inputs */
.form-input:focus,
.form-textarea:focus {
  border-color: #00f5ff;
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.4);
  background-color: #ffffff;
}

.form-submit-btn {
  margin-top: 0.5rem;
  width: 100%;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-feedback.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* --------------------------------------------------------------------------
   9. FOOTER SECTION (BRAND PURPLE)
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid rgba(0, 245, 255, 0.2);
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a0a1f;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-container {
    flex-direction: row;
    text-align: left;
  }
}

.footer-copy {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.footer-back-to-top {
  font-size: 0.9rem;
  font-weight: 700;
  color: #00f5ff;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 245, 255, 0.3);
  transition: all 0.2s ease;
}

.footer-back-to-top:hover {
  color: #1a0a1f;
  background-color: #00f5ff;
  border-color: #00f5ff;
}

/* --------------------------------------------------------------------------
   10. SERVICES OVERVIEW & FAQ STYLES (BRAND PURPLE THEME)
   -------------------------------------------------------------------------- */
.services-overview-section.dark-purple-section,
.faq-section.dark-purple-section {
  background-color: #1a0a1f;
  border-top: 1px solid rgba(0, 245, 255, 0.15);
  border-bottom: 1px solid rgba(0, 245, 255, 0.15);
}

.text-light {
  color: #ffffff !important;
}

.text-sublight {
  color: #cbd5e1 !important;
}

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

@media (min-width: 600px) {
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-overview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card.dark-card,
.faq-card.dark-card {
  background-color: #25112c;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(0, 245, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card.dark-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card.dark-card:hover,
.faq-card.dark-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 245, 255, 0.2);
  border-color: #00f5ff;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background-color: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  transition: background-color 0.25s ease;
}

.service-card.dark-card:hover .service-icon-box {
  background-color: rgba(0, 245, 255, 0.2);
  border-color: #00f5ff;
}

.service-svg-icon {
  stroke: #00f5ff;
  transition: transform 0.25s ease;
}

.service-card.dark-card:hover .service-svg-icon {
  transform: scale(1.1);
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card-desc {
  font-size: 0.925rem;
  line-height: 1.55;
}

/* FAQ Section Grid & Cards */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 840px;
  margin: 0 auto;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 0.975rem;
  line-height: 1.6;
}

/* Direct Contact Info Banner inside Contact Card */
.direct-contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background-color: #f8fafc;
  border: 1px solid rgba(26, 10, 31, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .direct-contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4a3b52;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a0a1f;
  word-break: break-word;
}

a.contact-value:hover {
  color: #1a0a1f;
  text-decoration: underline;
}
